* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

/* MAIN HEADER - Enhanced Mobile Support */
.main-header {
    background: #FFFFFF;
    width: 100%;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #EEEEEE;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 85px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    padding: 0 40px;
}

/* LOGO - Enhanced Responsiveness */
.header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    flex-shrink: 0;
    margin-right: auto;
    z-index: 1001;
}

.header-logo .logo-icon {
    width: 48px;
    height: 48px;
    background: #113768;
    border-radius: 16px;
    border: 2px solid rgba(17, 55, 104, 0.15);
    box-shadow: 0 4px 16px rgba(21, 57, 106, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease;
}

.header-logo .logo-icon:hover {
    transform: scale(1.05);
}

.header-logo .h-letter {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1;
}

.header-logo .logo-text {
    display: flex;
    flex-direction: column;
    color: #113768;
}

.header-logo .company-main {
    font-size: 1rem;
    font-weight: 700;
    color: #113768;
    letter-spacing: 0.5px;
}

.header-logo .company-sub {
    font-size: 0.7rem;
    color: #7C7C7C;
    letter-spacing: 0.5px;
}

/* Brand Logo Styles */
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-badge {
    width: 48px;
    height: 48px;
    background: #14396a;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1;
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.brand-badge:hover {
    transform: scale(1.05);
}

.brand-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.brand-name {
    font-size: 1rem;
    font-weight: 700;
    color: #14396a;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.brand-sub {
    font-size: 0.7rem;
    font-weight: 500;
    color: #14396a;
    opacity: 0.7;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

/* NAVIGATION - Improved Mobile Implementation */
.header-nav-left,
.header-nav-right {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-left: auto;
}

.header-nav-left .nav-link,
.header-nav-right .nav-link {
    color: #222222;
    font-weight: 300;
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.3s ease;
    letter-spacing: 0.5px;
    padding: 8px 0;
    position: relative;
}

.header-nav-left .nav-link:hover,
.header-nav-right .nav-link:hover {
    color: #3A68B8;
}

.header-nav-left .nav-link.active,
.header-nav-right .nav-link.active {
    color: #3A68B8;
}

.header-nav-left .nav-link.active::after,
.header-nav-right .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #3A68B8;
}

/* CTA BUTTON */
.header-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: transparent;
    border: 1px solid #3A68B8;
    border-radius: 999px;
    color: #3A68B8;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.header-cta-btn:hover {
    background: #3A68B8;
    color: #FFFFFF;
}

/* MOBILE MENU - Enhanced Functionality */
.header-menu {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    width: 28px;
    height: 28px;
    justify-content: center;
    position: absolute;
    right: 40px;
    z-index: 1002;
}

.header-menu span {
    display: block;
    height: 2px;
    width: 100%;
    background: #222222;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.header-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.header-menu.active span:nth-child(2) {
    opacity: 0;
}

.header-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* DROPDOWN - Enhanced Mobile Support */
.nav-dropdown {
    position: relative;
}

.nav-dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: #FFFFFF;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 12px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 9999;
    border: 1px solid #EEEEEE;
}

.nav-dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown .dropdown-menu li a {
    color: #222222;
    font-size: 0.9rem;
    font-weight: 300;
    display: block;
    padding: 10px 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.nav-dropdown .dropdown-menu li a:hover {
    background: #F7F7F7;
    color: #3A68B8;
}

/* RESPONSIVE NAVIGATION - Complete Mobile Menu Fix */
@media (max-width: 1024px) {
    .header-menu {
        display: flex;
        right: 20px;
    }

    /* Hide desktop navigation and show mobile menu */
    .header-nav-left,
    .header-nav-right {
        position: fixed;
        top: 85px;
        left: 0;
        right: 0;
        background: #FFFFFF;
        flex-direction: column;
        padding: 20px;
        gap: 0;
        margin: 0;
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        height: calc(100vh - 85px);
        overflow-y: auto;
        width: 100%;
        z-index: 999;
        opacity: 0;
        visibility: hidden;
    }

    .header-nav-left.active,
    .header-nav-right.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }

    /* Combine both navigations into one mobile menu */
    /* .header-nav-left will contain all navigation items in mobile */

    .header-nav-right {
        display: none; /* Hide right nav in mobile, merge with left */
    }

    /* Mobile navigation links styling */
    .header-nav-left .nav-link,
    .header-nav-right .nav-link {
        display: block;
        width: 100%;
        padding: 15px 20px;
        font-size: 1.1rem;
        font-weight: 400;
        text-align: left;
        border-bottom: 1px solid #f0f0f0;
        margin: 0;
    }

    .header-nav-left .nav-link:last-child {
        border-bottom: none;
    }

    /* Services dropdown in mobile */
    .nav-dropdown {
        width: 100%;
    }

    .nav-dropdown .nav-link {
        padding: 15px 20px;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-dropdown .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0;
        margin: 0;
        background: #f8f9fa;
        border-radius: 0;
        border: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-dropdown.open .dropdown-menu {
        max-height: 200px;
    }

    .nav-dropdown .dropdown-menu li {
        width: 100%;
    }

    .nav-dropdown .dropdown-menu li a {
        display: block;
        width: 100%;
        padding: 12px 40px;
        font-size: 0.95rem;
        color: #666;
        border-bottom: 1px solid #e0e0e0;
        text-align: left;
        margin: 0;
    }

    .nav-dropdown .dropdown-menu li:last-child a {
        border-bottom: none;
    }

    /* CTA button in mobile */
    .header-cta-btn {
        display: block;
        width: calc(100% - 40px);
        margin: 20px 20px 0 20px;
        padding: 15px;
        text-align: center;
        justify-content: center;
        border-radius: 8px;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 15px;
        height: 75px;
    }

    .header-nav-left,
    .header-nav-right {
        top: 75px;
        height: calc(100vh - 75px);
    }

    .header-menu {
        right: 15px;
        width: 24px;
        height: 24px;
    }
}

/* Hide mobile-only items on desktop */
.mobile-only {
    display: none;
}

@media (max-width: 1024px) {
    /* Show mobile-only items in mobile menu */
    .mobile-only {
        display: block;
    }
    
    /* Hide right navigation completely on mobile */
    .header-nav-right {
        display: none !important;
    }
}

/* Menu overlay for better UX */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Hero Section - Enhanced Responsiveness */
.hero {
    padding: 4rem 5%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
    min-height: 60vh;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(30, 58, 138, 0.05) 0%, transparent 70%);
    animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1) translate(0, 0); }
    50% { transform: scale(1.1) translate(-10%, 10%); }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    position: relative;
    z-index: 1;
    padding: 2rem 0;
}

.hero-illustration {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero-illustration img {
    max-width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.hero-illustration img:hover {
    transform: scale(1.05);
}

.hero-content {
    flex: 1;
    text-align: left;
    animation: fadeInRight 1s ease-out;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-content h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1.5rem;
    color: #1e3a8a;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.05);
    position: relative;
    display: inline-block;
}

.hero-content h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #1e3a8a 0%, #2563eb 100%);
    border-radius: 2px;
}

.hero-content p {
    font-size: clamp(1rem, 2.5vw, 1.15rem);
    color: #555;
    line-height: 1.8;
    margin-top: 2rem;
    max-width: 90%;
    font-weight: 400;
    letter-spacing: 0.3px;
}

/* Hero Responsive Breakpoints */
@media (max-width: 968px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 2.5rem;
    }
    
    .hero-content {
        order: 2;
    }
    
    .hero-illustration {
        order: 1;
    }
    
    .hero-content p {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 3rem 4%;
        min-height: 50vh;
    }
    
    .hero-container {
        gap: 2rem;
        padding: 1rem 0;
    }
    
    .hero-illustration img {
        max-height: 300px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 2rem 3%;
    }
    
    .hero-container {
        gap: 1.5rem;
    }
    
    .hero-content h1::after {
        width: 40px;
        height: 3px;
    }
    
    .hero-illustration img {
        max-height: 250px;
    }
}

/* Contact Info Cards - Enhanced Grid Responsiveness */
.contact-info {
    background: linear-gradient(135deg, #091022 0%, #113768 100%);
    padding: 5rem 5%;
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 30%),
        radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 5vw, 3rem);
    color: white;
    font-weight: 800;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: clamp(1px, 0.2vw, 2px);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: white;
    border-radius: 3px;
}

.contact-cards-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
    padding: 0 2rem;
}

.contact-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 30px;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: visible;
}

.contact-card::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6, #ec4899);
    border-radius: 30px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.contact-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.contact-card:hover::before {
    opacity: 1;
}

.contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.5s ease;
}

.contact-icon::before {
    content: '';
    position: absolute;
    inset: -5px;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.3;
    filter: blur(10px);
}

.contact-card:hover .contact-icon {
    transform: rotateY(360deg) scale(1.1);
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
}

.contact-icon i {
    font-size: 2.5rem;
    color: white;
}

.contact-card h3 {
    font-size: 1.8rem;
    color: #1e3a8a;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.contact-card ul {
    list-style: none;
}

.contact-card ul li {
    font-size: 1.1rem;
    color: #555;
    margin: 1rem 0;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.contact-card ul li::before {
    content: '•';
    color: #3b82f6;
    font-size: 1.5rem;
    margin-right: 0.5rem;
    font-weight: bold;
}

.contact-card:hover ul li {
    color: #1e3a8a;
}

.contact-card p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin: 0.5rem 0;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-card:hover p {
    color: #1e3a8a;
}

.contact-card br {
    display: block;
    margin: 0.3rem 0;
}

/* Decorative elements */
.contact-card::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 20px;
    background: rgba(30, 58, 138, 0.1);
    border-radius: 50%;
    filter: blur(15px);
    transition: all 0.5s ease;
}

.contact-card:hover::after {
    width: 80%;
    background: rgba(30, 58, 138, 0.2);
}

/* Form Section - Enhanced Responsiveness */
.form-section {
    max-width: 800px;
    margin: 4rem auto;
    padding: 3rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-section h2 {
    text-align: center;
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: #1e3a8a;
    margin-bottom: 2rem;
    font-weight: 700;
}

#contactForm {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

input, textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    color: #333;
    background: #f9fafb;
    transition: all 0.3s ease;
    outline: none;
}

input:focus, textarea:focus {
    border-color: #1e3a8a;
    background: white;
    box-shadow: 0 0 0 4px rgba(30, 58, 138, 0.1);
}

input::placeholder, textarea::placeholder {
    color: #9ca3af;
}

textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-btn {
    display: block;
    width: 100%;
    max-width: 200px;
    margin: 1rem auto 0;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(30, 58, 138, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Map Section - Enhanced Responsiveness */
.map-section {
    margin: 4rem 0;
    padding: 0;
    position: relative;
    width: 100%;
}

.map-section::before {
    content: '';
    position: absolute;
    top: -2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #e5e7eb 20%, #e5e7eb 80%, transparent 100%);
}

.map-wrapper {
    width: 100%;
    margin: 0;
    position: relative;
    overflow: hidden;
    border-radius: 0;
    box-shadow: none;
    background: white;
    padding: 2rem 5%;
}

.map-header {
    text-align: center;
    margin-bottom: 2rem;
}

.map-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: #1e3a8a;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.map-header p {
    font-size: clamp(1rem, 2vw, 1.1rem);
    color: #666;
}

.map-container {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 0;
    overflow: hidden;
    border: none;
    transition: all 0.3s ease;
}

.map-container:hover {
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.2);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Map Responsive Breakpoints */
@media (max-width: 768px) {
    .map-section {
        margin: 3rem 0;
    }
    
    .map-wrapper {
        padding: 2rem 4%;
    }
    
    .map-container {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .map-wrapper {
        padding: 1.5rem 3%;
    }
    
    .map-header {
        margin-bottom: 1.5rem;
    }
    
    .map-container {
        height: 300px;
    }
}

/* Additional Mobile Optimizations */
@media (max-width: 320px) {
    .hero {
        padding: 1.5rem 2%;
    }
    
    .contact-info {
        padding: 2.5rem 2%;
    }
    
    .form-section {
        margin: 1.5rem 2%;
        padding: 1.5rem;
    }
    
    .map-wrapper {
        padding: 1rem 2%;
    }
    
    .contact-card {
        padding: 1.5rem 1rem;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .contact-card:hover {
        transform: none;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    }
    
    .contact-card:hover::before {
        opacity: 0;
    }
    
    .contact-card:hover .contact-icon {
        transform: none;
    }
    
    .submit-btn:hover {
        transform: none;
        box-shadow: 0 5px 15px rgba(30, 58, 138, 0.2);
    }
    
    .map-container:hover {
        box-shadow: none;
    }
}

/* Focus Improvements for Accessibility */
input:focus, textarea:focus, .submit-btn:focus {
    outline: 3px solid rgba(30, 58, 138, 0.5);
    outline-offset: 2px;
}

.header-menu:focus {
    outline: 2px solid #3A68B8;
    outline-offset: 2px;
    border-radius: 4px;
}

/* Print Styles */
@media print {
    .main-header,
    .map-section,
    .submit-btn {
        display: none;
    }
    
    .hero,
    .contact-info,
    .form-section {
        break-inside: avoid;
        page-break-inside: avoid;
    }
}

/* Form Responsive Breakpoints - Enhanced */
@media (max-width: 768px) {
    /* Full-width containers on mobile */
    .hero {
        padding: 2.5rem 0;
    }
    
    .hero-container {
        padding: 1rem 4%;
    }
    
    .contact-info {
        padding: 3rem 0;
    }
    
    .contact-cards-wrapper {
        padding: 0 4%;
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-card {
        padding: 2rem 1.5rem;
        margin: 0;
    }
    
    .form-section {
        margin: 2.5rem 4%;
        padding: 2rem 1.5rem;
        border-radius: 15px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    input, textarea {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    }
    
    textarea {
        min-height: 120px;
    }
    
    .section-title {
        padding: 0 4%;
    }
}

@media (max-width: 480px) {
    /* Full-width containers on small mobile */
    .hero {
        padding: 2rem 0;
    }
    
    .hero-container {
        padding: 1rem 3%;
    }
    
    .contact-info {
        padding: 2.5rem 0;
    }
    
    .contact-cards-wrapper {
        padding: 0 3%;
        gap: 1.25rem;
    }
    
    .contact-card {
        padding: 1.75rem 1.25rem;
        border-radius: 20px;
    }
    
    .section-title {
        padding: 0 3%;
        margin-bottom: 2rem;
    }
    
    .form-section {
        margin: 2rem 3%;
        padding: 1.5rem 1.25rem;
        border-radius: 12px;
    }
    
    #contactForm {
        gap: 1.25rem;
    }
    
    input, textarea {
        padding: 0.75rem 1rem;
        border-radius: 10px;
    }
    
    .submit-btn {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        border-radius: 10px;
        max-width: 100%;
        width: 100%;
    }
}

/* Note: Mobile navigation is handled by navbar.css - removed duplicate styles */
   
.main-footer {
    background: linear-gradient(135deg, #113768 0%, #1a4a7d 100%);
    color: #FFFFFF;
    margin-top: 80px;
    padding-top: 60px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px 60px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
}

/* ========================================
   FOOTER COMPANY SECTION
   ======================================== */

.footer-company {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    animation: floatFooterIcon 3s ease-in-out infinite;
}

@keyframes floatFooterIcon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer-company-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0;
    letter-spacing: -0.5px;
}

.footer-company-sub {
    font-size: 0.7rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    letter-spacing: 0.5px;
}

.footer-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* ========================================
   FOOTER SOCIAL ICONS
   ======================================== */

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid transparent;
}

.social-icon:hover {
    background: #3A68B8;
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.2);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

/* ========================================
   FOOTER SECTIONS
   ======================================== */

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-section-title {
    font-size: 1rem;
    font-weight: 600;
    color: #FFFFFF;
    margin: 0 0 8px 0;
    letter-spacing: 0.5px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(58, 104, 184, 0.5);
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-list li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.footer-list li a::before {
    content: '→';
    margin-right: 8px;
    opacity: 0;
    transform: translateX(-4px);
    transition: all 0.3s ease;
}

.footer-list li a:hover {
    color: #FFFFFF;
    padding-left: 4px;
}

.footer-list li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* ========================================
   FOOTER CONTACT SECTION
   ======================================== */

.contact-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 16px;
}

.contact-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-item > div {
    flex: 1;
    min-width: 0;
}

.contact-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 4px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-value {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.4;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-value:hover {
    color: #FFFFFF;
}

/* ========================================
   FOOTER BOTTOM
   ======================================== */

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(58, 104, 184, 0.3);
    padding: 24px 40px;
}

.footer-bottom-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.copyright {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 0.85rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #FFFFFF;
}

.divider {
    color: rgba(255, 255, 255, 0.3);
}

/* ========================================
   RESPONSIVE - TABLET (768px - 1024px)
   ======================================== */

@media (min-width: 768px) and (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        padding: 0 30px 40px;
    }

    .footer-company {
        grid-column: 1 / -1;
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(58, 104, 184, 0.2);
    }

    .footer-company > * {
        flex: 1;
    }

    .footer-logo {
        margin-bottom: 0;
    }

    .footer-section-title {
        font-size: 0.95rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

/* ========================================
   RESPONSIVE - MOBILE LARGE (481px - 767px)
   ======================================== */

@media (min-width: 481px) and (max-width: 767px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
        padding: 0 20px 40px;
    }

    .footer-company {
        grid-column: 1 / -1;
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(58, 104, 184, 0.2);
        margin-bottom: 10px;
    }

    .footer-section-title {
        font-size: 0.9rem;
    }

    .footer-list li a {
        font-size: 0.85rem;
    }

    .contact-value {
        font-size: 0.85rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .copyright {
        font-size: 0.8rem;
    }
}

/* ========================================
   RESPONSIVE - MOBILE SMALL (max-width: 480px)
   ======================================== */

@media (max-width: 480px) {
    .main-footer {
        margin-top: 60px;
        padding-top: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 0 20px 40px;
    }

    .footer-company {
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(58, 104, 184, 0.2);
        margin-bottom: 10px;
    }

    .footer-logo {
        justify-content: center;
        text-align: center;
    }

    .footer-company-name {
        font-size: 1rem;
    }

    .footer-description {
        text-align: center;
        font-size: 0.85rem;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-section {
        gap: 12px;
    }

    .footer-section-title {
        font-size: 0.85rem;
        text-align: center;
        padding-bottom: 10px;
    }

    .footer-list {
        gap: 8px;
    }

    .footer-list li a {
        font-size: 0.8rem;
        justify-content: center;
    }

    .contact-item {
        margin-bottom: 12px;
    }

    .contact-icon {
        font-size: 1rem;
    }

    .contact-label {
        font-size: 0.7rem;
    }

    .contact-value {
        font-size: 0.8rem;
    }

    .footer-bottom {
        padding: 20px;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .copyright {
        font-size: 0.75rem;
    }

    .footer-bottom-links {
        font-size: 0.75rem;
        justify-content: center;
    }
}

/* ========================================
   DARK MODE SUPPORT
   ======================================== */

@media (prefers-color-scheme: dark) {
    .main-footer {
        background: linear-gradient(135deg, #0a1429 0%, #0f1f3a 100%);
    }

    .footer-bottom {
        background: rgba(255, 255, 255, 0.05);
        border-top-color: rgba(58, 104, 184, 0.2);
    }

    .footer-section-title {
        border-bottom-color: rgba(58, 104, 184, 0.4);
    }

    .social-icon:hover {
        background: #5a8fcc;
    }
}

/* ========================================
   PRINT STYLES
   ======================================== */

@media print {
    .main-footer {
        margin-top: 40px;
        padding-top: 30px;
        page-break-inside: avoid;
    }

    .footer-content {
        padding: 0 20px 30px;
    }

    .social-icon {
        display: none;
    }
}

/* ========================================
   ACCESSIBILITY
   ======================================== */

@media (prefers-reduced-motion: reduce) {
    .footer-logo-icon,
    .social-icon,
    .footer-list li a {
        animation: none !important;
        transition: none !important;
    }
}

.footer-list li a:focus-visible,
.social-icon:focus-visible {
    outline: 2px solid #3A68B8;
    outline-offset: 2px;
    border-radius: 4px;
}

/* ========================================
   ENHANCED RESPONSIVE MEDIA QUERIES
   ======================================== */

/* Extra Large Screens (1920px+) */
@media (min-width: 1920px) {
    .container,
    .header-container,
    .footer-content {
        max-width: 1600px;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }

    .hero-content p {
        font-size: 1.25rem;
    }

    .contact-card {
        padding: 3.5rem 3rem;
    }

    .contact-icon {
        width: 90px;
        height: 90px;
    }

    .contact-icon i {
        font-size: 2.8rem;
    }

    .form-section {
        max-width: 900px;
        padding: 3.5rem;
    }
}

/* Large Desktop (1440px - 1919px) */
@media (min-width: 1440px) and (max-width: 1919px) {
    .hero-container {
        gap: 5rem;
        padding: 2.5rem 0;
    }

    .contact-cards-wrapper {
        gap: 3.5rem;
    }

    .contact-card {
        padding: 3.2rem 2.8rem;
    }

    .map-container {
        height: 550px;
    }
}

/* Desktop (1200px - 1439px) */
@media (min-width: 1200px) and (max-width: 1439px) {
    .header-container {
        padding: 0 30px;
    }

    .hero {
        padding: 3.5rem 4%;
    }

    .contact-info {
        padding: 4.5rem 4%;
    }

    .contact-cards-wrapper {
        gap: 2.5rem;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .form-section {
        max-width: 750px;
        padding: 2.8rem;
    }
}

/* Medium Desktop (1024px - 1199px) */
@media (min-width: 1025px) and (max-width: 1199px) {
    .header-nav-left,
    .header-nav-right {
        gap: 24px;
    }

    .header-nav-left .nav-link,
    .header-nav-right .nav-link {
        font-size: 0.9rem;
    }

    .hero-container {
        gap: 3rem;
    }

    .hero-illustration img {
        max-height: 400px;
    }

    .contact-cards-wrapper {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }

    .contact-card {
        padding: 2.5rem 2rem;
    }

    .contact-icon {
        width: 70px;
        height: 70px;
    }

    .contact-icon i {
        font-size: 2.2rem;
    }

    .footer-content {
        gap: 40px;
        padding: 0 30px 50px;
    }
}

/* Tablet Landscape (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
    .header-container {
        padding: 0 25px;
        height: 80px;
    }

    .header-menu {
        display: flex;
        right: 25px;
    }

    .header-nav-left,
    .header-nav-right {
        display: none;
    }

    .hero {
        padding: 3rem 4%;
        min-height: 55vh;
    }

    .hero-container {
        flex-direction: column;
        gap: 2.5rem;
        padding: 1.5rem 0;
    }

    .hero-content {
        text-align: center;
        order: 2;
    }

    .hero-illustration {
        order: 1;
    }

    .hero-illustration img {
        max-height: 350px;
    }

    .hero-content h1::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .contact-info {
        padding: 4rem 4%;
    }

    .section-title {
        font-size: 2.5rem;
        margin-bottom: 2.5rem;
    }

    .contact-cards-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        max-width: 800px;
        margin: 0 auto;
    }

    .contact-card:last-child {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
    }

    .form-section {
        margin: 3rem 4%;
        padding: 2.5rem;
    }

    .form-row {
        gap: 1.2rem;
    }

    .map-container {
        height: 450px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
        padding: 0 25px 45px;
    }

    .footer-company {
        grid-column: 1 / -1;
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(58, 104, 184, 0.2);
    }
}

/* Tablet Portrait (600px - 767px) */
@media (min-width: 600px) and (max-width: 767px) {
    .header-container {
        padding: 0 20px;
        height: 75px;
    }

    .header-logo .logo-icon {
        width: 42px;
        height: 42px;
    }

    .header-logo .company-main {
        font-size: 0.95rem;
    }

    .hero {
        padding: 2.5rem 3%;
    }

    .hero-container {
        gap: 2rem;
    }

    .hero-illustration img {
        max-height: 320px;
    }

    .contact-info {
        padding: 3.5rem 3%;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .contact-cards-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 500px;
        margin: 0 auto;
    }

    .contact-card {
        padding: 2.5rem 2rem;
    }

    .form-section {
        margin: 2.5rem 3%;
        padding: 2.2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .map-wrapper {
        padding: 1.8rem 3%;
    }

    .map-container {
        height: 380px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        padding: 0 20px 40px;
    }

    .footer-company {
        grid-column: 1 / -1;
    }
}

/* Mobile Large (481px - 599px) */
@media (min-width: 481px) and (max-width: 599px) {
    .header-container {
        padding: 0 18px;
        height: 70px;
    }

    .header-menu {
        right: 18px;
    }

    .hero {
        padding: 2rem 3%;
        min-height: auto;
    }

    .hero-container {
        gap: 1.8rem;
        padding: 1rem 0;
    }

    .hero-illustration img {
        max-height: 280px;
    }

    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 1.2rem;
    }

    .hero-content p {
        font-size: 1rem;
        margin-top: 1.5rem;
    }

    .contact-info {
        padding: 3rem 3%;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .section-title::after {
        width: 80px;
        height: 4px;
        bottom: -12px;
    }

    .contact-cards-wrapper {
        grid-template-columns: 1fr;
        gap: 1.8rem;
    }

    .contact-card {
        padding: 2rem 1.8rem;
        border-radius: 25px;
    }

    .contact-icon {
        width: 65px;
        height: 65px;
    }

    .contact-icon i {
        font-size: 2rem;
    }

    .contact-card h3 {
        font-size: 1.5rem;
        margin-bottom: 1.2rem;
    }

    .contact-card ul li,
    .contact-card p {
        font-size: 1rem;
    }

    .form-section {
        margin: 2rem 3%;
        padding: 2rem;
    }

    .form-section h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    input, textarea {
        padding: 0.85rem 1.2rem;
        font-size: 0.95rem;
    }

    textarea {
        min-height: 130px;
    }

    .submit-btn {
        max-width: 180px;
        padding: 0.9rem 1.8rem;
        font-size: 1rem;
    }

    .map-wrapper {
        padding: 1.5rem 3%;
    }

    .map-header h2 {
        font-size: 1.8rem;
    }

    .map-header p {
        font-size: 1rem;
    }

    .map-container {
        height: 350px;
    }
}

/* Mobile Medium (376px - 480px) */
@media (min-width: 376px) and (max-width: 480px) {
    .header-container {
        padding: 0 15px;
        height: 70px;
    }

    .header-logo .logo-icon {
        width: 40px;
        height: 40px;
    }

    .header-logo .h-letter {
        font-size: 1.6rem;
    }

    .header-logo .company-main {
        font-size: 0.9rem;
    }

    .header-logo .company-sub {
        font-size: 0.65rem;
    }

    .header-menu {
        right: 15px;
        width: 26px;
        height: 26px;
    }

    .hero {
        padding: 2rem 3%;
    }

    .hero-container {
        gap: 1.5rem;
    }

    .hero-illustration img {
        max-height: 250px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .contact-info {
        padding: 2.5rem 3%;
    }

    .section-title {
        font-size: 1.6rem;
        margin-bottom: 1.8rem;
    }

    .contact-cards-wrapper {
        gap: 1.5rem;
    }

    .contact-card {
        padding: 1.8rem 1.5rem;
        border-radius: 22px;
    }

    .contact-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1.2rem;
    }

    .contact-icon i {
        font-size: 1.8rem;
    }

    .contact-card h3 {
        font-size: 1.4rem;
    }

    .contact-card ul li,
    .contact-card p {
        font-size: 0.95rem;
    }

    .form-section {
        margin: 2rem 3%;
        padding: 1.8rem;
        border-radius: 18px;
    }

    .form-section h2 {
        font-size: 1.4rem;
    }

    #contactForm {
        gap: 1.2rem;
    }

    input, textarea {
        padding: 0.8rem 1.1rem;
        border-radius: 10px;
    }

    .submit-btn {
        max-width: 160px;
        padding: 0.85rem 1.6rem;
        font-size: 0.95rem;
    }

    .map-wrapper {
        padding: 1.5rem 3%;
    }

    .map-header {
        margin-bottom: 1.2rem;
    }

    .map-container {
        height: 320px;
    }

    .footer-content {
        padding: 0 15px 35px;
    }

    .footer-bottom {
        padding: 20px 15px;
    }
}

/* Mobile Small (321px - 375px) */
@media (min-width: 321px) and (max-width: 375px) {
    .header-container {
        padding: 0 12px;
        height: 65px;
    }

    .header-logo .logo-icon {
        width: 38px;
        height: 38px;
    }

    .header-logo .company-main {
        font-size: 0.85rem;
    }

    .hero {
        padding: 1.8rem 2.5%;
    }

    .hero-illustration img {
        max-height: 230px;
    }

    .hero-content h1 {
        font-size: 1.6rem;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

    .contact-info {
        padding: 2.2rem 2.5%;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .contact-card {
        padding: 1.6rem 1.3rem;
        border-radius: 20px;
    }

    .contact-icon {
        width: 55px;
        height: 55px;
    }

    .contact-icon i {
        font-size: 1.6rem;
    }

    .contact-card h3 {
        font-size: 1.3rem;
    }

    .contact-card ul li,
    .contact-card p {
        font-size: 0.9rem;
    }

    .form-section {
        margin: 1.8rem 2.5%;
        padding: 1.6rem;
    }

    .form-section h2 {
        font-size: 1.3rem;
    }

    input, textarea {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    .submit-btn {
        max-width: 140px;
        padding: 0.75rem 1.4rem;
        font-size: 0.85rem;
        border-radius: 8px;
    }

    .map-wrapper {
        padding: 1.5rem 3%;
    }

    .map-header {
        margin-bottom: 1.2rem;
    }

    .map-container {
        height: 300px;
    }

    .footer-content {
        gap: 25px;
        padding: 0 10px 30px;
    }

    .footer-logo-icon {
        width: 38px;
        height: 38px;
    }

    .footer-company-name {
        font-size: 0.95rem;
    }

    .footer-description {
        font-size: 0.8rem;
    }

    .footer-section-title {
        font-size: 0.8rem;
    }

    .footer-bottom {
        padding: 18px 10px;
    }

    .copyright {
        font-size: 0.7rem;
    }

    .footer-bottom-links {
        font-size: 0.7rem;
    }
}

/* Mobile Extra Small (max-width: 320px) */
@media (max-width: 320px) {
    .header-container {
        padding: 0 10px;
        height: 60px;
    }

    .header-logo .logo-icon {
        width: 36px;
        height: 36px;
    }

    .header-logo .h-letter {
        font-size: 1.4rem;
    }

    .header-logo .company-main {
        font-size: 0.8rem;
    }

    .header-logo .company-sub {
        font-size: 0.6rem;
    }

    .header-menu {
        right: 10px;
        width: 24px;
        height: 24px;
    }

    .hero {
        padding: 1.5rem 2%;
    }

    .hero-container {
        gap: 1.2rem;
    }

    .hero-illustration img {
        max-height: 200px;
    }

    .hero-content h1 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }

    .hero-content h1::after {
        width: 35px;
        height: 3px;
    }

    .hero-content p {
        font-size: 0.85rem;
        margin-top: 1.2rem;
    }

    .contact-info {
        padding: 2rem 2%;
    }

    .section-title {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }

    .section-title::after {
        width: 60px;
        height: 3px;
    }

    .contact-cards-wrapper {
        gap: 1.2rem;
    }

    .contact-card {
        padding: 1.4rem 1.2rem;
        border-radius: 18px;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }

    .contact-icon i {
        font-size: 1.5rem;
    }

    .contact-card h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .contact-card ul li,
    .contact-card p {
        font-size: 0.85rem;
        margin: 0.8rem 0;
    }

    .form-section {
        margin: 1.5rem 2%;
        padding: 1.4rem;
        border-radius: 15px;
    }

    .form-section h2 {
        font-size: 1.2rem;
        margin-bottom: 1.2rem;
    }

    #contactForm {
        gap: 1rem;
    }

    input, textarea {
        padding: 0.7rem 0.9rem;
        font-size: 0.85rem;
        border-radius: 8px;
    }

    .submit-btn {
        max-width: 140px;
        padding: 0.75rem 1.4rem;
        font-size: 0.85rem;
        border-radius: 8px;
    }

    .map-wrapper {
        padding: 1.2rem 2%;
    }

    .map-header h2 {
        font-size: 1.3rem;
    }

    .map-header p {
        font-size: 0.85rem;
    }

    .map-container {
        height: 280px;
    }

    .footer-content {
        gap: 25px;
        padding: 0 10px 30px;
    }

    .footer-logo-icon {
        width: 38px;
        height: 38px;
    }

    .footer-company-name {
        font-size: 0.95rem;
    }

    .footer-description {
        font-size: 0.8rem;
    }

    .footer-section-title {
        font-size: 0.8rem;
    }

    .footer-bottom {
        padding: 18px 10px;
    }

    .copyright {
        font-size: 0.7rem;
    }

    .footer-bottom-links {
        font-size: 0.7rem;
    }
}

/* Landscape Orientation (Mobile) */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 2rem 3%;
    }

    .hero-container {
        flex-direction: row;
        gap: 2rem;
    }

    .hero-illustration img {
        max-height: 220px;
    }

    .hero-content {
        text-align: left;
    }

    .hero-content h1::after {
        left: 0;
        transform: none;
    }

    .contact-info {
        padding: 3rem 4%;
    }

    .contact-cards-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-illustration img,
    .contact-icon,
    .footer-logo-icon {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Dark Mode Enhanced */
@media (prefers-color-scheme: dark) {
    .hero {
        background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    }

    .hero-content h1 {
        color: #60a5fa;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    }

    .hero-content p {
        color: #d1d5db;
    }

    .form-section {
        background: #1f2937;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    }

    .form-section h2 {
        color: #60a5fa;
    }

    input, textarea {
        background: #111827;
        border-color: #374151;
        color: #f9fafb;
    }

    input:focus, textarea:focus {
        border-color: #60a5fa;
        background: #1f2937;
    }

    input::placeholder, textarea::placeholder {
        color: #6b7280;
    }
}

/* Print Optimization */
@media print {
    .header-menu,
    .menu-toggle,
    .mobile-menu,
    .hero::before,
    .contact-info::before,
    .submit-btn,
    .map-section,
    .footer-social {
        display: none !important;
    }

    .hero,
    .contact-info,
    .form-section {
        break-inside: avoid;
        page-break-inside: avoid;
    }

    .contact-card {
        box-shadow: none;
        border: 1px solid #e5e7eb;
    }

    @page {
        margin: 2cm;
    }
}

/* 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-behavior: auto !important;
    }

    .hero::before {
        animation: none;
    }

    .hero-illustration {
        animation: none;
    }

    .contact-card:hover {
        transform: none;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .contact-card {
        border: 2px solid currentColor;
    }

    .submit-btn {
        border: 2px solid currentColor;
    }

    input:focus,
    textarea:focus {
        outline: 3px solid currentColor;
        outline-offset: 2px;
    }
}