/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #2563EB;
    --primary-dark: #1D4ED8;
    --primary-light: #3B82F6;
    --secondary: #10B981;
    --accent: #F59E0B;
    --text-primary: #0F172A;
    --text-secondary: #475569;
    --text-light: #94A3B8;
    --bg: #FFFFFF;
    --bg-light: #F8FAFC;
    --bg-gradient: linear-gradient(135deg, #667EEA 0%, #764BA2 100%);
    --border: #E2E8F0;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.98) 100%);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: all 0.3s ease;
}


.navbar.scrolled {
    box-shadow: var(--shadow);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 32px;
}

/* Mobile navbar height - defined early for consistency */

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
}

.logo-img {
    height: 70px;
    width: auto;
    background-color: #0F172A;
    padding: 10px;
    border-radius: 10px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
}

.nav-phone-mobile {
    display: none;
}

.nav-menu a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-phone a {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(37, 99, 235, 0.3);
}

.nav-phone a:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
}

.nav-phone svg {
    flex-shrink: 0;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    height: calc(100vh - 72px);
    min-height: 600px;
    display: flex;
    align-items: center;
    padding: 80px 0;
    overflow: hidden;
    margin-top: 72px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    animation: kenBurns 20s ease-in-out infinite;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(37, 99, 235, 0.75) 100%);
    z-index: 2;
}

/* Rain/wet effect on glass before wiping */
.hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.03) 2px,
            rgba(255, 255, 255, 0.03) 4px
        ),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.03) 2px,
            rgba(255, 255, 255, 0.03) 4px
        );
    opacity: 0.4;
    animation: rainEffect 5s infinite ease-in-out;
    pointer-events: none;
}

@keyframes rainEffect {
    0%, 100% {
        opacity: 0.5;
        transform: translateY(0);
    }
    50% {
        opacity: 0.3;
        transform: translateY(-10px);
    }
}

@keyframes kenBurns {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes patternMove {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(40px);
    }
}

/* Windshield wipers animation */
.windshield-wipers {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 3;
    overflow: visible;
}

.wiper {
    position: absolute;
    bottom: 0;
    transform-origin: bottom center;
    will-change: transform;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
}

/* Wiper pivot - rotation point at bottom of windshield */
.wiper-pivot {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: radial-gradient(circle, 
        rgba(60, 60, 60, 0.95) 0%,
        rgba(40, 40, 40, 1) 100%);
    border-radius: 50%;
    box-shadow: 
        0 2px 6px rgba(0, 0, 0, 0.8),
        inset 0 1px 2px rgba(255, 255, 255, 0.2);
    z-index: 10;
}

/* Wiper arm - the metal arm that holds the blade */
.wiper-arm {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translate3d(-50%, 0, 0);
    width: 6px;
    height: 650px;
    background: linear-gradient(90deg,
        rgba(40, 40, 40, 0.98) 0%,
        rgba(50, 50, 50, 1) 50%,
        rgba(40, 40, 40, 0.98) 100%);
    border-radius: 3px;
    box-shadow: 
        2px 0 4px rgba(0, 0, 0, 0.6),
        -1px 0 2px rgba(255, 255, 255, 0.1),
        inset 0 1px 2px rgba(0, 0, 0, 0.3);
    transform-origin: bottom center;
    backface-visibility: hidden;
    /* Don't animate the arm, only the parent .wiper */
}

/* Wiper blade - hidden, only arm visible */
.wiper-blade {
    display: none;
}

/* Left wiper positioning */
.wiper-left {
    left: 15%;
    bottom: 8px;
    animation: wiperSweepLeft 3.2s infinite linear;
    transform: translate3d(0, 0, 0);
}

/* Right wiper positioning */
.wiper-right {
    right: 15%;
    bottom: 8px;
    animation: wiperSweepRight 3.2s infinite linear 0.25s;
    transform: translate3d(0, 0, 0);
}

/* Left wiper animation - smooth sweep from left to right */
@keyframes wiperSweepLeft {
    0% {
        transform: translate3d(0, 0, 0) rotate(-72deg);
    }
    2% {
        transform: translate3d(0, 0, 0) rotate(-68deg);
    }
    5% {
        transform: translate3d(0, 0, 0) rotate(-60deg);
    }
    8% {
        transform: translate3d(0, 0, 0) rotate(-50deg);
    }
    12% {
        transform: translate3d(0, 0, 0) rotate(-40deg);
    }
    18% {
        transform: translate3d(0, 0, 0) rotate(-25deg);
    }
    25% {
        transform: translate3d(0, 0, 0) rotate(-8deg);
    }
    32% {
        transform: translate3d(0, 0, 0) rotate(8deg);
    }
    40% {
        transform: translate3d(0, 0, 0) rotate(25deg);
    }
    48% {
        transform: translate3d(0, 0, 0) rotate(45deg);
    }
    55% {
        transform: translate3d(0, 0, 0) rotate(62deg);
    }
    60% {
        transform: translate3d(0, 0, 0) rotate(70deg);
    }
    63% {
        transform: translate3d(0, 0, 0) rotate(72deg);
    }
    65% {
        transform: translate3d(0, 0, 0) rotate(71deg);
    }
    68% {
        transform: translate3d(0, 0, 0) rotate(68deg);
    }
    72% {
        transform: translate3d(0, 0, 0) rotate(62deg);
    }
    76% {
        transform: translate3d(0, 0, 0) rotate(52deg);
    }
    80% {
        transform: translate3d(0, 0, 0) rotate(38deg);
    }
    84% {
        transform: translate3d(0, 0, 0) rotate(22deg);
    }
    88% {
        transform: translate3d(0, 0, 0) rotate(4deg);
    }
    92% {
        transform: translate3d(0, 0, 0) rotate(-15deg);
    }
    96% {
        transform: translate3d(0, 0, 0) rotate(-45deg);
    }
    100% {
        transform: translate3d(0, 0, 0) rotate(-72deg);
    }
}

/* Right wiper animation - smooth sweep from right to left */
@keyframes wiperSweepRight {
    0% {
        transform: translate3d(0, 0, 0) rotate(72deg);
    }
    2% {
        transform: translate3d(0, 0, 0) rotate(68deg);
    }
    5% {
        transform: translate3d(0, 0, 0) rotate(60deg);
    }
    8% {
        transform: translate3d(0, 0, 0) rotate(50deg);
    }
    12% {
        transform: translate3d(0, 0, 0) rotate(40deg);
    }
    18% {
        transform: translate3d(0, 0, 0) rotate(25deg);
    }
    25% {
        transform: translate3d(0, 0, 0) rotate(8deg);
    }
    32% {
        transform: translate3d(0, 0, 0) rotate(-8deg);
    }
    40% {
        transform: translate3d(0, 0, 0) rotate(-25deg);
    }
    48% {
        transform: translate3d(0, 0, 0) rotate(-45deg);
    }
    55% {
        transform: translate3d(0, 0, 0) rotate(-62deg);
    }
    60% {
        transform: translate3d(0, 0, 0) rotate(-70deg);
    }
    63% {
        transform: translate3d(0, 0, 0) rotate(-72deg);
    }
    65% {
        transform: translate3d(0, 0, 0) rotate(-71deg);
    }
    68% {
        transform: translate3d(0, 0, 0) rotate(-68deg);
    }
    72% {
        transform: translate3d(0, 0, 0) rotate(-62deg);
    }
    76% {
        transform: translate3d(0, 0, 0) rotate(-52deg);
    }
    80% {
        transform: translate3d(0, 0, 0) rotate(-38deg);
    }
    84% {
        transform: translate3d(0, 0, 0) rotate(-22deg);
    }
    88% {
        transform: translate3d(0, 0, 0) rotate(-4deg);
    }
    92% {
        transform: translate3d(0, 0, 0) rotate(15deg);
    }
    96% {
        transform: translate3d(0, 0, 0) rotate(45deg);
    }
    100% {
        transform: translate3d(0, 0, 0) rotate(72deg);
    }
}

/* Glass cleaning effect - reveals clearer content behind */
.windshield-wipers::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.05) 50%,
    rgba(0, 0, 0, 0.1) 100%);
    animation: glassClean 5s infinite ease-in-out;
    pointer-events: none;
    opacity: 0.6;
}

@keyframes glassClean {
    0%, 100% {
        opacity: 0.6;
    }
    45% {
        opacity: 0.4;
    }
    55% {
        opacity: 0.4;
    }
}

.hero-content {
    position: relative;
    z-index: 4;
    max-width: 800px;
    color: white;
    text-align: center;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.95);
    animation: fadeInUp 1s ease;
}

.hero-description {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    animation: fadeInUp 1.2s ease;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1.4s ease;
}

.hero-note {
    animation: fadeInUp 1.6s ease;
}

.hero-note p {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
}

.hero-note a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.hero-note a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary {
    background: white;
    color: var(--primary);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* About Section */
.about {
    padding: 120px 0;
    background: white;
    position: relative;
    z-index: 1;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text {
    max-width: 600px;
}

.about-description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.about-description:last-of-type {
    margin-bottom: 40px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--bg-light);
    border-radius: var(--radius);
    transition: all 0.3s;
}

.about-feature:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.about-feature svg {
    flex-shrink: 0;
}

.about-feature span {
    font-weight: 500;
    font-size: 16px;
}

.about-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Services Section */
.services {
    padding: 120px 0;
    background: var(--bg-light);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
}

.section-badge {
    display: inline-block;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.section-description {
    font-size: 18px;
    color: var(--text-secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.service-card {
    background: white;
    padding: 0;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px -10px rgba(37, 99, 235, 0.2);
    border-color: var(--primary);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-number {
    font-size: 72px;
    font-weight: 800;
    color: rgba(37, 99, 235, 0.08);
    line-height: 1;
    margin-bottom: 16px;
    transition: all 0.3s;
    padding: 32px 32px 0;
}

.service-card:hover .service-number {
    color: var(--primary);
    transform: scale(1.05);
}

.service-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
    line-height: 1.3;
    padding: 0 32px;
}

.service-description {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 32px;
    flex-grow: 1;
    padding: 0 32px;
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    align-self: flex-start;
    transition: all 0.3s;
    margin: 0 32px 32px;
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
    transform: translateX(4px);
}

/* Map Section */
.map-section {
    padding: 120px 0;
    background: white;
}

.map-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 450px;
}

.map-wrapper iframe {
    display: block;
    width: 100%;
    height: 100%;
}

.map-overlay {
    position: absolute;
    bottom: 30px;
    right: 30px;
    pointer-events: none;
    z-index: 2;
}

.map-info {
    pointer-events: auto;
    background: white;
    padding: 24px 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    max-width: 300px;
    backdrop-filter: blur(10px);
}

.map-info h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.map-info p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.6;
}

.map-info .btn {
    font-size: 14px;
    padding: 10px 20px;
    white-space: nowrap;
}

.map-info .btn svg {
    width: 16px;
    height: 16px;
}

/* Contact Form Section */
.contact-form-section {
    padding: 120px 0;
    background: var(--bg-gradient);
}

.form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.form-content {
    background: white;
    padding: 48px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.form-image {
    position: sticky;
    top: 100px;
}

.form-image-content {
    height: 100%;
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    padding: 48px;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-info-item {
    display: flex;
    align-items: start;
    gap: 16px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info-item:last-child {
    border-bottom: none;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    display: block;
}

.contact-label {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 4px;
}

.contact-value {
    font-size: 18px;
    font-weight: 600;
    color: white;
    text-decoration: none;
    transition: opacity 0.2s;
}

.contact-value:hover {
    opacity: 0.8;
}

/* Form Styles */
.contact-form {
    margin-top: 32px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Footer */
.footer {
    background: #0F172A;
    color: white;
    padding: 80px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 64px;
}

.footer-brand .logo {
    margin-bottom: 16px;
    color: white;
}

.footer-description {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

.footer-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: white;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact-item svg {
    flex-shrink: 0;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-contact-item a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 48px;
    }

    .section-title {
        font-size: 40px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-image {
        order: -1;
    }

    .form-wrapper {
        grid-template-columns: 1fr;
    }

    .form-image {
        position: relative;
        top: 0;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .hero-stats {
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .nav-wrapper {
        gap: 16px;
        height: 64px;
    }

    .navbar {
        height: 64px;
        background: white;
        backdrop-filter: none;
    }

    .navbar.scrolled {
        background: white;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .logo-img {
        height: 50px;
        padding: 8px;
    }

    .nav-menu {
        display: none;
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        bottom: 0;
        background: white;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        padding: 24px 20px;
        gap: 0;
        z-index: 1000;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
        opacity: 0;
        transform: translateX(-100%);
        transition: all 0.3s ease-in-out;
        pointer-events: none;
    }

    .nav-menu.active {
        display: flex !important;
        opacity: 1;
        transform: translateX(0);
        pointer-events: auto;
        z-index: 1000;
    }

    .nav-menu.active li {
        pointer-events: auto;
        position: relative;
        z-index: 1001;
        background: white;
    }

    /* Backdrop overlay when menu is open - placed behind menu */
    .nav-menu::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: white;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
        z-index: 998;
    }

    .nav-menu.active::before {
        opacity: 1;
        pointer-events: auto;
    }
    
    /* Ensure menu background itself is above backdrop and creates stacking context */
    .nav-menu.active {
        background: white;
        isolation: isolate;
    }

    /* Ensure menu content is above backdrop */
    .nav-menu.active a {
        position: relative;
        z-index: 1002;
        pointer-events: auto !important;
        cursor: pointer;
        -webkit-tap-highlight-color: rgba(37, 99, 235, 0.2);
    }

    .nav-phone {
        display: none;
    }

    .nav-phone-mobile {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex !important;
        z-index: 1001;
        position: relative;
        background: transparent;
        cursor: pointer;
        padding: 10px 8px;
        margin: 0;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
        min-width: 44px;
        min-height: 44px;
        align-items: center;
        justify-content: center;
    }

    .mobile-menu-toggle span {
        background: #0F172A;
        width: 28px;
        height: 3px;
        display: block;
        border-radius: 3px;
        position: relative;
        z-index: 1;
    }

    .nav-menu.active li {
        border-bottom: 1px solid var(--border);
        margin: 0;
        opacity: 0;
        animation: slideInLeft 0.3s ease forwards;
    }

    .nav-menu.active li:nth-child(1) {
        animation-delay: 0.1s;
    }

    .nav-menu.active li:nth-child(2) {
        animation-delay: 0.15s;
    }

    .nav-menu.active li:nth-child(3) {
        animation-delay: 0.2s;
    }

    .nav-menu.active li:last-child {
        border-bottom: none;
    }

    .nav-menu.active a {
        display: block;
        padding: 18px 0;
        font-size: 18px;
        font-weight: 500;
        color: var(--text-primary);
        transition: all 0.2s ease;
        pointer-events: auto !important;
        cursor: pointer;
        -webkit-tap-highlight-color: rgba(37, 99, 235, 0.2);
        position: relative;
        z-index: 1002;
        touch-action: manipulation;
    }

    .nav-menu.active a:hover,
    .nav-menu.active a:active {
        color: var(--primary);
        padding-left: 12px;
    }

    .nav-menu.active a::after {
        display: none;
    }

    .nav-menu.active .nav-phone-mobile {
        display: block;
        margin-top: 24px;
        padding-top: 24px;
        border-top: 2px solid var(--border);
        opacity: 0;
        animation: slideInLeft 0.3s ease 0.25s forwards;
    }

    .nav-menu.active .nav-phone-mobile a {
        display: flex;
        align-items: center;
        gap: 12px;
        background: var(--primary);
        color: white;
        text-decoration: none;
        padding: 18px 24px;
        border-radius: 50px;
        font-weight: 600;
        font-size: 17px;
        justify-content: center;
        transition: all 0.3s ease;
        box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
        position: relative;
        z-index: 1002;
        pointer-events: auto !important;
        cursor: pointer;
        touch-action: manipulation;
    }

    .nav-menu.active .nav-phone-mobile a:active {
        transform: scale(0.98);
        box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
    }

    .nav-menu.active .nav-phone-mobile a svg {
        flex-shrink: 0;
        width: 20px;
        height: 20px;
    }

    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }

    .hero {
        height: auto;
        min-height: 600px;
        padding: 100px 0 60px;
        margin-top: 64px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-description {
        font-size: 18px;
    }

    .wiper-arm {
        height: 500px;
        width: 5px;
        transform: translate3d(-50%, 0, 0);
    }
    
    .wiper-pivot {
        width: 10px;
        height: 10px;
    }
    
    .wiper-left {
        left: 10%;
        bottom: 6px;
    }
    
    .wiper-right {
        right: 10%;
        bottom: 6px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn {
        justify-content: center;
    }

    .section-title {
        font-size: 32px;
    }

    .services,
    .about {
        padding: 80px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .service-image {
        height: 200px;
    }

    .service-number {
        font-size: 56px;
        padding: 24px 24px 0;
    }

    .service-title {
        font-size: 22px;
        padding: 0 24px;
    }

    .service-description {
        padding: 0 24px;
    }

    .btn-outline {
        margin: 0 24px 24px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .about-description {
        font-size: 16px;
    }

    .contact-form-section,
    .map-section {
        padding: 80px 0;
    }

    .map-wrapper {
        height: 350px;
    }

    .map-overlay {
        bottom: 20px;
        right: 20px;
        left: 20px;
    }

    .map-info {
        padding: 20px 24px;
        max-width: 100%;
    }

    .form-content {
        padding: 32px 24px;
    }

    .contact-info-card {
        padding: 32px 24px;
    }

    .footer {
        padding: 60px 0 24px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero {
        height: auto;
        min-height: 500px;
        padding: 80px 0 40px;
        margin-top: 64px;
    }

    .wiper-arm {
        height: 400px;
        width: 4px;
        transform: translate3d(-50%, 0, 0);
    }
    
    .wiper-pivot {
        width: 8px;
        height: 8px;
    }
    
    .wiper-left {
        left: 8%;
        bottom: 5px;
    }
    
    .wiper-right {
        right: 8%;
        bottom: 5px;
    }

    .nav-wrapper {
        height: 64px;
    }

    .nav-menu.active {
        top: 64px;
        height: calc(100vh - 64px);
        padding: 20px 16px;
    }

    .nav-menu.active a {
        padding: 16px 0;
        font-size: 17px;
    }

    .nav-menu.active .nav-phone-mobile a {
        padding: 16px 20px;
        font-size: 16px;
    }

    .service-image {
        height: 180px;
    }

    .service-number {
        font-size: 48px;
        padding: 16px 16px 0;
    }

    .service-title {
        font-size: 20px;
        padding: 0 16px;
    }

    .service-description {
        padding: 0 16px;
    }

    .btn-outline {
        margin: 0 16px 16px;
    }

    .map-wrapper {
        height: 300px;
    }

    .map-overlay {
        bottom: 10px;
        right: 10px;
        left: 10px;
    }

    .map-info {
        padding: 16px 20px;
    }

    .map-info h3 {
        font-size: 18px;
    }

    .map-info p {
        font-size: 13px;
    }

    .map-info .btn {
        font-size: 13px;
        padding: 8px 16px;
    }

    .form-content {
        padding: 24px 16px;
    }

    .contact-info-card {
        padding: 24px 16px;
    }
}

/* Smooth scroll animations */
@media (prefers-reduced-motion: no-preference) {
    .service-card {
        animation: fadeInUp 0.6s ease backwards;
    }

    .service-card:nth-child(1) {
        animation-delay: 0.1s;
    }

    .service-card:nth-child(2) {
        animation-delay: 0.2s;
    }

    .service-card:nth-child(3) {
        animation-delay: 0.3s;
    }

    .service-card:nth-child(4) {
        animation-delay: 0.4s;
    }
}



