* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    width: 100%;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
}

html::-webkit-scrollbar {
    display: none;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    overflow-x: hidden;
    background: #f5f5f7;
    color: #1d1d1f;
    margin: 0;
    width: 100%;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 24px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(148, 255, 244, 0);
}

nav.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: 16px 8%;
    box-shadow: 0 2px 20px rgba(0, 178, 204, 0.08);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 1002;
}

.logo {
    height: 140px;
    max-height: 140px;
    width: auto;
    transition: all 0.3s ease;
}

nav.scrolled .logo {
    height: 90px;
    max-height: 90px;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
    margin-right: 70px;
}

.nav-item {
    position: relative;
}

.nav-links a {
    color: #0E133D;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
    display: block;
    padding: 8px 0;
}

.nav-links a:hover {
    color: #00B2CC;
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 12px;
    padding: 12px 0;
    min-width: 220px;
    box-shadow: 0 8px 24px rgba(0, 178, 204, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    list-style: none;
    z-index: 1001;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    padding: 12px 24px;
    color: #0E133D;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
    background: rgba(0, 178, 204, 0.08);
    color: #00B2CC;
    border-left-color: #00B2CC;
    padding-left: 28px;
}

/* Hero Section */
.hero {
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
    background: #D5F3F9;
    padding: 0 8%;
    margin: 0;
}

.hero-content {
    text-align: left;
    z-index: 2;
    max-width: 800px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
}

.hero h1 {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 700;
    letter-spacing: 0.02em;
    margin-bottom: 24px;
    line-height: 1.2;
    color: #0E133D;
}

.subheading {
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 400;
    color: #0E133D;
    opacity: 0.75;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 600px;
}

.cta-button {
    display: inline-block;
    padding: 16px 32px;
    background: #00B2CC;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.2s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.6s forwards;
    box-shadow: 0 2px 8px rgba(0, 178, 204, 0.2);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: #009BB5;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 178, 204, 0.3);
}

.cta-button:active {
    transform: translateY(0px);
    box-shadow: 0 2px 8px rgba(0, 178, 204, 0.2);
}

.cta-button:focus-visible {
    outline: 3px solid rgba(0, 178, 204, 0.5);
    outline-offset: 3px;
}

/* Background Animation */
.bg-gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    opacity: 1;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.shape {
    position: absolute;
    background: rgba(0, 178, 204, 0.08);
    border-radius: 50%;
}

.shape:nth-child(1) {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
    animation: float 20s infinite ease-in-out;
}

.shape:nth-child(2) {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 15%;
    animation: float 15s infinite ease-in-out 2s;
}

.shape:nth-child(3) {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 20%;
    animation: float 18s infinite ease-in-out 4s;
}

/* Features Section */
.features {
    padding: 100px 5%;
    background: #fff;
    width: 100%;
    box-sizing: border-box;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    padding: 40px;
    background: #f5f5f7;
    border-radius: 20px;
    border: none;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(50px);
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover {
    transform: translateY(-10px);
    background: #fff;
    box-shadow: 0 12px 40px rgba(0, 178, 204, 0.15);
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #1d1d1f;
}

.feature-card p {
    color: #6e6e73;
    line-height: 1.6;
    font-size: 16px;
}

/* Animations */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .dropdown-menu {
        display: none;
    }

    .logo {
        height: 80px;
        max-height: 80px;
    }

    nav.scrolled .logo {
        height: 60px;
        max-height: 60px;
    }

    .hero {
        padding: 0 5%;
        align-items: center;
    }

    .hero-content {
        text-align: center;
    }

    .hero h1 {
        font-size: 36px;
    }

    .subheading {
        font-size: 16px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer */
footer {
    background: #1d1d1f;
    color: #f5f5f7;
    padding: 60px 5% 30px;
    width: 100%;
    box-sizing: border-box;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-section p {
    color: #86868b;
    line-height: 1.8;
    font-size: 14px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #424245;
}

.footer-bottom p {
    color: #86868b;
    font-size: 12px;
}

/* Page Hero */
.page-hero {
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #D5F3F9;
    padding: 120px 8% 60px;
    text-align: center;
}

.page-hero-content h1 {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    color: #0E133D;
    margin-bottom: 16px;
}

.page-hero-content p {
    font-size: clamp(16px, 2vw, 20px);
    color: #0E133D;
    opacity: 0.75;
}

/* Services Overview */
.services-overview {
    padding: 100px 8%;
    background: #fff;
}

.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.services-intro h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: #0E133D;
    margin-bottom: 16px;
}

.services-intro p {
    font-size: 18px;
    color: #6e6e73;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card-large {
    background: #f5f5f7;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card-large:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 178, 204, 0.15);
}

.service-image-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #D5F3F9 0%, #C0EDF4 100%);
    flex-shrink: 0;
}

.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    flex-shrink: 0;
    display: block;
}

.service-content {
    padding: 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: #0E133D;
    margin-bottom: 12px;
}

.service-content p {
    font-size: 16px;
    color: #6e6e73;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-link {
    color: #00B2CC;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.2s ease;
}

.service-link:hover {
    color: #009BB5;
    padding-left: 8px;
}

/* CTA Section */
.cta-section {
    padding: 80px 8%;
    background: #D5F3F9;
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: #0E133D;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    color: #0E133D;
    opacity: 0.75;
    margin-bottom: 32px;
}

/* About Content */
.about-content {
    padding: 100px 8%;
    background: #fff;
}

.about-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.about-intro h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: #0E133D;
    margin-bottom: 16px;
}

.about-intro p {
    font-size: 18px;
    color: #6e6e73;
    line-height: 1.6;
}

.about-story {
    max-width: 800px;
    margin: 0 auto 100px;
    text-align: center;
}

.story-content h3 {
    font-size: 32px;
    font-weight: 700;
    color: #0E133D;
    margin-bottom: 24px;
}

.story-content p {
    font-size: 16px;
    color: #6e6e73;
    line-height: 1.8;
    margin-bottom: 16px;
}

.story-image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #D5F3F9 0%, #C0EDF4 100%);
    border-radius: 20px;
}

.values-section {
    max-width: 1200px;
    margin: 0 auto 100px;
}

.values-section h3 {
    font-size: 32px;
    font-weight: 700;
    color: #0E133D;
    margin-bottom: 40px;
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.value-card {
    padding: 32px;
    background: #f5f5f7;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    background: #fff;
    box-shadow: 0 12px 40px rgba(0, 178, 204, 0.15);
}

.value-card h4 {
    font-size: 22px;
    font-weight: 600;
    color: #0E133D;
    margin-bottom: 12px;
}

.value-card p {
    font-size: 15px;
    color: #6e6e73;
    line-height: 1.6;
}

.team-section {
    max-width: 1200px;
    margin: 0 auto;
}

.team-section h3 {
    font-size: 32px;
    font-weight: 700;
    color: #0E133D;
    margin-bottom: 16px;
    text-align: center;
}

.team-intro {
    font-size: 18px;
    color: #6e6e73;
    text-align: center;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.team-member {
    text-align: center;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-8px);
}

.team-photo-placeholder {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #D5F3F9 0%, #C0EDF4 100%);
    border-radius: 50%;
    margin: 0 auto 20px;
}

.team-member h4 {
    font-size: 20px;
    font-weight: 600;
    color: #0E133D;
    margin-bottom: 8px;
}

.team-member p {
    font-size: 15px;
    color: #6e6e73;
}

@media (max-width: 768px) {
    .about-story {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .story-image-placeholder {
        height: 300px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* FAQ Content */
.faq-content {
    padding: 100px 8%;
    background: #fff;
}

.faq-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.faq-intro h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: #0E133D;
    margin-bottom: 16px;
}

.faq-intro p {
    font-size: 18px;
    color: #6e6e73;
    line-height: 1.6;
}

.faq-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto 80px;
}

.faq-category-card {
    padding: 32px;
    background: #f5f5f7;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.faq-category-card:hover {
    transform: translateY(-4px);
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 178, 204, 0.15);
}

.faq-category-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #0E133D;
    margin-bottom: 8px;
}

.faq-category-card p {
    font-size: 14px;
    color: #6e6e73;
    line-height: 1.5;
}

.faq-section {
    max-width: 900px;
    margin: 0 auto 60px;
}

.faq-section h3 {
    font-size: 28px;
    font-weight: 700;
    color: #0E133D;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid #00B2CC;
}

.faq-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: #f5f5f7;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    background: #fff;
    box-shadow: 0 4px 16px rgba(0, 178, 204, 0.1);
}

.faq-question {
    width: 100%;
    padding: 24px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: 500;
    color: #0E133D;
    text-align: left;
    transition: all 0.2s ease;
}

.faq-question:hover {
    color: #00B2CC;
}

.faq-icon {
    font-size: 24px;
    font-weight: 300;
    color: #00B2CC;
    transition: transform 0.3s ease;
    min-width: 24px;
    text-align: center;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 24px 24px;
}

.faq-answer p {
    font-size: 16px;
    color: #6e6e73;
    line-height: 1.6;
}

/* Contact Content */
.contact-content {
    padding: 100px 8%;
    background: #fff;
}

.contact-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.contact-intro h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: #0E133D;
    margin-bottom: 16px;
}

.contact-intro p {
    font-size: 18px;
    color: #6e6e73;
    line-height: 1.6;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-card {
    padding: 32px;
    background: #f5f5f7;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-4px);
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 178, 204, 0.15);
}

.contact-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #0E133D;
    margin-bottom: 8px;
}

.contact-card p {
    font-size: 16px;
    color: #6e6e73;
    margin-bottom: 12px;
}

.contact-link {
    color: #00B2CC;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.2s ease;
}

.contact-link:hover {
    color: #009BB5;
    padding-left: 4px;
}

.contact-form-container {
    background: #f5f5f7;
    padding: 40px;
    border-radius: 20px;
}

.contact-form-container h3 {
    font-size: 24px;
    font-weight: 600;
    color: #0E133D;
    margin-bottom: 24px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: #0E133D;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e5e5e7;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s ease;
    background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00B2CC;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.map-section {
    padding: 80px 8%;
    background: #D5F3F9;
    text-align: center;
}

.map-content h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: #0E133D;
    margin-bottom: 16px;
}

.map-content p {
    font-size: 18px;
    color: #0E133D;
    opacity: 0.75;
    max-width: 800px;
    margin: 0 auto 40px;
}

#map {
    height: 450px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 178, 204, 0.15);
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Service Detail Pages */
.service-detail {
    padding: 100px 8%;
    background: #fff;
}

.service-detail-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.service-detail-intro h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: #0E133D;
    margin-bottom: 16px;
}

.service-detail-intro p {
    font-size: 18px;
    color: #6e6e73;
    line-height: 1.6;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto 80px;
    align-items: center;
}

.service-detail-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: #0E133D;
    margin-bottom: 24px;
}

.service-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-list li {
    font-size: 16px;
    color: #6e6e73;
    padding-left: 20px;
    position: relative;
}

.service-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #00B2CC;
    border-radius: 50%;
}

.service-detail-image {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #D5F3F9 0%, #C0EDF4 100%);
    border-radius: 20px;
}

.service-benefits {
    max-width: 1200px;
    margin: 0 auto;
}

.service-benefits h3 {
    font-size: 32px;
    font-weight: 700;
    color: #0E133D;
    margin-bottom: 40px;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.benefit-card {
    padding: 32px;
    background: #f5f5f7;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    background: #fff;
    box-shadow: 0 12px 40px rgba(0, 178, 204, 0.15);
}

.benefit-card h4 {
    font-size: 22px;
    font-weight: 600;
    color: #0E133D;
    margin-bottom: 12px;
}

.benefit-card p {
    font-size: 15px;
    color: #6e6e73;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-detail-image {
        height: 250px;
    }
}

/* Map labels */
.map-label {
    background: transparent;
    border: none;
    box-shadow: none;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #0E133D;
}

/* ===== MOBILE RESPONSIVE ===== */

/* Hamburger button */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #0E133D;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 768px) {

    /* Nav */
    .hamburger {
        display: flex;
    }

    nav {
        padding: 16px 5%;
    }

    nav.scrolled {
        padding: 12px 5%;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0;
        margin-right: 0;
        z-index: 999;
        padding: 80px 0 40px;
        overflow-y: auto;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-item {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }

    .nav-links a {
        font-size: 18px;
        padding: 16px 24px;
        display: block;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(0, 178, 204, 0.05);
        border-radius: 0;
        padding: 0;
        display: none;
    }

    .dropdown.open .dropdown-menu {
        display: block;
    }

    .dropdown-menu a {
        font-size: 15px;
        padding: 12px 40px;
        border-left: none;
        color: #6e6e73;
    }

    .dropdown-menu a:hover {
        padding-left: 40px;
        background: rgba(0, 178, 204, 0.08);
    }

    /* Logo */
    .logo {
        height: 70px;
        max-height: 70px;
    }

    nav.scrolled .logo {
        height: 55px;
        max-height: 55px;
    }

    /* Hero */
    .hero {
        padding: 0 5%;
        align-items: center;
    }

    .hero-content {
        text-align: center;
    }

    .hero h1 {
        font-size: 36px;
    }

    .subheading {
        font-size: 16px;
    }

    /* Page hero */
    .page-hero {
        padding: 100px 5% 40px;
        min-height: 250px;
    }

    /* Features */
    .features-grid {
        grid-template-columns: 1fr;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
    }

    /* Service detail */
    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-detail-image {
        height: 250px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    /* About */
    .about-story {
        margin-bottom: 60px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .contact-form-container {
        padding: 24px;
    }

    /* FAQ */
    .faq-categories {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    /* Map */
    #map {
        height: 300px;
    }

    /* CTA section */
    .cta-section {
        padding: 60px 5%;
    }

    /* Services overview */
    .services-overview {
        padding: 60px 5%;
    }

    /* Service detail section */
    .service-detail {
        padding: 60px 5%;
    }

    /* About content */
    .about-content {
        padding: 60px 5%;
    }

    /* FAQ content */
    .faq-content {
        padding: 60px 5%;
    }

    /* Contact content */
    .contact-content {
        padding: 60px 5%;
    }

    /* Map section */
    .map-section {
        padding: 60px 5%;
    }

    /* Footer */
    footer {
        padding: 40px 5% 24px;
    }
}
