/* ==========================================
   Modern Waterjet-Tech Website - 2026
   High-End Industrial Design
   ========================================== */

/* ==========================================
   CSS RESET & BASE STYLES
   ========================================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette - Modern Industrial */
    --primary-graphite: #1a1d23;
    --secondary-graphite: #23272e;
    --steel-dark: #2d3238;
    --steel-medium: #3d4249;
    --steel-light: #525861;
    --steel-lighter: #6b7280;

    /* Blue Accents */
    --primary-blue: #1E88E5;
    --dark-blue: #0D47A1;
    --light-blue: #42A5F5;
    --blue-glow: rgba(30, 136, 229, 0.3);

    /* Neutrals */
    --white: #ffffff;
    --off-white: #f8f9fa;
    --light-gray: #e5e7eb;
    --medium-gray: #9ca3af;
    --dark-text: #111827;

    /* Status Colors */
    --success: #10b981;
    --error: #ef4444;
    --warning: #f59e0b;

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Poppins', var(--font-primary);

    /* Spacing */
    --section-padding: 100px 0;
    --container-max-width: 1280px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 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);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    color: var(--dark-text);
    line-height: 1.7;
    background-color: var(--off-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 24px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-medium);
}

ul {
    list-style: none;
}

/* ==========================================
   NAVIGATION BAR
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(26, 29, 35, 0.95);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    z-index: 1000;
    padding: 18px 0;
    transition: all var(--transition-medium);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(26, 29, 35, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--white);
    font-size: 22px;
    font-weight: 700;
    font-family: var(--font-heading);
    letter-spacing: -0.5px;
    transition: var(--transition-medium);
}

.logo:hover {
    transform: translateY(-1px);
}

.logo svg {
    width: 42px;
    height: 42px;
    filter: drop-shadow(0 0 8px var(--blue-glow));
}

.nav-menu {
    display: flex;
    gap: 4px;
    align-items: center;
}

.nav-link {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    font-weight: 500;
    padding: 10px 18px;
    border-radius: var(--radius-md);
    position: relative;
    transition: all var(--transition-medium);
    letter-spacing: 0.2px;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 18px;
    right: 18px;
    height: 2px;
    background: var(--primary-blue);
    transform: scaleX(0);
    transition: transform var(--transition-medium);
}

.nav-link:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.05);
}

.nav-link:hover::before {
    transform: scaleX(1);
}

.nav-link.active {
    color: var(--primary-blue);
}

.nav-link-cta {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: var(--white);
    padding: 10px 24px;
    margin-left: 8px;
    box-shadow: 0 4px 12px var(--blue-glow);
}

.nav-link-cta::before {
    display: none;
}

.nav-link-cta:hover {
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--primary-blue) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px var(--blue-glow);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: var(--transition-medium);
}

.menu-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.menu-toggle span {
    width: 26px;
    height: 2.5px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition-medium);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: var(--primary-graphite);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(135deg, rgba(26, 29, 35, 0.95) 0%, rgba(13, 71, 161, 0.4) 100%),
        url('../assets/images/hero-new.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    transform: scale(1.05);
    transition: transform 20s ease;
}

.hero:hover .hero-bg {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at top, rgba(30, 136, 229, 0.15), transparent),
        linear-gradient(180deg, transparent 0%, rgba(26, 29, 35, 0.8) 100%);
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 10;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-badge {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 32px;
    animation: fadeInDown 0.8s ease;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(42px, 7vw, 72px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -2px;
    animation: fadeInUp 0.8s ease 0.2s both;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.gradient-text {
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--primary-blue) 50%, var(--dark-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    position: relative;
}

.gradient-text::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-blue), transparent);
    border-radius: 2px;
}

.hero-subtitle {
    font-size: clamp(16px, 2.5vw, 20px);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease 0.4s both;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s both;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% { opacity: 1; top: 8px; }
    100% { opacity: 0; top: 24px; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all var(--transition-medium);
    cursor: pointer;
    border: none;
    text-align: center;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn span, .btn svg {
    position: relative;
    z-index: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px var(--blue-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--blue-glow);
}

.btn-glow {
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 4px 15px var(--blue-glow);
    }
    50% {
        box-shadow: 0 4px 25px rgba(30, 136, 229, 0.5);
    }
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.btn-submit {
    width: 100%;
    justify-content: center;
}

/* ==========================================
   SECTION HEADERS
   ========================================== */
.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(30, 136, 229, 0.1);
    color: var(--primary-blue);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 16px;
    border: 1px solid rgba(30, 136, 229, 0.2);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    color: var(--primary-graphite);
    margin-bottom: 20px;
    letter-spacing: -1px;
    line-height: 1.2;
}

.divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-blue), transparent);
    margin: 0 auto 24px;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--steel-lighter);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ==========================================
   ABOUT SECTION
   ========================================== */
.about {
    padding: var(--section-padding);
    background: var(--white);
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text {
    color: var(--steel-dark);
}

.about-text .lead {
    font-size: 20px;
    line-height: 1.8;
    color: var(--steel-dark);
    margin-bottom: 24px;
    font-weight: 500;
}

.about-text p {
    font-size: 16px;
    line-height: 1.9;
    color: var(--steel-lighter);
    margin-bottom: 20px;
}

.about-text strong {
    color: var(--primary-blue);
    font-weight: 600;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.stat-box {
    background: linear-gradient(135deg, var(--primary-graphite) 0%, var(--secondary-graphite) 100%);
    padding: 36px 32px;
    text-align: center;
    border-radius: var(--radius-lg);
    color: var(--white);
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
    transition: all var(--transition-medium);
}

.stat-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(30, 136, 229, 0.2), transparent);
    transition: left 0.8s;
}

.stat-box:hover::before {
    left: 100%;
}

.stat-box:hover {
    transform: translateX(8px);
    box-shadow: -8px 8px 30px rgba(30, 136, 229, 0.25);
}

.stat-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.stat-number {
    font-size: 52px;
    font-weight: 800;
    font-family: var(--font-heading);
    display: inline-block;
    color: var(--primary-blue);
    line-height: 1;
}

.stat-plus,
.stat-decimal {
    font-size: 32px;
    font-weight: 700;
    display: inline-block;
    color: var(--primary-blue);
}

.stat-label {
    font-size: 15px;
    opacity: 0.9;
    margin-top: 8px;
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* ==========================================
   SERVICES SECTION
   ========================================== */
.services {
    padding: var(--section-padding);
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-medium);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--dark-blue));
    transform: scaleX(0);
    transition: transform var(--transition-medium);
}

.service-card:hover::after {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

.service-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1) rotate(1deg);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(26, 29, 35, 0.3) 100%);
}

.service-content {
    padding: 32px 28px;
}

.service-icon {
    font-size: 40px;
    margin-bottom: 16px;
    display: block;
    filter: grayscale(0.3);
    transition: all var(--transition-medium);
}

.service-card:hover .service-icon {
    filter: grayscale(0);
    transform: scale(1.1) rotate(5deg);
}

.service-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-graphite);
    margin-bottom: 14px;
    font-family: var(--font-heading);
    letter-spacing: -0.3px;
}

.service-content p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--steel-lighter);
}

.service-card-small {
    grid-column: span 1;
}

.service-card-small .service-content {
    padding: 40px 28px;
}

/* ==========================================
   WHY US SECTION
   ========================================== */
.why-us {
    padding: var(--section-padding);
    background: var(--white);
    position: relative;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 48px 32px;
    text-align: center;
    border-radius: var(--radius-lg);
    transition: all var(--transition-medium);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 136, 229, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.feature-box:hover::before {
    opacity: 1;
}

.feature-box:hover {
    border-color: var(--primary-blue);
    background: var(--white);
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(30, 136, 229, 0.15);
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px var(--blue-glow);
    transition: all var(--transition-medium);
    position: relative;
    z-index: 1;
}

.feature-box:hover .feature-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px var(--blue-glow);
}

.feature-icon {
    font-size: 36px;
    filter: grayscale(0);
}

.feature-box h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-graphite);
    margin-bottom: 14px;
    font-family: var(--font-heading);
    position: relative;
    z-index: 1;
}

.feature-box p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--steel-lighter);
    position: relative;
    z-index: 1;
}

/* ==========================================
   GALLERY SECTION
   ========================================== */
.gallery {
    padding: var(--section-padding);
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    height: 300px;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-medium);
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-2xl);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.gallery-item:hover img {
    transform: scale(1.15);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(26, 29, 35, 0.85) 100%);
    display: flex;
    align-items: flex-end;
    padding: 28px;
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.gallery-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    font-family: var(--font-heading);
}

.gallery-icon {
    font-size: 24px;
    opacity: 0.9;
}

/* ==========================================
   REVIEWS SECTION
   ========================================== */
.reviews {
    padding: var(--section-padding);
    background: var(--white);
    position: relative;
}

.google-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.google-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--white);
    border-radius: 50px;
    box-shadow: var(--shadow-md);
    font-weight: 600;
    font-size: 14px;
    color: var(--steel-dark);
}

.rating-stars {
    color: #FFC107;
    font-size: 24px;
    letter-spacing: 2px;
}

.rating-text {
    font-size: 16px;
    color: var(--steel-lighter);
    font-weight: 500;
}

.reviews-slider {
    margin-top: 60px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.review-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 36px 32px;
    border-radius: var(--radius-lg);
    position: relative;
    transition: all var(--transition-medium);
    border: 2px solid transparent;
    box-shadow: var(--shadow-md);
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--primary-blue), var(--dark-blue));
    transition: height var(--transition-medium);
    border-radius: 4px 0 0 4px;
}

.review-card:hover::before {
    height: 100%;
}

.review-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(30, 136, 229, 0.1);
}

.review-quote {
    font-size: 64px;
    color: rgba(30, 136, 229, 0.15);
    line-height: 1;
    font-family: Georgia, serif;
    margin-bottom: -10px;
}

.review-stars {
    color: #FFC107;
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 18px;
}

.review-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--steel-dark);
    margin-bottom: 24px;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px var(--blue-glow);
}

.author-name {
    font-weight: 600;
    color: var(--primary-graphite);
    font-size: 15px;
}

.review-date {
    font-size: 13px;
    color: var(--medium-gray);
}

/* ==========================================
   CONTACT SECTION
   ========================================== */
.contact {
    padding: var(--section-padding);
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    margin-bottom: 60px;
}

/* Contact Info Card */
.info-card {
    background: var(--white);
    padding: 48px 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.info-header {
    margin-bottom: 36px;
    padding-bottom: 24px;
    border-bottom: 2px solid rgba(30, 136, 229, 0.1);
}

.info-header h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 8px;
    font-family: var(--font-heading);
}

.info-header p {
    font-size: 16px;
    color: var(--steel-lighter);
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
}

.info-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: rgba(30, 136, 229, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    flex-shrink: 0;
    transition: all var(--transition-medium);
}

.info-item:hover .info-icon {
    background: var(--primary-blue);
    color: var(--white);
    transform: scale(1.05);
}

.info-content h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--steel-dark);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-content p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--steel-lighter);
}

.phone-link {
    color: var(--primary-blue);
    font-weight: 600;
    transition: var(--transition-fast);
}

.phone-link:hover {
    color: var(--dark-blue);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    padding: 48px 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--steel-dark);
    letter-spacing: 0.3px;
}

.form-group input,
.form-group textarea {
    padding: 14px 18px;
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-md);
    font-size: 15px;
    font-family: inherit;
    transition: all var(--transition-medium);
    background: var(--off-white);
    color: var(--dark-text);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(30, 136, 229, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.error-message {
    color: var(--error);
    font-size: 13px;
    display: none;
    font-weight: 500;
}

.error-message.show {
    display: block;
}

.form-success {
    background: linear-gradient(135deg, var(--success) 0%, #059669 100%);
    color: var(--white);
    padding: 18px 24px;
    border-radius: var(--radius-md);
    text-align: center;
    display: none;
    margin-top: 8px;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.form-success.show {
    display: flex;
}

/* Google Maps */
.map-container {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.map-container iframe {
    width: 100%;
    display: block;
    filter: grayscale(0.2) contrast(1.1);
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: linear-gradient(135deg, var(--primary-graphite) 0%, var(--secondary-graphite) 100%);
    color: var(--white);
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(30, 136, 229, 0.5), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-col-brand {
    padding-right: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 700;
    font-family: var(--font-heading);
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-blue);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 14px;
}

.footer-col p,
.footer-col li {
    font-size: 14px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.7);
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-fast);
}

.footer-col a:hover {
    color: var(--primary-blue);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-bottom a {
    color: var(--primary-blue);
    transition: var(--transition-fast);
    font-weight: 500;
}

.footer-bottom a:hover {
    color: var(--light-blue);
}

/* ==========================================
   BACK TO TOP BUTTON
   ========================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px var(--blue-glow);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-medium);
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px var(--blue-glow);
}

/* ==========================================
   PRIVACY POLICY PAGE
   ========================================== */
.privacy-policy {
    padding: 140px 0 80px;
    background: var(--white);
    min-height: calc(100vh - 200px);
}

.privacy-header {
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 30px;
    border-bottom: 3px solid var(--primary-blue);
}

.privacy-header h1 {
    font-size: 48px;
    color: var(--primary-graphite);
    margin-bottom: 15px;
    font-family: var(--font-heading);
    font-weight: 700;
}

.updated-date {
    font-size: 15px;
    color: var(--steel-lighter);
    font-style: italic;
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-section {
    margin-bottom: 40px;
}

.privacy-section h2 {
    font-size: 26px;
    color: var(--primary-graphite);
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--light-gray);
    font-family: var(--font-heading);
    font-weight: 600;
}

.privacy-section p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--steel-lighter);
    margin-bottom: 16px;
}

.privacy-section ul {
    list-style: disc;
    margin-left: 32px;
    margin-bottom: 16px;
}

.privacy-section li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--steel-lighter);
    margin-bottom: 10px;
}

.info-box-policy {
    background: var(--off-white);
    padding: 24px 32px;
    border-left: 4px solid var(--primary-blue);
    margin: 24px 0;
    border-radius: var(--radius-md);
}

.info-box-policy p {
    margin-bottom: 6px;
}

.info-box-policy a {
    color: var(--primary-blue);
    font-weight: 600;
    transition: var(--transition-fast);
}

.info-box-policy a:hover {
    color: var(--dark-blue);
}

.back-link {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid var(--light-gray);
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-content {
        gap: 50px;
    }

    .contact-wrapper {
        gap: 40px;
    }
}

@media (max-width: 968px) {
    :root {
        --section-padding: 70px 0;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(26, 29, 35, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        padding: 40px 24px;
        transition: left var(--transition-medium);
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        width: 100%;
        padding: 16px 20px;
        font-size: 17px;
    }

    .nav-link-cta {
        margin-left: 0;
        margin-top: 16px;
    }

    .menu-toggle {
        display: flex;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translateY(12px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translateY(-12px);
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .footer-bottom {
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }

    .section-title {
        font-size: 32px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .privacy-header h1 {
        font-size: 36px;
    }

    .privacy-section h2 {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .stat-number {
        font-size: 42px;
    }

    .contact-form-wrapper,
    .info-card {
        padding: 32px 24px;
    }

    .back-to-top {
        width: 44px;
        height: 44px;
        bottom: 20px;
        right: 20px;
    }

    .privacy-header h1 {
        font-size: 28px;
    }

    .privacy-section p,
    .privacy-section li {
        font-size: 15px;
    }
}