:root {
    --primary-dark: #0A1628;
    --primary-navy: #1A2B4A;
    --accent-gold: #D4AF37;
    --accent-gold-light: #E5C158;
    --text-light: #FFFFFF;
    --text-gray: #9CA3AF;
    --text-dark: #1F2937;
    --bg-light: #F9FAFB;
    --bg-gradient: linear-gradient(135deg, #0A1628 0%, #1A2B4A 100%);
    
    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 8px rgba(10, 22, 40, 0.1);
    --shadow-md: 0 4px 16px rgba(10, 22, 40, 0.15);
    --shadow-lg: 0 8px 32px rgba(10, 22, 40, 0.2);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Language Selector */
.language-selector {
    position: fixed;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 8px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 8px;
    border-radius: 50px;
    box-shadow: var(--shadow-md);
}

.lang-btn {
    padding: 8px 16px;
    border: none;
    background: transparent;
    color: var(--text-dark);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    border-radius: 50px;
    transition: var(--transition);
}

.lang-btn:hover {
    background: var(--bg-light);
}

.lang-btn.active {
    background: var(--primary-dark);
    color: var(--text-light);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 999;
    padding: 20px 0;
    box-shadow: var(--shadow-sm);
    animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--primary-dark);
    transition: var(--transition);
}

.logo svg {
    color: var(--accent-gold);
}

.logo:hover {
    opacity: 0.8;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-item.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    text-decoration: none;
    position: relative;
    transition: var(--transition);
    display: block;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--accent-gold);
}

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

/* Dropdown Menu - Mega Menu Style */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 280px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 16px 48px rgba(10, 22, 40, 0.2);
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    margin-top: 16px;
    overflow: hidden;
    border: 1px solid rgba(10, 22, 40, 0.08);
}

.nav-item.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Services Mega Menu */
.dropdown-menu.services-mega {
    min-width: 720px;
    max-width: 900px;
    padding: 32px;
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.mega-menu-item {
    position: relative;
    padding: 24px;
    border-radius: 12px;
    background: white;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
    display: block;
    overflow: hidden;
}

.mega-menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(10, 22, 40, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.mega-menu-item:hover {
    transform: translateY(-4px);
    border-color: var(--accent-gold);
    box-shadow: 0 12px 32px rgba(212, 175, 55, 0.15);
}

.mega-menu-item:hover::before {
    opacity: 1;
}

.mega-menu-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1A2B4A 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.mega-menu-icon svg {
    width: 24px;
    height: 24px;
    color: var(--accent-gold);
    transition: transform 0.3s ease;
}

.mega-menu-item:hover .mega-menu-icon {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #E6C050 100%);
    transform: scale(1.1);
}

.mega-menu-item:hover .mega-menu-icon svg {
    color: var(--primary-dark);
    transform: scale(1.1);
}

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

.mega-menu-title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.mega-menu-item:hover .mega-menu-title {
    color: var(--accent-gold);
}

.mega-menu-desc {
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-gray);
    margin: 0;
}

.mega-menu-arrow {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.mega-menu-item:hover .mega-menu-arrow {
    opacity: 1;
    transform: translateX(0);
    background: var(--accent-gold);
}

.mega-menu-arrow svg {
    width: 12px;
    height: 12px;
    color: var(--primary-dark);
}

.dropdown-menu-wide {
    min-width: 520px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 24px;
}

.dropdown-section {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.dropdown-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 12px 16px 8px;
    margin-bottom: 4px;
    background: var(--bg-light);
    border-radius: 8px;
}

.dropdown-link {
    padding: 12px 16px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.dropdown-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: var(--accent-gold);
    transition: height 0.3s ease;
    border-radius: 0 2px 2px 0;
}

.dropdown-link:hover {
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.08) 0%, rgba(212, 175, 55, 0.02) 100%);
    color: var(--accent-gold);
    padding-left: 20px;
}

.dropdown-link:hover::before {
    height: 80%;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--primary-dark);
    transition: var(--transition);
}

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

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

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

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-gradient);
    z-index: -1;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -25%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

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

.hero-content {
    text-align: center;
    color: var(--text-light);
    max-width: 900px;
    animation: fadeInUp 1s ease-out 0.3s both;
}

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

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(48px, 8vw, 80px);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 32px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 48px;
    line-height: 1.8;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 48px;
    background: var(--accent-gold);
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
}

.cta-button:hover {
    background: var(--accent-gold-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(212, 175, 55, 0.4);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: fadeIn 1s ease-out 1.2s both;
}

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

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.7), transparent);
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0%, 100% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(10px);
        opacity: 0.5;
    }
}

/* Section Common Styles */
section {
    padding: 120px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 500;
    color: var(--primary-dark);
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.section-description {
    font-size: 18px;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

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

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.service-card {
    padding: 48px 32px;
    background: var(--bg-light);
    border-radius: 16px;
    transition: var(--transition);
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-gold);
    background: var(--text-light);
}

.service-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-dark);
    border-radius: 12px;
    color: var(--accent-gold);
    margin-bottom: 24px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--accent-gold);
    color: var(--primary-dark);
    transform: rotate(5deg) scale(1.05);
}

.service-title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 16px;
}

.service-description {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* Locations Section */
.locations {
    background: var(--bg-gradient);
    color: var(--text-light);
}

.locations .section-label,
.locations .section-title,
.locations .section-description {
    color: var(--text-light);
}

.locations .section-description {
    opacity: 0.9;
}

.locations-container {
    max-width: 1000px;
    margin: 0 auto;
}

.locations-map {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 48px;
}

.map-region {
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.map-region:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 175, 55, 0.3);
}

.region-title {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 600;
    color: var(--accent-gold);
    margin-bottom: 24px;
    letter-spacing: 1px;
}

.cities-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.city-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-light);
    font-family: var(--font-body);
    cursor: pointer;
    transition: var(--transition);
    text-align: left;
}

.city-btn:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--accent-gold);
    transform: translateX(8px);
}

.city-name {
    font-size: 16px;
    font-weight: 500;
}

.city-name-local {
    font-size: 14px;
    opacity: 0.7;
}

/* Contact Section */
.contact {
    background: var(--text-light);
}

.contact-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-dark);
    letter-spacing: 0.5px;
}

.required {
    color: var(--accent-gold);
}

.form-group input,
.form-group textarea {
    padding: 14px 18px;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-dark);
    transition: var(--transition);
    background: var(--bg-light);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: var(--text-light);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

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

.submit-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 48px;
    background: var(--primary-dark);
    color: var(--text-light);
    border: none;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 8px;
}

.submit-button:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.submit-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.button-icon {
    font-size: 20px;
    transition: var(--transition);
}

.submit-button:hover .button-icon {
    transform: translateX(4px);
}

.form-status {
    padding: 16px;
    border-radius: 8px;
    font-size: 14px;
    text-align: center;
    display: none;
}

.form-status.success {
    display: block;
    background: #D1FAE5;
    color: #065F46;
    border: 1px solid #A7F3D0;
}

.form-status.error {
    display: block;
    background: #FEE2E2;
    color: #991B1B;
    border: 1px solid #FECACA;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.info-card {
    padding: 40px;
    background: var(--bg-gradient);
    color: var(--text-light);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.info-card h4 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--accent-gold);
}

.info-card p {
    line-height: 1.8;
    opacity: 0.9;
}

.info-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.stat {
    text-align: center;
    padding: 24px;
    background: var(--bg-light);
    border-radius: 12px;
    transition: var(--transition);
}

.stat:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Footer */
.footer {
    background: var(--primary-dark);
    color: var(--text-light);
    padding: 60px 0 40px;
}

.footer-content {
    text-align: center;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
}

.footer-brand svg {
    color: var(--accent-gold);
}

.footer-tagline {
    font-size: 16px;
    opacity: 0.8;
    margin-bottom: 16px;
}

.footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 14px;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent-gold);
}

.footer-links span {
    opacity: 0.4;
}

.footer-copyright {
    font-size: 14px;
    opacity: 0.6;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .info-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .language-selector {
        top: 12px;
        right: 12px;
        padding: 6px;
    }
    
    .lang-btn {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .navbar {
        padding: 16px 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        padding: 20px;
        box-shadow: var(--shadow-lg);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .nav-links.active {
        max-height: 80vh;
        overflow-y: auto;
    }
    
    .nav-item {
        width: 100%;
        border-bottom: 1px solid var(--bg-light);
    }
    
    .nav-link {
        padding: 12px 0;
        font-size: 16px;
    }
    
    /* Mobile Mega Menu */
    .dropdown-menu.services-mega {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0;
        margin-top: 8px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        border: none;
    }
    
    .nav-item.active .dropdown-menu.services-mega {
        max-height: 1200px;
    }
    
    .mega-menu-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 12px 0;
    }
    
    .mega-menu-item {
        padding: 16px;
    }
    
    .mega-menu-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 12px;
    }
    
    .mega-menu-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .mega-menu-title {
        font-size: 16px;
    }
    
    .mega-menu-desc {
        font-size: 12px;
    }
    
    .mega-menu-arrow {
        bottom: 16px;
        right: 16px;
        width: 20px;
        height: 20px;
    }
    
    /* Mobile Location Menu */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0 0 0 20px;
        margin-top: 8px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .nav-item.active .dropdown-menu {
        max-height: 500px;
    }
    
    .dropdown-menu-wide {
        grid-template-columns: 1fr;
        padding: 0 0 0 20px;
        min-width: auto;
    }
    
    .dropdown-link {
        padding: 8px 12px;
    }
    
    .logo-text {
        font-size: 16px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    section {
        padding: 80px 0;
    }
    
    .section-header {
        margin-bottom: 48px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .locations-map {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .info-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .cta-button {
        padding: 14px 32px;
        font-size: 15px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .service-card {
        padding: 32px 24px;
    }
    
    .map-region {
        padding: 28px;
    }
}

/* Animation delays for staggered effects */
.service-card:nth-child(1) { animation: fadeInUp 0.6s ease-out 0.1s both; }
.service-card:nth-child(2) { animation: fadeInUp 0.6s ease-out 0.2s both; }
.service-card:nth-child(3) { animation: fadeInUp 0.6s ease-out 0.3s both; }
.service-card:nth-child(4) { animation: fadeInUp 0.6s ease-out 0.4s both; }
