:root {
    --primary: #2b549e;
    --secondary: #f0832a;
    --secondary-light: #f5c400;
    --text-dark: #1a202c;
    --text-medium: #2d3748;
    --text-light: #4a5568;
    --bg-light: #f5f7fa;
    --white: #fff;
    --radius-sm: 12px;
    --radius-md: 24px;
    --radius-lg: 50px;
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    --max-width: 1400px;
    --content-width: 1200px;
    --spacing-sm: 20px;
    --spacing-md: 40px;
    --spacing-lg: 60px;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--bg-light);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

body::before,
body::after {
    content: '';
    position: fixed;
    animation: morph 40s ease-in-out infinite;
    z-index: 0;
    width: 600px;
    height: 600px;
}

body::before {
    top: -50%;
    right: -10%;
    background: #f5c40039;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
}

body::after {
    bottom: -30%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: #2b539e22;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation-duration: 35s;
    animation-direction: reverse;
}

@keyframes morph {
    0%,
    100% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
        transform: rotate(0deg);
    }

    50% {
        border-radius: 55% 45% 40% 60% / 55% 40% 60% 45%;
        transform: rotate(2deg);
    }
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: transparent;
    transition: var(--transition);
}

nav.scrolled {
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    z-index: 10;
}

.logo-img {
    height: 75px;
    width: auto;
    transition: var(--transition);
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    background: var(--white);
    padding: 6px;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}

.nav-link {
    display: block;
    padding: 10px 24px;
    color: var(--text-medium);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border-radius: calc(var(--radius-lg) - 6px);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary);
    background: rgba(43, 84, 158, 0.08);
}

.nav-link.active {
    background: var(--primary);
    color: var(--white);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cta-btn,
.hero-btn,
.service-card .btn,
.submit-btn {
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    border: none;
}

.cta-btn {
    background: var(--secondary);
    color: var(--white);
}

.cta-btn:hover,
.submit-btn:hover {
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    background: var(--white);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.menu-toggle:hover {
    background: var(--bg-light);
}

.menu-toggle span {
    width: 22px;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
    border-radius: 2px;
}

/* Hero */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 140px var(--spacing-lg) var(--spacing-lg);
    position: relative;
    z-index: 1;
    gap: var(--spacing-lg);
}

.hero-content {
    text-align: left;
    max-width: 600px;
    flex-shrink: 0;
    position: relative;
}

.hero-shape-desktop,
.hero-shape-mobile {
    position: absolute;
    background: #f0832a72;
    border-radius: 45% 55% 60% 40% / 50% 60% 40% 50%;
    animation: float 12s ease-in-out infinite;
    z-index: -1;
}

.hero-shape-desktop {
    width: 300px;
    height: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-shape-mobile {
    display: none;
    width: 270px;
    height: 220px;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
}

@keyframes float {
    0%,
    100% {
        transform: translate(-50%, -50%) rotate(0deg);
        border-radius: 45% 55% 60% 40% / 50% 60% 40% 50%;
    }

    50% {
        transform: translate(-50%, -52%) rotate(2deg);
        border-radius: 50% 50% 45% 55% / 55% 45% 55% 45%;
    }
}

.hero-content h1 {
    font-size: 72px;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 32px;
    line-height: 1.1;
    animation: fadeInUp 0.8s ease;
}

.hero-content p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
    animation: fadeInUp 0.8s ease 0.1s backwards;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-btn {
    padding: 16px 32px;
    font-size: 16px;
    border: 2px solid;
}

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

.hero-btn.primary:hover,
.hero-btn.secondary:hover {
    color: var(--white);
    transform: translateY(-1px);
}

.hero-btn.primary:hover {
    background: var(--primary);
}

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

.hero-btn.secondary:hover {
    background: var(--secondary);
}

.hero-image-container {
    position: relative;
    width: 600px;
    height: 600px;
    margin-left: 80px;
    animation: fadeInRight 1s ease 0.3s backwards;
}

.hero-image-blob {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--secondary);
    border-radius: 45% 55% 60% 40% / 50% 60% 40% 50%;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(240, 131, 42, 0.3);
    animation: morphBlob 16s ease-in-out infinite;
}

@keyframes morphBlob {
    0%,
    100% {
        border-radius: 45% 55% 60% 40% / 50% 60% 40% 50%;
    }

    50% {
        border-radius: 50% 50% 45% 55% / 55% 45% 55% 45%;
    }
}

.hero-image-blob::before {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50% 40% 60% 50% / 40% 60% 40% 60%;
    animation: float 12s ease-in-out infinite;
}

.hero-image-blob img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* Content */
.page-header {
    padding: 160px var(--spacing-md) 60px;
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: var(--content-width);
    margin: 0 auto;
}

.page-header h1 {
    font-size: 56px;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.page-header p {
    font-size: 20px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.content-section {
    max-width: var(--content-width);
    margin: 80px auto;
    padding: var(--spacing-lg) var(--spacing-md);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: var(--blur);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1;
}

.content-section h2 {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 24px;
    text-align: center;
}

.content-section h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    margin: var(--spacing-md) 0 16px;
}

.content-section p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: var(--spacing-sm);
}

.content-section ul {
    list-style: none;
    padding-left: 0;
    margin: 24px 0;
}

.content-section ul li {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 12px;
    padding-left: 32px;
    position: relative;
}

.content-section ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
    font-size: 20px;
}

/* Services */
.services-overview {
    text-align: center;
    position: relative;
    overflow: hidden;
}

.services-overview::before,
.services-overview::after {
    content: '';
    position: absolute;
    animation: morphBlob ease-in-out infinite;
    z-index: 0;
}

.services-overview::before {
    top: -200px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: rgba(240, 131, 42, 0.08);
    border-radius: 45% 55% 60% 40% / 50% 60% 40% 50%;
    animation-duration: 20s;
}

.services-overview::after {
    bottom: -150px;
    left: -80px;
    width: 350px;
    height: 350px;
    background: rgba(43, 84, 158, 0.06);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation-duration: 25s;
    animation-direction: reverse;
}

.section-intro {
    font-size: 20px;
    color: var(--text-light);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    position: relative;
    z-index: 1;
}

.services-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin: var(--spacing-lg) 0;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

.service-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: var(--blur);
    padding: 45px 35px;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition-slow);
    border: 2px solid rgba(43, 84, 158, 0.15);
    text-align: center;
    position: relative;
    overflow: hidden;
    flex: 0 1 340px;
    height: 490px;
    display: flex;
    flex-direction: column;
}

.service-card::before,
.service-card::after {
    content: '';
    position: absolute;
    transition: var(--transition-slow);
}

.service-card::before {
    top: -50%;
    right: -50%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(240, 131, 42, 0.12), transparent);
    border-radius: 50%;
    opacity: 0;
}

.service-card::after {
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    background: var(--secondary);
    z-index: -1;
}

.service-card:hover::before {
    opacity: 1;
    transform: translate(-30px, 30px) scale(1.2);
}

.service-card:hover::after {
    height: 6px;
}

.service-card:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 15px 35px rgba(43, 84, 158, 0.15);
    border-color: rgba(43, 84, 158, 0.25);
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(10%);
    transition: var(--transition-slow);
    position: relative;
    z-index: 1;
    margin-bottom: 5px;
}

.service-icon .oma {
    width: 120px;
    height: 120px;
    background-size: 120px 120px;
}

.service-card:hover .service-icon {
    transform: scale(1.05) rotate(-2deg);
    filter: grayscale(0%) drop-shadow(0 5px 10px rgba(240, 131, 42, 0.2));
}

.service-card h3 {
    font-size: 26px;
    color: var(--primary);
    margin: 0 0 18px;
    position: relative;
    z-index: 1;
    font-weight: 800;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: auto;
    padding-bottom: 24px;
    position: relative;
    z-index: 1;
    flex-grow: 1;
}

.service-card .btn {
    background: var(--primary);
    color: var(--white);
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(43, 84, 158, 0.25);
    margin-top: auto;
    font-size: 15px;
    padding: 14px 32px;
}

.service-card .btn:hover {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 6px 20px rgba(43, 84, 158, 0.3);
}

/* Why Section */
.why-section {
    background: rgba(43, 84, 158, 0.03);
    position: relative;
    overflow: hidden;
}

.why-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: rgba(245, 196, 0, 0.08);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    animation: float 30s ease-in-out infinite;
    z-index: 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.why-card {
    padding: 40px 35px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: var(--blur);
    border-radius: var(--radius-md);
    border: 2px solid rgba(43, 84, 158, 0.12);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.why-card::before,
.why-card::after {
    content: '';
    position: absolute;
}

.why-card::before {
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--secondary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
}

.why-card::after {
    bottom: -100px;
    right: -100px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(43, 84, 158, 0.08), transparent);
    border-radius: 50%;
    transition: var(--transition-slow);
}

.why-card:hover::before {
    transform: scaleX(1);
}

.why-card:hover::after {
    bottom: -50px;
    right: -50px;
}

.why-card:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 10px 25px rgba(43, 84, 158, 0.15);
    border-color: rgba(43, 84, 158, 0.2);
}

.why-number {
    font-size: 56px;
    font-weight: 900;
    color: var(--secondary);
    margin-bottom: 15px;
    line-height: 1;
    display: inline-block;
}

.why-card:hover .why-number {
    transform: scale(1.03) rotate(-1deg);
}

.why-card h3 {
    font-size: 22px;
    color: var(--primary);
    margin: 15px 0;
    position: relative;
    z-index: 1;
}

.why-card p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Stats Section */
.stats-section {
    padding: 100px var(--spacing-md);
    background: var(--primary);
    position: relative;
    z-index: 1;
    margin: 80px 0;
    overflow: hidden;
}

.stats-section::before,
.stats-section::after {
    content: '';
    position: absolute;
    animation: morphBlob ease-in-out infinite;
}

.stats-section::before {
    top: -100px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 45% 55% 60% 40% / 50% 60% 40% 50%;
    animation-duration: 25s;
}

.stats-section::after {
    bottom: -120px;
    left: -120px;
    width: 500px;
    height: 500px;
    background: rgba(240, 131, 42, 0.1);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation-duration: 30s;
    animation-direction: reverse;
}

.stats-container {
    max-width: var(--content-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 50px;
    position: relative;
    z-index: 1;
}

.stat-card {
    text-align: center;
    color: var(--white);
    position: relative;
    padding: 30px 20px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.stat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-md);
    padding: 2px;
    background: rgba(255, 255, 255, 0.3);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-3px) scale(1.02);
    background: rgba(255, 255, 255, 0.12);
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-number {
    font-size: 64px;
    font-weight: 900;
    margin-bottom: 12px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    color: var(--secondary);
}

.stat-label {
    font-size: 17px;
    font-weight: 600;
    opacity: 0.95;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* CTA Section */
.cta-section {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: var(--blur);
    padding: 80px var(--spacing-md);
    margin: 80px auto;
    max-width: var(--content-width);
    border-radius: var(--radius-md);
    text-align: center;
    position: relative;
    z-index: 1;
    border: 2px solid rgba(43, 84, 158, 0.15);
    overflow: hidden;
}

.cta-section::before,
.cta-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    animation: float ease-in-out infinite;
    z-index: 0;
}

.cta-section::before {
    top: -150px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(240, 131, 42, 0.15), transparent);
    animation-duration: 20s;
}

.cta-section::after {
    bottom: -100px;
    left: -80px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(43, 84, 158, 0.12), transparent);
    animation-duration: 25s;
    animation-direction: reverse;
}

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

.cta-content h2 {
    font-size: 48px;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 24px;
    line-height: 1.2;
}

.cta-content p {
    font-size: 20px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 45px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn-large {
    padding: 20px 45px;
    font-size: 17px;
    font-weight: 700;
    border-radius: var(--radius-lg);
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    border: 3px solid;
    position: relative;
    overflow: hidden;
}

.cta-btn-large::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-btn-large:hover::before {
    width: 300px;
    height: 300px;
}

.cta-btn-large.primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 8px 25px rgba(43, 84, 158, 0.35);
}

.cta-btn-large.primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 10px 25px rgba(43, 84, 158, 0.35);
}

.cta-btn-large.secondary {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    color: var(--secondary);
    border-color: var(--secondary);
    box-shadow: 0 6px 20px rgba(240, 131, 42, 0.2);
}

.cta-btn-large.secondary:hover {
    background: var(--secondary);
    color: var(--white);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 10px 25px rgba(240, 131, 42, 0.3);
}

/* Forms */
.contact-form {
    max-width: 600px;
    margin: var(--spacing-md) auto;
}

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

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-medium);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    font-size: 16px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-sm);
    font-family: inherit;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.9);
}

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

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

.submit-btn {
    padding: 16px 48px;
    background: var(--primary);
    color: var(--white);
}

/* Footer */
footer {
    background: rgba(43, 84, 158, 0.95);
    color: var(--white);
    padding: var(--spacing-lg) var(--spacing-md) 30px;
    margin-top: 80px;
    position: relative;
    z-index: 1;
}

.footer-content {
    max-width: var(--content-width);
    margin: 0 auto var(--spacing-md);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.footer-section h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-section p,
.footer-section a {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--secondary);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    margin: 0 12px;
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: var(--secondary);
}

/* Locations */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--spacing-md);
    margin: var(--spacing-lg) 0;
}

.location-card {
    background: rgba(43, 84, 158, 0.05);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    border: 2px solid rgba(43, 84, 158, 0.15);
}

.location-card h3 {
    font-size: 32px;
    color: var(--primary);
    margin: 0 0 24px;
}

.location-card p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 12px;
}

.location-card strong {
    color: var(--primary);
}

/* Responsive */
@media (max-width: 968px) {
    nav {
        padding: 12px 0;
    }

    nav.scrolled {
        padding: 8px 0;
    }

    .nav-container {
        padding: 0 var(--spacing-sm);
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 72px;
        left: var(--spacing-sm);
        right: var(--spacing-sm);
        flex-direction: column;
        background: var(--white);
        border-radius: var(--radius-md);
        padding: 16px;
        gap: 8px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-link {
        padding: 14px 20px;
        text-align: center;
        border-radius: var(--radius-sm);
    }

    .menu-toggle {
        display: flex;
    }

    .menu-toggle.active {
        background: var(--primary);
    }

    .menu-toggle.active span {
        background: var(--white);
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .cta-btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .logo {
        margin-top: -10px;
    }

    .logo-img {
        height: 60px;
    }

    .hero {
        flex-direction: column-reverse;
        padding: 100px var(--spacing-sm) var(--spacing-md);
        gap: var(--spacing-md);
        min-height: auto;
    }

    .hero-content {
        text-align: center;
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 42px;
        margin-bottom: 24px;
        line-height: 1.15;
    }

    .hero-content p {
        font-size: 17px;
        margin-bottom: 32px;
        padding: 0 10px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .hero-btn {
        width: 100%;
        padding: 14px 24px;
        font-size: 15px;
    }

    .hero-image-container {
        width: 100%;
        max-width: 320px;
        height: 320px;
        margin-left: 0;
    }

    .hero-shape-desktop {
        display: none;
    }

    .hero-shape-mobile {
        display: block;
    }

    .content-section {
        padding: var(--spacing-md) var(--spacing-sm);
        margin: var(--spacing-md) var(--spacing-sm);
    }

    .page-header {
        padding: 120px var(--spacing-sm) 40px;
    }

    .page-header h1 {
        font-size: 36px;
    }

    .page-header p {
        font-size: 17px;
    }

    .content-section h2 {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .content-section h3 {
        font-size: 24px;
    }

    .services-grid {
        flex-direction: column;
        gap: 30px;
    }

    .service-card {
        padding-top: 15px;
        flex: 1 1 100%;
        max-width: 100%;
        height: auto;
        min-height: 400px;
        transform: translateY(0) !important;
    }

    .service-card:hover {
        transform: translateY(-8px) !important;
    }

    .service-card h3 {
        font-size: 24px;
    }

    .section-intro {
        font-size: 16px;
        margin-bottom: 32px;
        padding: 0 10px;
    }

    .locations-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .stat-number {
        font-size: 42px;
    }

    .stat-label {
        font-size: 15px;
    }

    .cta-content h2 {
        font-size: 32px;
    }

    .cta-content p {
        font-size: 17px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-btn-large {
        width: 100%;
    }

    footer {
        padding: var(--spacing-md) var(--spacing-sm) var(--spacing-sm);
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}