
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*:focus,
button:focus,
a:focus,
.nav-link:focus,
.btn:focus,
.faq-question:focus,
.hamburger:focus,
input:focus,
textarea:focus,
select:focus,
.pricing-card:focus,
.service-card:focus,
.testimonial-card:focus {
    outline: none !important;
    box-shadow: none !important;
}

:root {
    --primary-sage: #8fbc8f;
    --primary-sage-light: #a8d3a8;
    --primary-sage-dark: #6b8e6b;
    
    --secondary-sand: #f5e6d3;
    --secondary-sand-light: #faf5eb;
    --secondary-sand-dark: #e8d5c4;
    
    --accent-terracotta: #d2691e;
    --accent-terracotta-light: #deb887;
    --accent-terracotta-dark: #a0522d;
    
    --neutral-stone: #8b7d6b;
    --neutral-stone-light: #a69b8a;
    --neutral-stone-dark: #6b5d4f;
    
    --text-charcoal: #2f2f2f;
    --text-soft: #5a5a5a;
    --text-light: #8a8a8a;
    
    --white: #ffffff;
    --off-white: #fefefe;
    --light-gray: #f8f8f8;
    
    --font-primary: 'Inter', sans-serif;
    --font-accent: 'Crimson Text', serif;
    
    --section-padding: 120px 0;
    --container-padding: 0 20px;
    --border-radius: 20px;
    --border-radius-small: 12px;
    
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 20px 60px rgba(0, 0, 0, 0.15);
    --shadow-strong: 0 30px 80px rgba(0, 0, 0, 0.2);
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-charcoal);
    background-color: var(--off-white);
    overflow-x: hidden;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

* {
    max-width: 100%;
    box-sizing: border-box;
}

.container, 
.hero-content, 
.about-content, 
.approach-content, 
.contact-content,
.services-grid,
.testimonials-grid,
.pricing-grid,
.faq-content {
    max-width: 100%;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-sand-light), var(--primary-sage-light));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.5s ease;
}

.loader-title {
    font-family: var(--font-accent);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 600;
    color: var(--text-charcoal);
    margin-bottom: 20px;
    text-align: center;
    opacity: 0;
    animation: fadeIn 0.8s ease 0.3s forwards;
}


.loading-bar-container {
    width: 300px;
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    margin-top: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.loading-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-sage), var(--primary-sage-light), var(--primary-sage));
    background-size: 200% 100%;
    border-radius: 10px;
    width: 0%;
    animation: loadingProgress 2s ease-in-out forwards, shimmer 1.5s ease-in-out infinite;
}


@keyframes fadeIn {
    to { opacity: 1; }
}

@keyframes loadingProgress {
    0% { width: 0%; }
    20% { width: 30%; }
    50% { width: 60%; }
    80% { width: 85%; }
    100% { width: 100%; }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes mapLoading {
    0% { background-position: 0 0, 0 10px, 10px -10px, -10px 0px; }
    100% { background-position: 20px 20px, 20px 30px, 30px 10px, 10px 20px; }
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(143, 188, 143, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo-text {
    font-family: var(--font-accent);
    font-size: 24px;
    font-weight: 600;
    color: var(--text-charcoal);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-soft);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-sage-dark);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-sage);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-charcoal);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, var(--secondary-sand-light) 0%, var(--light-gray) 100%);
    overflow: hidden;
    padding-top: 100px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 20s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--primary-sage);
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: var(--accent-terracotta);
    bottom: 20%;
    left: 5%;
    animation-delay: 7s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: var(--neutral-stone);
    top: 50%;
    left: 20%;
    animation-delay: 14s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-30px) rotate(120deg); }
    66% { transform: translateY(20px) rotate(240deg); }
}


@keyframes greenPulse {
    0% { 
        background-position: 0% 50%; 
        box-shadow: 0 0 20px rgba(143, 188, 143, 0.4), var(--shadow-medium);
    }
    50% { 
        background-position: 100% 50%; 
        box-shadow: 0 0 30px rgba(143, 188, 143, 0.8), var(--shadow-strong);
        transform: scale(1.02);
    }
    100% { 
        background-position: 0% 50%; 
        box-shadow: 0 0 20px rgba(143, 188, 143, 0.4), var(--shadow-medium);
    }
}

@keyframes iconBounce {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-3px) scale(1.1); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: var(--font-accent);
    font-size: clamp(3rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--text-charcoal);
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s ease forwards;
}

.title-line:nth-child(2) { animation-delay: 0.2s; }
.title-line:nth-child(3) { animation-delay: 0.4s; }

.highlight {
    color: var(--primary-sage-dark);
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    height: 15px;
    background: linear-gradient(90deg, transparent, var(--primary-sage-light), transparent);
    z-index: -1;
    opacity: 0.6;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-soft);
    margin-bottom: 40px;
    line-height: 1.6;
    opacity: 0;
    animation: fadeIn 0.8s ease 0.6s forwards;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    opacity: 0;
    animation: fadeIn 0.8s ease 0.8s forwards;
}

.btn {
    padding: 16px 32px;
    border-radius: var(--border-radius-small);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: var(--primary-sage);
    color: var(--white);
    box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
    background: var(--primary-sage-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-secondary {
    background: transparent;
    color: var(--text-charcoal);
    border: 2px solid var(--primary-sage);
}

.btn-secondary:hover {
    background: var(--primary-sage);
    color: var(--white);
}

.hero-image {
    position: relative;
}

.image-container {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transform: rotate(2deg);
    transition: transform 0.3s ease;
}

.image-container:hover {
    transform: rotate(0deg);
}

.hero-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(143, 188, 143, 0.2) 100%);
}

.section-header {
    margin-bottom: 60px;
}

.section-header.centered {
    text-align: center;
}

.section-subtitle {
    display: block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-sage-dark);
    margin-bottom: 10px;
}

.section-title {
    font-family: var(--font-accent);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    line-height: 1.2;
    color: var(--text-charcoal);
}

.about {
    padding: var(--section-padding);
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.image-frame {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.about-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center 20%;
    display: block;
}

.frame-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    border: 3px solid var(--accent-terracotta);
    border-radius: 50%;
    opacity: 0.7;
}

.about-description p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: var(--text-soft);
}

.credentials {
    margin-top: 40px;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    padding: 15px;
    background: var(--light-gray);
    border-radius: var(--border-radius-small);
}

.credential-icon {
    font-size: 24px;
    color: var(--primary-sage);
}

.services {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--secondary-sand-light) 0%, var(--light-gray) 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.service-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
    will-change: transform;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-sage), var(--accent-terracotta));
}

.service-card:hover {
    transform: translate3d(0, -10px, 0);
    box-shadow: var(--shadow-medium);
}

.service-card.featured {
    background: var(--white);
}

.service-card.featured::before {
    height: 4px;
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 25px auto;
    box-shadow: var(--shadow-soft);
    background: var(--primary-sage);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.service-icon-symbol {
    font-size: 36px;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.service-icon-image {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.service-card:hover .service-icon {
    background: var(--primary-sage-dark);
    transform: scale3d(1.1, 1.1, 1);
}

.service-card:hover .service-icon-symbol {
    transform: scale(1.1);
}

.service-card:hover .service-icon-image {
    transform: scale3d(1.1, 1.1, 1);
}

.service-card h3 {
    font-family: var(--font-accent);
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-charcoal);
}

.service-card p {
    color: var(--text-soft);
    margin-bottom: 25px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    display: inline-block;
    text-align: left;
}

.service-features li {
    padding: 8px 0;
    color: var(--text-soft);
    position: relative;
    padding-left: 20px;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-sage);
    font-weight: bold;
}

.approach {
    padding: var(--section-padding);
    background: var(--white);
}

.approach-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.approach-principles {
    margin-top: 40px;
}

.principle {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background: var(--light-gray);
    border-radius: var(--border-radius-small);
    transition: all 0.3s ease;
}

.principle:hover {
    background: var(--secondary-sand-light);
    transform: translateX(10px);
}

.principle-icon {
    font-size: 32px;
    flex-shrink: 0;
    color: var(--primary-sage);
}

.principle-text h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text-charcoal);
}

.principle-text p {
    color: var(--text-soft);
    line-height: 1.5;
}

.visual-element {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.visual-element img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center 40%;
    display: block;
}

.testimonials {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--secondary-sand-light) 0%, var(--light-gray) 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-sage), var(--accent-terracotta));
}

.testimonial-card.featured {
    background: var(--white);
}

.testimonial-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: var(--shadow-soft);
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.testimonial-text {
    margin-bottom: 20px;
}

.testimonial-icon {
    display: none;
}

.testimonial-text p {
    font-style: italic;
    line-height: 1.6;
    color: var(--text-soft);
    margin-bottom: 0;
}

.testimonial-author h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--text-charcoal);
}

.testimonial-author span {
    color: var(--primary-sage-dark);
    font-size: 14px;
    font-weight: 500;
}

.faq {
    padding: var(--section-padding);
    background: var(--white);
}

.faq-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

.faq-description {
    font-size: 18px;
    color: var(--text-soft);
    margin-bottom: 40px;
    line-height: 1.6;
}

.faq-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.faq-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: var(--white);
    border-radius: var(--border-radius-small);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-medium);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    cursor: pointer;
    background: var(--white);
    transition: background 0.3s ease;
    outline: none !important;
    border: none;
}

.faq-question:hover {
    background: var(--light-gray);
}

.faq-question h3 {
    font-size: 18px;
    color: var(--text-charcoal);
    margin: 0;
    flex: 1;
}

.faq-toggle {
    font-size: 20px;
    color: var(--primary-sage);
    transition: transform 0.3s ease;
    font-weight: bold;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    background: var(--light-gray);
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    will-change: max-height;
}

.faq-item.active .faq-answer {
    padding: 25px;
    max-height: 200px; 
}

.faq-answer p {
    color: var(--text-soft);
    line-height: 1.6;
    margin: 0;
}

.pricing {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--secondary-sand-light) 0%, var(--light-gray) 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.pricing-card {
    background: var(--light-gray);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
    will-change: transform;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-sage), var(--accent-terracotta));
}

.pricing-card.featured {
    background: var(--secondary-sand-light);
    box-shadow: var(--shadow-medium);
}

.pricing-card.featured::before {
    height: 6px;
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-terracotta);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-header {
    margin-bottom: 30px;
}

.pricing-header h3 {
    font-family: var(--font-accent);
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--text-charcoal);
}

.pricing-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-soft);
    background: var(--primary-sage);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.icon-symbol {
    font-size: 36px;
    color: var(--white);
    font-weight: bold;
    font-family: var(--font-primary);
    transition: all 0.3s ease;
}

.pricing-icon-image {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.pricing-card:hover .pricing-icon {
    background: var(--primary-sage-dark);
    transform: scale3d(1.1, 1.1, 1);
}

.pricing-card:hover .icon-symbol {
    color: var(--white);
    transform: scale(1.1);
}

.pricing-card:hover .pricing-icon-image {
    transform: scale3d(1.1, 1.1, 1);
}

.pricing-price {
    margin-bottom: 30px;
}

.price-amount {
    font-size: 36px;
    font-weight: 600;
    color: var(--primary-sage-dark);
    display: block;
}

.price-period {
    color: var(--text-light);
    font-size: 14px;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 10px 0;
    color: var(--text-soft);
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-icon {
    font-size: 16px;
    color: var(--primary-sage);
}

.pricing-note {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: linear-gradient(-45deg, var(--primary-sage-light), var(--primary-sage), var(--accent-terracotta-light), var(--primary-sage-dark));
    background-size: 400% 400%;
    border-radius: var(--border-radius-small);
    border: 3px solid var(--primary-sage);
    box-shadow: 0 0 20px rgba(143, 188, 143, 0.4), var(--shadow-medium);
    animation: greenPulse 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.pricing-note p {
    color: var(--white);
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.note-icon {
    font-size: 24px;
    color: var(--white);
    animation: iconBounce 2s ease-in-out infinite;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.contact {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--primary-sage-light) 0%, var(--secondary-sand-light) 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-description {
    font-size: 18px;
    color: var(--text-soft);
    margin-bottom: 60px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: var(--border-radius-small);
    backdrop-filter: blur(10px);
}

.contact-icon {
    font-size: 24px;
    flex-shrink: 0;
    color: var(--primary-sage);
}

.clickable-icon {
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(143, 188, 143, 0.1);
    position: relative;
}

.clickable-icon:hover {
    background: var(--primary-sage);
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(143, 188, 143, 0.3);
}

.clickable-icon:active {
    transform: scale(0.95);
}

.clickable-icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--primary-sage);
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
    z-index: -1;
}

.clickable-icon:hover::after {
    opacity: 0.2;
    transform: scale(1.2);
}

.contact-text h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--text-charcoal);
}

.contact-text p {
    color: var(--text-soft);
    line-height: 1.4;
}

.map-section {
    background: rgba(255, 255, 255, 0.9);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(10px);
    margin-top: 30px;
    contain: layout;
}

@media (max-width: 768px) {
    .map-section {
        padding: 20px;
        margin-top: 25px;
        backdrop-filter: none; 
        background: rgba(255, 255, 255, 0.95);
    }
    
    .map-container {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    
    .map-container iframe {
        height: 200px;
        pointer-events: auto;
        touch-action: manipulation;
    }
}

.map-section h3 {
    font-family: var(--font-accent);
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--text-charcoal);
    text-align: center;
}

.map-container {
    border-radius: var(--border-radius-small);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    margin-bottom: 20px;
}

.map-container iframe {
    width: 100%;
    height: 250px;
    border: none;
    display: block;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

.map-info {
    font-size: 14px;
    color: var(--text-soft);
}

.map-info p {
    margin-bottom: 10px;
}

.map-info ul {
    margin: 10px 0;
    padding-left: 20px;
}

.map-info li {
    margin-bottom: 5px;
    line-height: 1.4;
}

.contact-form-container {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    max-width: 100%;
    align-self: start;
}

.contact-form h3 {
    font-family: var(--font-accent);
    font-size: 24px;
    margin-bottom: 25px;
    color: var(--text-charcoal);
}

.form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--light-gray);
    border-radius: var(--border-radius-small);
    font-size: 14px;
    transition: all 0.3s ease;
    background: var(--off-white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-sage);
    background: var(--white);
}

.form-group label {
    position: absolute;
    top: 12px;
    left: 12px;
    color: var(--text-light);
    transition: all 0.3s ease;
    pointer-events: none;
    font-size: 14px;
}

.form-group input:focus + label,
.form-group input:valid + label,
.form-group textarea:focus + label,
.form-group textarea:valid + label {
    top: -10px;
    left: 12px;
    font-size: 12px;
    background: var(--white);
    padding: 0 8px;
    color: var(--primary-sage);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
    flex-shrink: 0;
}

.checkbox-group label {
    position: static;
    font-size: 14px;
    line-height: 1.4;
    color: var(--text-soft);
}

.footer {
    background: var(--text-charcoal);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-main h3 {
    font-family: var(--font-accent);
    font-size: 24px;
    margin-bottom: 15px;
}

.footer-main p {
    color: var(--text-light);
    margin-bottom: 8px;
}

.footer-links h4,
.footer-emergency h4 {
    margin-bottom: 20px;
    color: var(--primary-sage-light);
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background: var(--primary-sage-light);
    transition: width 0.3s ease;
}

.footer-links a:hover,
.footer-links a.active {
    color: var(--primary-sage-light);
}

.footer-links a:hover::after,
.footer-links a.active::after {
    width: 100%;
}

.footer-emergency p {
    color: var(--text-light);
    margin-bottom: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--neutral-stone);
    color: var(--text-light);
}

.demo-disclaimer {
    color: var(--text-light);
    margin: 0;
}

@media (max-width: 768px) {
    .navbar {
        top: 0;
    }
    
    .nav-container {
        height: 70px;
        padding: 0 15px;
    }
    
    .logo-text {
        font-size: 20px;
        margin-top: 2px;
    }
    
    .hero {
        padding-top: 80px;
    }
}

@media (max-width: 1024px) {
    .services-grid,
    .testimonials-grid,
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .hero-content,
    .about-content,
    .approach-content,
    .contact-content {
        gap: 30px;
    }
}

@media (max-width: 1000px) {
    :root {
        --section-padding: 80px 0;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-soft);
        padding: 40px 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .about-content,
    .approach-content,
    .faq-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services-grid,
    .testimonials-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-card.featured {
        transform: none;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .hero-image {
        order: -1;
        display: none;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .navbar {
        top: 0;
    }
    
    .nav-container {
        height: 65px;
        padding: 0 12px;
    }
    
    .logo-text {
        font-size: 18px;
    }
    
    .hero {
        padding-top: 90px; 
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .contact-form-container {
        padding: 25px;
    }
    
    .service-card {
        padding: 25px;
    }
    
    .modal-content {
        margin: 10% auto;
        padding: 20px;
        width: 95%;
        max-height: 85vh;
    }
    
    .faq-answer {
        transition: max-height 0.2s ease-out, padding 0.2s ease-out;
    }
    
    .faq-item.active .faq-answer {
        max-height: 300px;
        padding: 15px;
    }
    
    .faq-question {
        padding: 15px;
        font-size: 16px;
    }
    
    .pricing-note {
        padding: 15px;
        font-size: 14px;
    }
    
    .service-icon,
    .pricing-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon-symbol,
    .icon-symbol {
        font-size: 28px;
    }
    
    .service-icon-image {
        width: 35px;
        height: 35px;
    }
    
    .pricing-icon-image {
        width: 35px;
        height: 35px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .pricing-card {
        padding: 25px 20px;
    }
    
    .loading-bar-container {
        width: 250px;
    }
    
    .loader-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .faq-answer {
        transition: max-height 0.25s ease-out, padding 0.25s ease-out;
    }
    
    .faq-item.active .faq-answer {
        max-height: 250px; 
        padding: 20px 15px;
    }
    
    .faq-question {
        padding: 20px 15px;
        transition: background 0.2s ease;
        touch-action: manipulation; 
        -webkit-tap-highlight-color: transparent; 
    }
    
    .faq-image {
        display: none;
    }
    
    .faq-list {
        gap: 15px;
    }
    
    .faq-item {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    
    .faq-item:hover {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    
    .clickable-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .clickable-icon:hover {
        transform: none; 
    }
    
    .clickable-icon:active {
        transform: scale(0.9);
        background: var(--primary-sage);
        color: var(--white);
    }
    
    .floating-shape {
        animation: none; 
        display: none; 
    }
    
    .service-card:hover,
    .testimonial-card:hover,
    .pricing-card:hover {
        transform: none;
    }
    
    .contact-item {
        backdrop-filter: none;
        background: rgba(255, 255, 255, 0.9);
    }
}

.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--white);
    margin: 5% auto;
    padding: 0;
    border-radius: var(--border-radius);
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow: hidden;
    box-shadow: var(--shadow-strong);
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

.modal-body {
    padding: 30px;
    max-height: 80vh;
    overflow-y: auto;
    overflow-x: hidden;
}

.modal-body::-webkit-scrollbar {
    width: 6px;
}

.modal-body::-webkit-scrollbar-track {
    background: transparent;
    margin: 10px 0;
}

.modal-body::-webkit-scrollbar-thumb {
    background: rgba(143, 188, 143, 0.3);
    border-radius: 3px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
    background: rgba(143, 188, 143, 0.5);
}

.modal-body {
    scrollbar-width: thin;
    scrollbar-color: rgba(143, 188, 143, 0.3) transparent;
}

@keyframes modalSlideIn {
    from { opacity: 0; transform: translateY(-50px); }
    to { opacity: 1; transform: translateY(0); }
}

.close {
    color: var(--text-charcoal);
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: 15px;
    z-index: 10;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(240, 240, 240, 0.95);
    border-radius: 50%;
    border: 2px solid rgba(143, 188, 143, 0.2);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.close.show {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.close.show:hover {
    color: var(--white);
    background: var(--primary-sage);
    border-color: var(--primary-sage);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(143, 188, 143, 0.4);
}

.close.show:active {
    transform: scale(0.95);
}

@media (max-width: 768px) {
    .close {
        right: 12px;
        top: 12px;
        width: 32px;
        height: 32px;
        font-size: 20px;
    }
    
    .modal-content {
        margin: 2% auto;
        width: 95%;
        max-height: 90vh;
    }
    
    .modal-body {
        padding: 25px;
        max-height: 90vh;
    }
}

@media (max-width: 480px) {
    .close {
        right: 10px;
        top: 10px;
        width: 28px;
        height: 28px;
        font-size: 18px;
    }
    
    .modal-content {
        margin: 1% auto;
        width: 98%;
        max-height: 95vh;
        border-radius: 15px;
    }
    
    .modal-body {
        padding: 20px;
        max-height: 95vh;
    }
}

.modal-body h2 {
    font-family: var(--font-accent);
    color: var(--text-charcoal);
    margin-bottom: 20px;
    margin-top: 0;
    padding-right: 40px;
}

.modal-body h3 {
    color: var(--primary-sage-dark);
    margin: 20px 0 10px 0;
    font-size: 18px;
}

.modal-body p {
    color: var(--text-soft);
    line-height: 1.6;
    margin-bottom: 15px;
}

.modal-body ul {
    margin: 10px 0 15px 20px;
    color: var(--text-soft);
}

.modal-body li {
    margin-bottom: 5px;
    line-height: 1.5;
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}
