@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
    --primary-teal: #2EC4B6;
    --accent-orange: #FF9F1C;
    --dark-blue: #0D1B2A;
    --white: #FFFFFF;
    --light-gray: #F7F9FA;
    --border-teal: rgba(46, 196, 182, 0.3);
    --shadow-soft: 0 4px 20px rgba(13, 27, 42, 0.08);
    --shadow-hover: 0 8px 30px rgba(46, 196, 182, 0.2);
    --transition-base: all 0.3s ease-in-out;
    --transition-slow: all 0.5s ease-in-out;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-blue);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    color: var(--dark-blue);
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-teal);
    border-radius: 2px;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-slow);
}

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

.logo a {
    display: block;
}

.logo img {
    height: 50px;
    width: auto;
}

.header-nav {
    display: none;
}

.header-cta {
    display: none;
}

.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--dark-blue);
    border-radius: 2px;
    transition: var(--transition-base);
}

.mobile-book-btn {
    display: block;
    background: var(--accent-orange);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--dark-blue);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-content {
    text-align: center;
}

.mobile-menu-content .logo {
    margin-bottom: 40px;
}

.mobile-menu-content .logo img {
    height: 60px;
}

.mobile-nav-links {
    margin-bottom: 40px;
}

.mobile-nav-links a {
    display: block;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--dark-blue);
    padding: 15px 0;
    transition: var(--transition-base);
}

.mobile-nav-links a:hover {
    color: var(--primary-teal);
}

.mobile-menu-cta {
    display: inline-block;
    background: var(--accent-orange);
    color: var(--white);
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.mobile-phone {
    color: var(--dark-blue);
    font-weight: 500;
}

.mobile-phone:hover {
    color: var(--primary-teal);
}

/* Desktop Header */
@media (min-width: 992px) {
    .mobile-menu-btn,
    .mobile-book-btn,
    .mobile-menu-overlay {
        display: none !important;
    }

    .header-nav {
        display: flex;
        align-items: center;
        gap: 30px;
    }

    .header-nav a {
        font-weight: 500;
        color: var(--dark-blue);
        position: relative;
    }

    .header-nav a::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--primary-teal);
        transition: var(--transition-base);
    }

    .header-nav a:hover::after {
        width: 100%;
    }

    .header-cta {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .header-cta .phone {
        color: var(--dark-blue);
        font-weight: 500;
        font-size: 0.95rem;
    }

    .header-cta .phone:hover {
        color: var(--primary-teal);
    }
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(46, 196, 182, 0.4) 0%,
        rgba(46, 196, 182, 0.2) 50%,
        rgba(13, 27, 42, 0.7) 100%
    );
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    color: var(--white);
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 0.5s forwards;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 0.7s forwards;
}

.hero-content .cta-group {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 0.9s forwards;
}

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

@media (min-width: 768px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    .hero-content p {
        font-size: 1.25rem;
    }
}

@media (min-width: 992px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }
    .hero {
        padding: 150px 20px 100px;
    }
}

/* CTA Buttons */
.btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-base);
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--accent-orange);
    color: var(--white);
    border-color: var(--accent-orange);
}

.btn-primary:hover {
    background: #e88f17;
    border-color: #e88f17;
    box-shadow: 0 5px 20px rgba(255, 159, 28, 0.4);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-teal);
    border-color: var(--primary-teal);
}

.btn-secondary:hover {
    background: var(--primary-teal);
    color: var(--white);
    box-shadow: 0 5px 20px rgba(46, 196, 182, 0.3);
    transform: translateY(-2px);
}

.btn-tertiary {
    background: var(--primary-teal);
    color: var(--white);
    border-color: var(--primary-teal);
}

.btn-tertiary:hover {
    background: #27a99d;
    border-color: #27a99d;
    transform: translateY(-2px);
}

/* About Section */
.about-section {
    background: var(--white);
}

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

.about-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.about-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-content h2 {
    margin-bottom: 20px;
}

.about-content p {
    color: #555;
    margin-bottom: 20px;
}

.about-content .btn {
    margin-top: 10px;
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Services Section */
.services-section {
    background: var(--light-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-teal);
    transition: var(--transition-base);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(46, 196, 182, 0.1);
    border-radius: 50%;
}

.service-icon svg {
    width: 35px;
    height: 35px;
    fill: var(--primary-teal);
    transition: var(--transition-base);
}

.service-card:hover .service-icon svg {
    transform: scale(1.1);
    fill: var(--accent-orange);
}

.service-card h3 {
    color: var(--dark-blue);
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    margin-bottom: 20px;
}

.service-card .learn-more {
    color: var(--primary-teal);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.service-card .learn-more:hover {
    color: var(--accent-orange);
}

@media (min-width: 576px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Why Choose Us */
.why-choose-section {
    background: var(--white);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.why-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.why-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(46, 196, 182, 0.1);
    border-radius: 12px;
}

.why-icon svg {
    width: 30px;
    height: 30px;
    fill: var(--primary-teal);
}

.why-item:hover .why-icon svg {
    animation: pulsate 0.5s ease-in-out;
}

@keyframes pulsate {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.why-content h3 {
    margin-bottom: 10px;
}

.why-content p {
    color: #666;
}

@media (min-width: 768px) {
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .why-choose-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Testimonials */
.testimonials-section {
    background: var(--primary-teal);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 40px;
    font-size: 15rem;
    font-family: Georgia, serif;
    opacity: 0.1;
    line-height: 1;
}

.testimonials-section .section-title h2 {
    color: var(--white);
}

.testimonials-section .section-title h2::after {
    background: var(--accent-orange);
}

.testimonial-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-item {
    min-width: 100%;
    padding: 20px;
    text-align: center;
}

.testimonial-item blockquote {
    font-size: 1.25rem;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-item cite {
    display: block;
    font-style: normal;
    font-weight: 600;
}

.testimonial-item cite span {
    font-weight: 400;
    font-size: 0.9rem;
    opacity: 0.8;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.testimonial-controls button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--white);
    background: transparent;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-controls button:hover {
    background: var(--white);
    color: var(--primary-teal);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.testimonial-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition-base);
}

.testimonial-dots .dot.active {
    background: var(--accent-orange);
    transform: scale(1.2);
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: 80px 20px;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.cta-section-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.cta-section-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(46, 196, 182, 0.85);
    z-index: 0;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
footer {
    background: var(--dark-blue);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand .logo img {
    height: 50px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.footer-brand .contact-info p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-brand .contact-info a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-brand .contact-info a:hover {
    color: var(--primary-teal);
}

.footer-links h4,
.footer-services h4,
.footer-newsletter h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-links ul li,
.footer-services ul li {
    margin-bottom: 12px;
}

.footer-links ul a,
.footer-services ul a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-base);
}

.footer-links ul a:hover,
.footer-services ul a:hover {
    color: var(--primary-teal);
    padding-left: 5px;
}

.footer-newsletter p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 25px;
    font-family: inherit;
}

.newsletter-form button {
    padding: 12px 20px;
    background: var(--primary-teal);
    color: var(--white);
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition-base);
}

.newsletter-form button:hover {
    background: var(--accent-orange);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

.social-icons a:hover {
    background: var(--accent-orange);
    transform: translateY(-3px);
}

.social-icons svg {
    width: 20px;
    height: 20px;
    fill: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom .legal-links {
    display: flex;
    gap: 20px;
}

.footer-bottom .legal-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-bottom .legal-links a:hover {
    color: var(--primary-teal);
}

@media (min-width: 576px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* Page Hero (for inner pages) */
.page-hero {
    position: relative;
    padding: 150px 20px 80px;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.page-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 27, 42, 0.6);
    z-index: 0;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 0.3s forwards;
}

.page-hero p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 0.5s forwards;
}

@media (min-width: 768px) {
    .page-hero h1 {
        font-size: 3rem;
    }
}

/* Service Categories Navigation */
.service-nav {
    background: var(--light-gray);
    padding: 20px 0;
    position: sticky;
    top: 80px;
    z-index: 100;
}

.service-nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.service-nav a {
    padding: 10px 20px;
    border-radius: 25px;
    background: var(--white);
    color: var(--dark-blue);
    font-weight: 500;
    border: 2px solid transparent;
    transition: var(--transition-base);
}

.service-nav a:hover,
.service-nav a.active {
    border-color: var(--primary-teal);
    color: var(--primary-teal);
}

/* Service Detail Sections */
.service-detail {
    padding: 60px 0;
}

.service-detail:nth-child(even) {
    background: var(--light-gray);
}

.service-detail-header {
    margin-bottom: 40px;
}

.service-detail-header h2 {
    color: var(--dark-blue);
    margin-bottom: 15px;
}

.service-detail-header p {
    color: #666;
    max-width: 700px;
}

.service-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.detail-card {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-base);
}

.detail-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.detail-card h3 {
    color: var(--primary-teal);
    margin-bottom: 15px;
}

.detail-card p {
    color: #666;
    margin-bottom: 15px;
}

.detail-card .price {
    color: var(--accent-orange);
    font-weight: 600;
    font-size: 1.1rem;
}

@media (min-width: 768px) {
    .service-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .service-cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Benefits List */
.benefits-list {
    max-width: 800px;
    margin: 0 auto;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--white);
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-base);
}

.benefits-list li:hover {
    transform: translateX(5px);
}

.benefits-list .benefit-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(46, 196, 182, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
}

.benefits-list .benefit-icon svg {
    width: 25px;
    height: 25px;
    fill: var(--primary-teal);
}

.benefits-list h3 {
    font-size: 1.1rem;
    margin-bottom: 0;
}

/* Drip Cards */
.drip-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.drip-card {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--shadow-soft);
    border-left: 4px solid var(--primary-teal);
    cursor: pointer;
    transition: var(--transition-base);
}

.drip-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.drip-card h3 {
    color: var(--dark-blue);
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.drip-card h3 .toggle-icon {
    font-size: 1.5rem;
    color: var(--primary-teal);
    transition: var(--transition-base);
}

.drip-card.active h3 .toggle-icon {
    transform: rotate(45deg);
}

.drip-card p {
    color: #666;
    margin-bottom: 15px;
}

.drip-card .ingredients {
    display: none;
    padding-top: 15px;
    border-top: 1px solid var(--border-teal);
}

.drip-card.active .ingredients {
    display: block;
}

.drip-card .ingredients p {
    font-size: 0.9rem;
    color: var(--dark-blue);
    margin-bottom: 5px;
}

@media (min-width: 768px) {
    .drip-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .drip-cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* FAQ Accordion */
.faq-section {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: none;
    border: none;
    text-align: left;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-teal);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-base);
}

.faq-question:hover {
    background: rgba(46, 196, 182, 0.05);
}

.faq-question .icon {
    font-size: 1.5rem;
    transition: var(--transition-base);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer-content {
    padding: 0 20px 20px;
    color: #666;
    line-height: 1.7;
}

/* Contact Section */
.contact-section {
    padding: 60px 0;
}

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

.contact-info h3 {
    color: var(--dark-blue);
    margin-bottom: 20px;
}

.contact-info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-info-item .icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(46, 196, 182, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-info-item .icon svg {
    width: 24px;
    height: 24px;
    fill: var(--primary-teal);
}

.contact-info-item h4 {
    margin-bottom: 5px;
    font-size: 1rem;
}

.contact-info-item p {
    color: #666;
    margin-bottom: 0;
}

.contact-info-item a {
    color: #666;
}

.contact-info-item a:hover {
    color: var(--primary-teal);
}

/* Contact Form */
.contact-form-container {
    background: var(--white);
    border-radius: 15px;
    padding: 40px;
    box-shadow: var(--shadow-soft);
}

.contact-form-container h3 {
    color: var(--dark-blue);
    margin-bottom: 25px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark-blue);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #eee;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition-base);
}

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

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 576px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr 1.5fr;
    }
}

/* Map Section */
.map-section {
    padding: 60px 0;
    background: var(--light-gray);
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.team-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-base);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.team-image {
    height: 250px;
    overflow: hidden;
    background: var(--light-gray);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.05);
}

.team-info {
    padding: 25px;
    text-align: center;
}

.team-info h3 {
    color: var(--dark-blue);
    margin-bottom: 5px;
}

.team-info .title {
    color: var(--primary-teal);
    font-weight: 500;
    margin-bottom: 15px;
}

.team-info p {
    color: #666;
    font-size: 0.95rem;
}

@media (min-width: 576px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(46, 196, 182, 0.3);
    opacity: 0;
    transition: var(--transition-base);
}

.gallery-item:hover::after {
    opacity: 1;
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mission Vision Section */
.mission-vision {
    padding: 60px 0;
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.mv-card {
    background: var(--white);
    border-radius: 15px;
    padding: 40px;
    box-shadow: var(--shadow-soft);
    border-top: 4px solid var(--primary-teal);
}

.mv-card h3 {
    color: var(--dark-blue);
    margin-bottom: 20px;
}

.mv-card p {
    color: #666;
    line-height: 1.8;
}

@media (min-width: 768px) {
    .mv-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 10px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
}

/* Scroll Animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animations */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .scroll-animate {
        opacity: 1;
        transform: none;
    }
}

/* Responsive utilities */
@media (max-width: 767px) {
    .section {
        padding: 50px 0;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.25rem; }
    
    .btn {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
}
