/* ===================================
   CSS VARIABLES & DESIGN TOKENS
   =================================== */
:root {
    /* Colors - Locksmith Professional Palette */
    --primary-hue: 51;
    --primary-sat: 26%;

    --primary-50: hsl(var(--primary-hue), var(--primary-sat), 97%);
    --primary-100: hsl(var(--primary-hue), var(--primary-sat), 92%);
    --primary-200: hsl(var(--primary-hue), var(--primary-sat), 82%);
    --primary-300: hsl(var(--primary-hue), var(--primary-sat), 72%);
    --primary-400: hsl(var(--primary-hue), var(--primary-sat), 66%);
    /* Base #BFB792 */
    --primary-500: hsl(var(--primary-hue), var(--primary-sat), 56%);
    --primary-600: hsl(var(--primary-hue), var(--primary-sat), 46%);
    --primary-700: hsl(var(--primary-hue), var(--primary-sat), 36%);
    --primary-800: hsl(var(--primary-hue), var(--primary-sat), 26%);
    --primary-900: hsl(var(--primary-hue), var(--primary-sat), 16%);

    --accent-hue: 45;
    --accent-sat: 20%;

    --accent-400: hsl(var(--accent-hue), var(--accent-sat), 66%);
    --accent-500: hsl(var(--accent-hue), var(--accent-sat), 56%);
    --accent-600: hsl(var(--accent-hue), var(--accent-sat), 46%);

    --success: hsl(142, 71%, 45%);
    --warning: hsl(38, 92%, 50%);
    --error: hsl(0, 84%, 60%);

    /* Neutrals - Dark Professional */
    --gray-50: hsl(220, 20%, 98%);
    --gray-100: hsl(220, 18%, 95%);
    --gray-200: hsl(220, 16%, 88%);
    --gray-300: hsl(220, 14%, 75%);
    --gray-400: hsl(220, 12%, 60%);
    --gray-500: hsl(220, 10%, 45%);
    --gray-600: hsl(220, 12%, 35%);
    --gray-700: hsl(220, 14%, 25%);
    --gray-800: hsl(220, 16%, 15%);
    --gray-900: hsl(220, 18%, 8%);

    /* Semantic Colors - Lighter Professional Theme */
    --bg-primary: #BFB792;
    --bg-secondary: #edebdf;
    --bg-tertiary: #d7d1b3;
    --text-primary: #0a0e1a;
    --text-secondary: #2d3436;
    --text-tertiary: #4d5656;
    --white: #ffffff;
    --black: #000000;

    /* Gradients - New Sophisticated Gold/Beige */
    --gradient-primary: linear-gradient(135deg, hsl(51, 26%, 66%) 0%, hsl(51, 26%, 46%) 100%);
    --gradient-secondary: linear-gradient(135deg, hsl(51, 26%, 46%) 0%, hsl(51, 26%, 26%) 100%);
    --gradient-accent: linear-gradient(135deg, hsl(45, 20%, 66%) 0%, hsl(45, 20%, 46%) 100%);
    --gradient-glow: radial-gradient(circle at 50% 50%, hsl(51, 26%, 66%) 0%, transparent 70%);

    /* Spacing - FIXED for mobile */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;

    /* Container max-width */
    --container-max: 1280px;
    --container-padding: 1.5rem;

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    --text-6xl: 3.75rem;

    /* 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);
    --shadow-glow: 0 0 40px rgba(59, 130, 246, 0.5);

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ===================================
   RESET & BASE STYLES
   =================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

input,
button,
textarea,
select {
    font: inherit;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

/* ===================================
   UTILITY CLASSES
   =================================== */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===================================
   NAVIGATION
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(191, 183, 146, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(10, 14, 26, 0.1);
    transition: all var(--transition-base);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md) var(--space-md);
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    font-family: var(--font-display);
    font-size: 2rem;
    /* Even larger font */
    font-weight: 800;
}

.logo-img {
    height: 90px;
    /* Ultra increased from 60px */
    width: auto;
    object-fit: contain;
}

.logo-highlight {
    color: var(--accent-400);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav-link {
    position: relative;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color var(--transition-base);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition-base);
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    padding: var(--space-xs) var(--space-md);
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    font-weight: 600;
    transition: all var(--transition-base);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.5);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-xs);
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(10, 14, 26, 0.05) 0%, transparent 50%);
    z-index: -1;
}

.hero-background::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(10, 14, 26, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(10, 14, 26, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    padding: var(--space-3xl) 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-xs) var(--space-md);
    background: var(--white);
    border: 1px solid rgba(10, 14, 26, 0.1);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    color: var(--primary-700);
    font-weight: 600;
    margin-bottom: var(--space-lg);
    animation: fadeInUp 0.6s ease-out;
    box-shadow: var(--shadow-sm);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.2);
    }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(var(--text-4xl), 5vw, var(--text-6xl));
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--space-lg);
    animation: fadeInUp 0.6s ease-out 0.2s backwards;
}

.hero-title span {
    display: block;
    margin-top: var(--space-sm);
}

.hero-description {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
    max-width: 600px;
    animation: fadeInUp 0.6s ease-out 0.4s backwards;
}

.hero-cta {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
    animation: fadeInUp 0.6s ease-out 0.6s backwards;
}

.hero-features {
    display: flex;
    gap: var(--space-xl);
    animation: fadeInUp 0.6s ease-out 0.8s backwards;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--text-secondary);
}

.feature-icon {
    width: 24px;
    height: 24px;
    color: var(--primary-400);
}

.hero-image {
    position: relative;
    animation: fadeInUp 0.6s ease-out 0.4s backwards;
}

.hero-card {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, rgba(191, 183, 146, 0.2) 0%, rgba(10, 14, 26, 0.05) 100%);
    border-radius: var(--radius-2xl);
    border: 1px solid rgba(10, 14, 26, 0.1);
    backdrop-filter: blur(20px);
    overflow: hidden;
}

.hero-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><linearGradient id="grad" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:rgb(59,130,246);stop-opacity:0.3" /><stop offset="100%" style="stop-color:rgb(168,85,247);stop-opacity:0.3" /></linearGradient></defs><rect x="50" y="60" width="100" height="80" rx="10" fill="none" stroke="url(%23grad)" stroke-width="2"/><circle cx="100" cy="100" r="5" fill="url(%23grad)"/><path d="M 100 105 L 100 120" stroke="url(%23grad)" stroke-width="2"/></svg>') center/60% no-repeat;
    opacity: 0.6;
    z-index: 1;
    pointer-events: none;
}

.hero-img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-2xl);
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   BUTTONS
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: var(--text-base);
    transition: all var(--transition-base);
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.btn-icon {
    width: 20px;
    height: 20px;
}

.btn-primary {
    background: var(--text-primary);
    color: var(--bg-primary);
    box-shadow: 0 4px 20px rgba(10, 14, 26, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: #1a1c1e;
    box-shadow: 0 8px 30px rgba(10, 14, 26, 0.3);
}

.btn-secondary {
    background: rgba(10, 14, 26, 0.05);
    color: var(--text-primary);
    border: 1px solid rgba(10, 14, 26, 0.1);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.btn-large {
    padding: var(--space-md) var(--space-xl);
    font-size: var(--text-lg);
}

/* ===================================
   SECTIONS
   =================================== */
.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-badge {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    background: var(--white);
    border: 1px solid rgba(10, 14, 26, 0.1);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    color: var(--primary-700);
    margin-bottom: var(--space-md);
    font-weight: 700;
    box-shadow: var(--shadow-sm);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
    font-weight: 800;
    margin-bottom: var(--space-md);
}

.section-description {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* ===================================
   SERVICES SECTION
   =================================== */
.services {
    padding: var(--space-3xl) 0;
    background: var(--bg-secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
    padding: var(--space-xl) 0;
}

.service-card {
    position: relative;
    background: var(--white);
    border: 1px solid rgba(10, 14, 26, 0.05);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
    overflow: hidden;
    height: 100%;
    box-shadow: var(--shadow-md);

    /* Horizontal Layout */
    display: grid;
    grid-template-columns: 220px 1fr;
    grid-template-rows: auto auto 1fr;
    grid-template-areas:
        "img title"
        "img desc"
        "img features";
    gap: 0 var(--space-lg);
    padding: var(--space-md);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
    z-index: 10;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(191, 183, 146, 0.3);
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.5);
}

.service-card.featured {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
    border-color: rgba(59, 130, 246, 0.3);
}

.featured-badge {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    padding: var(--space-xs) var(--space-sm);
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 600;
}

.service-card.featured .featured-badge {
    right: auto;
    left: var(--space-md);
    top: var(--space-md);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    z-index: 2;
}

.service-img {
    grid-area: img;
    width: 100%;
    height: 100%;
    min-height: 180px;
    /* Minimum height for aspect ratio */
    object-fit: cover;
    border-radius: var(--radius-lg);
    margin-bottom: 0;
    transition: transform var(--transition-base);
}

.service-card:hover .service-img {
    transform: scale(1.05);
}

.service-title {
    grid-area: title;
    font-family: var(--font-display);
    font-size: var(--text-lg);
    /* Slightly smaller title */
    font-weight: 700;
    margin-bottom: var(--space-xs);
    color: var(--primary-400);
}

.service-description {
    grid-area: desc;
    color: var(--text-secondary);
    margin-bottom: var(--space-sm);
    line-height: 1.5;
    font-size: 0.95rem;
}

.service-features {
    grid-area: features;
    list-style: none;
    margin-top: auto;
    /* Push to bottom if space allows */
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.service-features li {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    color: var(--text-tertiary);
    font-size: var(--text-sm);
}

.service-features li::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background: rgba(34, 197, 94, 0.2);
    color: var(--success);
    border-radius: 50%;
    font-size: var(--text-xs);
    font-weight: 700;
}

/* ===================================
   WHY US SECTION
   =================================== */
.why-us {
    padding: var(--space-3xl) 0;
}

.why-us-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.why-us-description {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    margin: var(--space-lg) 0;
    line-height: 1.8;
}

.why-us-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.stat-item {
    text-align: center;
    padding: var(--space-lg);
    background: var(--white);
    border: 1px solid rgba(10, 14, 26, 0.05);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    box-shadow: var(--shadow-sm);
}

.stat-item:hover {
    transform: translateY(-4px);
    border-color: var(--bg-primary);
    box-shadow: var(--shadow-lg);
}

.stat-icon {
    width: 48px;
    height: 48px;
    padding: var(--space-sm);
    background: rgba(191, 183, 146, 0.15);
    border-radius: var(--radius-lg);
    color: var(--primary-400);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-xs);
}

.stat-icon svg {
    width: 100%;
    height: 100%;
}

.stat-number {
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: var(--text-tertiary);
    font-size: var(--text-sm);
}

.why-us-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

.feature-box {
    padding: var(--space-lg);
    background: var(--white);
    border: 1px solid rgba(10, 14, 26, 0.05);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.feature-box:hover {
    transform: translateY(-4px);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-box-icon {
    width: 64px;
    height: 64px;
    padding: var(--space-md);
    background: linear-gradient(135deg, rgba(191, 183, 146, 0.15) 0%, rgba(141, 135, 99, 0.15) 100%);
    border: 1px solid rgba(191, 183, 146, 0.2);
    border-radius: var(--radius-lg);
    color: var(--primary-400);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
    transition: all var(--transition-base);
}

.feature-box:hover .feature-box-icon {
    background: linear-gradient(135deg, rgba(191, 183, 146, 0.25) 0%, rgba(141, 135, 99, 0.25) 100%);
    border-color: rgba(191, 183, 146, 0.4);
    transform: scale(1.05);
}

.feature-box-icon svg {
    width: 100%;
    height: 100%;
}

.feature-box h4 {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 700;
    margin-bottom: var(--space-xs);
}

.feature-box p {
    color: var(--text-secondary);
    font-size: var(--text-sm);
    line-height: 1.6;
}

/* ===================================
   ZONES SECTION
   =================================== */
.zones {
    padding: var(--space-3xl) 0;
    background: var(--bg-secondary);
}

.zones-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    margin-bottom: var(--space-3xl);
}

.zone-card {
    padding: var(--space-xl);
    background: var(--white);
    border: 1px solid rgba(10, 14, 26, 0.05);
    border-radius: var(--radius-xl);
    text-align: center;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.zone-card:hover {
    transform: translateY(-8px);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.zone-icon {
    width: 72px;
    height: 72px;
    padding: var(--space-md);
    background: linear-gradient(135deg, rgba(191, 183, 146, 0.1) 0%, rgba(141, 135, 99, 0.1) 100%);
    border: 1px solid rgba(191, 183, 146, 0.2);
    border-radius: var(--radius-xl);
    color: var(--primary-400);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    transition: all var(--transition-base);
}

.zone-card:hover .zone-icon {
    background: linear-gradient(135deg, rgba(191, 183, 146, 0.2) 0%, rgba(141, 135, 99, 0.2) 100%);
    border-color: rgba(191, 183, 146, 0.4);
    transform: scale(1.1) rotate(5deg);
}

.zone-icon svg {
    width: 100%;
    height: 100%;
}

.zone-card h3 {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

.zone-card p {
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
}

.zone-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    color: var(--primary-400);
    font-weight: 600;
    transition: all var(--transition-base);
}

.zone-link:hover {
    gap: var(--space-sm);
    color: var(--primary-300);
}

/* ===================================
   CTA SECTION
   =================================== */
.cta-section {
    padding: var(--space-3xl) 0;
    background: var(--text-primary);
    color: var(--bg-primary);
}

.cta-section .cta-title {
    color: var(--white);
}

.cta-section .cta-description {
    color: rgba(255, 255, 255, 0.8);
}

.cta-section .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
    font-weight: 800;
    margin-bottom: var(--space-md);
}

.cta-description {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
    flex-wrap: wrap;
}

.cta-subtitle {
    color: var(--text-tertiary);
    font-size: var(--text-sm);
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    padding: var(--space-3xl) 0 var(--space-lg);
    background: var(--bg-secondary);
    border-top: 1px solid rgba(10, 14, 26, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--space-3xl);
    margin-bottom: var(--space-xl);
}

.footer-brand {
    max-width: 400px;
}

.footer-favicon {
    height: 48px;
    width: auto;
    margin-bottom: var(--space-md);
    transition: transform var(--transition-base);
}

.footer-favicon:hover {
    transform: scale(1.1);
}

.footer-description {
    color: var(--text-secondary);
    margin: var(--space-md) 0;
    line-height: 1.7;
}

.footer-phone {
    display: inline-block;
    padding: var(--space-sm) var(--space-lg);
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: var(--text-lg);
    margin-top: var(--space-md);
    transition: all var(--transition-base);
}

.footer-phone:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(191, 183, 146, 0.4);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.footer-column h4 {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 700;
    margin-bottom: var(--space-md);
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-column a {
    color: var(--text-secondary);
    transition: color var(--transition-base);
}

.footer-column a:hover {
    color: var(--primary-400);
}

.footer-bottom {
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: var(--text-tertiary);
    font-size: var(--text-sm);
}

/* Smooth Image Loading */
.smooth-load {
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    will-change: opacity;
}

.smooth-load.loaded {
    opacity: 1 !important;
}

/* ===================================
   FLOATING ACTION BUTTON
   =================================== */
.fab {
    position: fixed;
    bottom: var(--space-lg);
    right: var(--space-lg);
    background: var(--text-primary);
    color: var(--bg-primary);
    padding: 12px 24px;
    /* Pill shape padding */
    border-radius: 50px;
    /* Pill shape */
    box-shadow: var(--shadow-2xl);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 10px;
    /* Space between icon and text */
    transition: transform var(--transition-bounce), box-shadow var(--transition-base);
    width: auto;
    /* Allow auto width */
    height: auto;
    /* Allow auto height */
    text-decoration: none;
    white-space: nowrap;
    /* Ensure text doesn't wrap */
    max-width: fit-content;
    /* Explicitly fit content */
}



@keyframes fabPulse {

    0%,
    100% {
        box-shadow: 0 8px 30px rgba(191, 183, 146, 0.5);
    }

    50% {
        box-shadow: 0 8px 40px rgba(191, 183, 146, 0.8);
    }
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

/* Tablet Landscape */
@media (max-width: 1024px) {
    :root {
        --space-3xl: 4rem;
        --space-2xl: 3rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .hero-image {
        max-width: 500px;
        margin: 0 auto;
    }

    .why-us-content {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .footer-links {
        grid-template-columns: repeat(3, 1fr);
    }

    .zones-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Hero Animations & Effects */
.glass-effect {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.float-animation {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.decorative-circle {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient-primary);
    filter: blur(80px);
    opacity: 0.4;
    z-index: -1;
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: -50px;
    right: -50px;
    background: rgba(191, 183, 146, 0.3);
}

.circle-2 {
    width: 200px;
    height: 200px;
    bottom: -30px;
    left: -30px;
    background: rgba(59, 130, 246, 0.2);
}

/* Tablet Portrait & Mobile - ULTRA PROFESSIONAL */
@media (max-width: 768px) {
    :root {
        --space-3xl: 3.5rem;
        --space-2xl: 2.5rem;
        --space-xl: 2rem;
        --container-padding: 1.25rem;
    }

    .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    /* Navigation - Professional Mobile Menu */
    .nav-container {
        padding: 1rem 1.25rem;
    }

    .logo {
        font-size: 1.5rem;
        /* Larger text on mobile */
    }

    .logo-icon {
        width: 70px;
        /* Even larger on mobile */
        height: 70px;
    }

    .nav-menu {
        position: fixed;
        top: 90px;
        /* Offset to avoid covering the new larger logo */
        left: 0;
        right: 0;
        background: rgba(10, 14, 26, 0.98);
        backdrop-filter: blur(24px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        flex-direction: column;
        padding: 1.5rem;
        gap: 0.75rem;
        transform: translateY(-120%);
        opacity: 0;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        pointer-events: none;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
        z-index: 998;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-link {
        font-size: 1.0625rem;
        padding: 0.75rem 0;
        display: block;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-link:last-of-type {
        border-bottom: none;
    }

    .nav-cta {
        width: 100%;
        text-align: center;
        padding: 0.875rem 1.25rem;
        font-size: 1.0625rem;
        margin-top: 0.5rem;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: scale(0);
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .service-card {
        grid-template-columns: 1fr;
        grid-template-rows: 200px auto auto 1fr;
        grid-template-areas:
            "img"
            "title"
            "desc"
            "features";
        padding: var(--space-md);
    }

    .service-img {
        min-height: auto;
        height: 100%;
        margin-bottom: var(--space-sm);
    }

    .service-features {
        margin-top: var(--space-sm);
    }

    /* Hero Section - Mobile Optimized */
    .hero {
        min-height: auto;
        padding-top: 68px;
        padding-bottom: 3rem;
    }

    .hero-content {
        padding: 2.5rem 0;
        gap: 2rem;
    }

    .hero-badge {
        font-size: 0.8125rem;
        padding: 0.5rem 1rem;
    }

    .badge-dot {
        width: 6px;
        height: 6px;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 2.5rem);
        margin-bottom: 1.25rem;
        line-height: 1.15;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 1.75rem;
        line-height: 1.65;
    }

    .hero-cta {
        flex-direction: column;
        gap: 0.75rem;
    }

    .hero-cta .btn {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        font-weight: 600;
    }

    .hero-features {
        flex-direction: row;
        justify-content: space-between;
        gap: 0.75rem;
        margin-top: 0.5rem;
    }

    .feature-item {
        flex-direction: column;
        gap: 0.375rem;
        font-size: 0.875rem;
        text-align: center;
    }

    .feature-icon {
        width: 22px;
        height: 22px;
    }

    .feature-item span {
        font-size: 0.8125rem;
        font-weight: 500;
    }

    .hero-image {
        max-width: 100%;
        order: -1;
    }

    .hero-card {
        max-width: 400px;
        margin: 0 auto;
    }

    /* Sections - Mobile Spacing */
    .services,
    .why-us,
    .zones,
    .cta-section {
        padding: 2.5rem 0;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .section-badge {
        font-size: 0.8125rem;
        padding: 0.5rem 1rem;
    }

    .section-title {
        font-size: clamp(1.75rem, 6vw, 2.25rem);
        margin-bottom: 0.75rem;
        line-height: 1.2;
    }

    .section-description {
        font-size: 0.9375rem;
        line-height: 1.6;
    }

    /* Service Cards - Mobile */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-icon {
        width: 52px;
        height: 52px;
        padding: 0.75rem;
    }

    .service-title {
        font-size: 1.125rem;
        margin-bottom: 0.625rem;
    }

    .service-description {
        font-size: 0.9375rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }

    .service-features li {
        font-size: 0.875rem;
    }

    .zones-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .featured-badge {
        font-size: 0.6875rem;
        padding: 0.375rem 0.75rem;
    }

    /* Why Us - Mobile */
    .why-us-description {
        font-size: 0.9375rem;
        line-height: 1.7;
        margin: 1.25rem 0;
    }

    .why-us-stats {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        margin-top: 1.5rem;
    }

    .stat-item {
        padding: 1.25rem 1rem;
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
        gap: 1rem;
    }

    .stat-icon {
        width: 44px;
        height: 44px;
        padding: 0.625rem;
        flex-shrink: 0;
    }

    .stat-number {
        font-size: 2rem;
        line-height: 1;
    }

    .stat-label {
        font-size: 0.8125rem;
        margin-top: 0.25rem;
    }

    .why-us-features {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        margin-top: 1.5rem;
    }

    .feature-box {
        padding: 1.25rem;
    }

    .feature-box-icon {
        width: 56px;
        height: 56px;
        padding: 0.875rem;
        margin-bottom: 1rem;
    }

    .feature-box h4 {
        font-size: 1.0625rem;
        margin-bottom: 0.5rem;
    }

    .feature-box p {
        font-size: 0.875rem;
        line-height: 1.55;
    }

    /* Zones - Mobile */
    .zones-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .zone-card {
        padding: 1.5rem;
    }

    .zone-icon {
        width: 60px;
        height: 60px;
        padding: 0.875rem;
        margin-bottom: 1rem;
    }

    .zone-card h3 {
        font-size: 1.125rem;
        margin-bottom: 0.5rem;
    }

    .zone-card p {
        font-size: 0.9375rem;
        margin-bottom: 1rem;
    }

    .zone-link {
        font-size: 0.9375rem;
    }

    /* CTA Section - Mobile */
    .cta-title {
        font-size: clamp(1.75rem, 6vw, 2.25rem);
        margin-bottom: 1rem;
        line-height: 1.2;
    }

    .cta-description {
        font-size: 0.9375rem;
        margin-bottom: 1.75rem;
        line-height: 1.65;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
    }

    .cta-subtitle {
        font-size: 0.875rem;
        margin-top: 1rem;
    }

    /* Footer - Mobile */
    .footer {
        padding: 2.5rem 0 1.5rem;
    }

    .footer-content {
        margin-bottom: 2rem;
    }

    .footer-brand {
        max-width: 100%;
        margin-bottom: 2rem;
    }

    .footer-description {
        font-size: 0.9375rem;
        line-height: 1.6;
    }

    .footer-phone {
        font-size: 1rem;
        padding: 0.75rem 1.25rem;
        display: block;
        text-align: center;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-column h4 {
        font-size: 1.0625rem;
        margin-bottom: 0.875rem;
    }

    .footer-column a {
        font-size: 0.9375rem;
    }

    .footer-bottom {
        font-size: 0.8125rem;
        padding-top: 1.5rem;
    }

    /* FAB - Mobile */
    .fab {
        bottom: 1.25rem;
        right: 1.25rem;
        padding: 10px 18px;
        /* Slightly smaller padding for mobile */
    }

    .fab svg {
        width: 26px;
        height: 26px;
    }
}

/* Small Mobile - Extra Professional */
@media (max-width: 480px) {
    :root {
        --space-3xl: 3rem;
        --space-2xl: 2rem;
        --space-xl: 1.5rem;
        --space-lg: 1.25rem;
        --container-padding: 1rem;
    }

    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    /* Typography Refinements */
    .hero-title {
        font-size: clamp(1.875rem, 7.5vw, 2.25rem);
        line-height: 1.2;
    }

    .section-title {
        font-size: clamp(1.625rem, 5.5vw, 2rem);
    }

    .cta-title {
        font-size: clamp(1.625rem, 5.5vw, 2rem);
    }

    /* Buttons */
    .btn {
        padding: 0.875rem 1.25rem;
        font-size: 0.9375rem;
    }

    .btn-large {
        padding: 1rem 1.375rem;
        font-size: 1rem;
    }

    .btn-icon {
        width: 18px;
        height: 18px;
    }

    /* Cards - Compact */
    .service-card,
    .feature-box,
    .zone-card {
        padding: 1.25rem;
    }

    .service-icon {
        width: 48px;
        height: 48px;
    }

    .feature-box-icon {
        width: 52px;
        height: 52px;
    }

    .zone-icon {
        width: 56px;
        height: 56px;
    }

    /* Stats - Compact Layout */
    .stat-item {
        padding: 1rem 0.875rem;
    }

    .stat-icon {
        width: 40px;
        height: 40px;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    /* Hero Features - Compact */
    .hero-features {
        gap: 0.5rem;
    }

    .feature-item {
        font-size: 0.8125rem;
    }

    .feature-item span {
        font-size: 0.75rem;
    }

    .feature-icon {
        width: 20px;
        height: 20px;
    }

    /* FAB - Smaller */
    .fab {
        bottom: 1rem;
        right: 1rem;
        padding: 8px 16px;
    }

    .fab svg {
        width: 24px;
        height: 24px;
    }

    /* Section Spacing */
    .services,
    .why-us,
    .zones,
    .cta-section {
        padding: 2.25rem 0;
    }

    .section-header {
        margin-bottom: 1.75rem;
    }

    /* Footer */
    .footer {
        padding: 2.25rem 0 1.25rem;
    }

    .footer-bottom {
        font-size: 0.75rem;
        line-height: 1.5;
    }
}

/* Extra Small Mobile */
@media (max-width: 375px) {
    .container {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: clamp(1.75rem, 7vw, 2rem);
    }

    .section-title {
        font-size: clamp(1.5rem, 5vw, 1.875rem);
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .service-title,
    .zone-card h3 {
        font-size: 1rem;
    }

    .feature-box h4 {
        font-size: 1rem;
    }

    .service-card,
    .feature-box,
    .zone-card {
        padding: 1.125rem;
    }

    .btn,
    .btn-large {
        font-size: 0.875rem;
        padding: 0.875rem 1.125rem;
    }
}

/* Landscape Mobile - Special Handling */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 1rem 0;
    }

    .hero-content {
        padding: 1.5rem 0;
    }

    .hero-image {
        display: none;
    }

    .services,
    .why-us,
    .zones,
    .cta-section {
        padding: 2rem 0;
    }
}

/* ===================================
   MODALS
   =================================== */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(10, 14, 26, 0.4);
    backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
}

.modal-content {
    background: var(--bg-secondary);
    border: 1px solid rgba(191, 183, 146, 0.2);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    margin: 20px;
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    width: 90%;
    max-width: 800px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal.show .modal-content {
    transform: translateY(0);
}

.close-modal {
    color: var(--text-tertiary);
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s;
    line-height: 1;
}

.close-modal:hover,
.close-modal:focus {
    color: var(--primary-400);
    text-decoration: none;
}

.modal-body {
    margin-top: var(--space-lg);
    color: var(--text-secondary);
    line-height: 1.7;
}

.modal-body h3 {
    color: var(--white);
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
    font-size: var(--text-lg);
}

.modal-body p {
    margin-bottom: var(--space-md);
    color: var(--text-secondary);
}

#modalTitle {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 700;
}