/* ===================================
   CSS VARIABLES & DESIGN TOKENS
   =================================== */
:root {
    /* Colors - Yuudle Brand Palette */
    --primary-50: #fdf2f2;
    --primary-100: #fde8e8;
    --primary-200: #fbd5d5;
    --primary-300: #f8a9a9;
    --primary-400: #f07070;
    --primary-500: #a5100d;
    --primary-600: #8e0d0b;
    --primary-700: #780b09;
    --primary-800: #5c0907;
    --primary-900: #3d0605;

    --secondary-500: #c41210;
    --secondary-600: #8e0d0b;

    --accent-500: #e63330;
    --accent-600: #c41210;

    --neutral-50: #fafafa;
    --neutral-100: #f5f5f5;
    --neutral-200: #e5e5e5;
    --neutral-300: #d4d4d4;
    --neutral-400: #a3a3a3;
    --neutral-500: #737373;
    --neutral-600: #525252;
    --neutral-700: #404040;
    --neutral-800: #262626;
    --neutral-900: #171717;

    --success-500: #10b981;
    --success-600: #059669;
    --warning-500: #f59e0b;
    --error-500: #ef4444;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #a5100d 0%, #c41210 100%);
    --gradient-secondary: linear-gradient(135deg, #c41210 0%, #e63330 100%);
    --gradient-accent: linear-gradient(135deg, #a5100d 0%, #780b09 100%);
    --gradient-warm: linear-gradient(135deg, #a5100d 0%, #e63330 100%);

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;

    /* 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(165, 16, 13, 0.3);

    /* 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;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--neutral-800);
    background-color: var(--neutral-50);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-base);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    transition: all var(--transition-base);
}

input,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
}

/* ===================================
   UTILITY CLASSES
   =================================== */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.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: rgb(255, 255, 255);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all var(--transition-base);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-md);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    gap: var(--space-xl);
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--neutral-900);
}

.logo-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    flex: 1;
    justify-content: center;
}

.nav-link {
    position: relative;
    font-weight: 500;
    color: var(--neutral-700);
    padding: var(--space-sm) 0;
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--primary-600);
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-sm);
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--neutral-800);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
}

/* ===================================
   BUTTONS
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: var(--text-base);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn-primary {
    background: #a5100d;
    color: white;
    box-shadow: 0 4px 12px rgba(165, 16, 13, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: #8e0d0b;
    box-shadow: 0 8px 20px rgba(165, 16, 13, 0.45);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-text {
    color: var(--neutral-700);
    padding: 0.75rem 1rem;
}

.btn-text:hover {
    color: #a5100d;
    background: var(--primary-50);
}

.btn-search {
    background: #a5100d;
    color: white;
    padding: 1rem 2rem;
    border-radius: 67px;
    font-size: var(--text-lg);
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(165, 16, 13, 0.35);
}

.btn-search:hover {
    transform: translateY(-2px);
    background: #8e0d0b;
    box-shadow: 0 12px 28px rgba(165, 16, 13, 0.45);
}

.btn-white {
    background: white;
    color: #a5100d;
    font-weight: 700;
    box-shadow: var(--shadow-lg);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-outline-white {
    border: 2px solid white;
    color: white;
    font-weight: 600;
}

.btn-outline-white:hover {
    background: white;
    color: #a5100d;
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    position: relative;
    padding: 180px 0 140px;
    overflow: hidden;
    background: #0a0a0a;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
}

/* Full-cover background video */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

/* Dark gradient overlay for readability */
.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(0, 0, 0, 0.72) 0%,
            rgba(80, 8, 6, 0.37) 50%,
            rgba(0, 0, 0, 0.68) 100%);
    z-index: 1;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -30px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--space-xl);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: var(--space-lg);
    animation: slideUp 0.8s ease-out 0.2s both;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.hero-title-accent {
    color: #ff4e4b;
    text-shadow: 0 0 40px rgba(165, 16, 13, 0.6), 0 2px 20px rgba(0, 0, 0, 0.4);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-description {
    font-size: var(--text-xl);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--space-2xl);
    line-height: 1.7;
    animation: slideUp 0.8s ease-out 0.4s both;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

/* ===================================
   SEARCH CARD
   =================================== */
.search-card {
    background: white;
    border-radius: 67px;
    padding: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    margin-bottom: var(--space-xl);
    animation: slideUp 0.8s ease-out 0.6s both;
}

.search-form {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.search-field {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    flex: 1;
    padding: var(--space-md);
}

.search-icon {
    color: var(--neutral-400);
    flex-shrink: 0;
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: var(--text-base);
    color: var(--neutral-900);
    background: transparent;
}

.search-input::placeholder {
    color: var(--neutral-400);
}

.search-divider {
    width: 1px;
    height: 40px;
    background: var(--neutral-200);
}

/* ===================================
   POPULAR CATEGORIES
   =================================== */
.popular-categories {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
    animation: slideUp 0.8s ease-out 0.8s both;
}

.categories-label {
    font-size: var(--text-sm);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
}

.category-tags {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
    justify-content: center;
}

.category-tag {
    padding: var(--space-sm) var(--space-lg);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    transition: all var(--transition-base);
}

.category-tag:hover {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.22);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* ===================================
   SERVICES SHOWCASE SECTION
   =================================== */
.services-showcase {
    padding: var(--space-4xl) 0 var(--space-2xl) 0;
    background: white;
}

/* Service Category Icons Row */
.service-categories-row {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
    margin-bottom: var(--space-3xl);
    padding-bottom: var(--space-3xl);
    border-bottom: 1px solid var(--neutral-200);
}

.service-category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
    transition: all var(--transition-base);
    cursor: pointer;
}

.service-category-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;


    border-radius: var(--radius-lg);
    color: #b91c1c;
    transition: all var(--transition-base);
}

.service-category-img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    display: block;
}

.service-category-item:hover .service-category-icon {
    background: #fef2f2;
    border-color: #fca5a5;
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.service-category-label {
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--neutral-700);
    text-align: center;
    max-width: 80px;
    line-height: 1.3;
}

.service-category-item:hover .service-category-label {
    color: #b91c1c;
}

/* Services Header */
.services-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.services-title {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: var(--space-sm);
}

.location-highlight {
    color: #b91c1c;
    font-weight: 800;
}

.services-subtitle {
    font-size: var(--text-base);
    color: var(--neutral-600);
    padding-bottom: 40px;
}

/* Service Cards Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-lg);
}

.service-card {
    display: flex;
    align-items: flex-start;
    gap: 1em;
    padding: 10px;
    background: white;
    border: 2px solid var(--neutral-200);
    border-radius: var(--radius-xl);
    text-decoration: none;
    transition: all var(--transition-base);
    cursor: pointer;
}

.service-card:hover {
    border-color: #fca5a5;
    background: #fef2f2;
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.service-card-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: var(--radius-lg);
    color: #b91c1c;
    transition: all var(--transition-base);
}

.service-card-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    display: block;
    transition: filter var(--transition-base);
}

.service-card:hover .service-card-icon {
    background: #b91c1c;
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.service-card:hover .service-card-img {
    filter: brightness(0) invert(1);
}

.service-card-content {
    flex: 1;
}

.service-card-title {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: var(--space-xs);
    text-align: left;
}

.service-card-description {
    font-size: var(--text-sm);
    color: #b91c1c;
    font-weight: 500;
    text-align: left;
}

/* ===================================
   FEATURES SECTION
   =================================== */
.features {
    padding: var(--space-2xl) 0 var(--space-4xl) 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-title {
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    font-weight: 800;
    color: var(--neutral-900);
    margin-bottom: var(--space-md);
}

.section-description {
    font-size: var(--text-lg);
    color: var(--neutral-600);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-xl);
}

.feature-card {
    padding: var(--space-xl);
    background: var(--neutral-50);
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-200);
    background: white;
}

.feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #a5100d;
    border-radius: var(--radius-lg);
    color: white;
    margin-bottom: var(--space-lg);
    transition: all var(--transition-base);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-title {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: var(--space-sm);
}

.feature-description {
    color: var(--neutral-600);
    line-height: 1.7;
}

/* ===================================
   CTA SECTION
   =================================== */
.cta-section {
    padding: var(--space-4xl) 0;
    background: var(--neutral-50);
}

.cta-card {
    background: linear-gradient(135deg, #a5100d 0%, #c41210 100%);
    border-radius: var(--radius-2xl);
    padding: var(--space-3xl);
    color: white;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: var(--space-3xl);
    align-items: center;
    box-shadow: var(--shadow-2xl);
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

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

.cta-title {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    font-weight: 800;
    margin-bottom: var(--space-md);
}

.cta-description {
    font-size: var(--text-lg);
    margin-bottom: var(--space-xl);
    opacity: 0.95;
}

.cta-actions {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.cta-stats {
    display: flex;
    gap: var(--space-2xl);
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    font-weight: 800;
    margin-bottom: var(--space-xs);
}

.stat-label {
    font-size: var(--text-sm);
    opacity: 0.9;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--neutral-900);
    color: var(--neutral-300);
    padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-3xl);
    margin-bottom: var(--space-2xl);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 700;
    color: white;
    margin-bottom: var(--space-lg);
}

.footer-description {
    color: var(--neutral-400);
    line-height: 1.7;
}

.footer-title {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 700;
    color: white;
    margin-bottom: var(--space-lg);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.footer-links a {
    color: var(--neutral-400);
    transition: all var(--transition-base);
}

.footer-links a:hover {
    color: white;
    padding-left: var(--space-sm);
}

.footer-bottom {
    padding-top: var(--space-xl);
    border-top: 1px solid var(--neutral-800);
    text-align: center;
    color: var(--neutral-500);
}

/* ===================================
   MODAL SYSTEM
   =================================== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding: var(--space-lg);
    overflow-y: auto;
    animation: fadeIn var(--transition-base);
}

.modal.active {
    display: flex;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    animation: fadeIn var(--transition-base);
}

.modal-content {
    position: relative;
    z-index: 1;
    background: white;
    border-radius: var(--radius-2xl);
    padding: var(--space-2xl);
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-2xl);
    animation: slideUpModal var(--transition-slow);
}

@keyframes slideUpModal {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--neutral-200);
}

.modal-title {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 800;
    color: var(--neutral-900);
}

.modal-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--neutral-600);
    transition: all var(--transition-base);
}

.modal-close:hover {
    background: var(--neutral-100);
    color: var(--neutral-900);
    transform: rotate(90deg);
}

.modal-body {
    color: var(--neutral-700);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 1024px) {
    .cta-card {
        grid-template-columns: 1fr;
    }

    .cta-stats {
        justify-content: center;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .nav-links,
    .nav-actions {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero {
        padding: 140px 0 100px;
    }

    .search-form {
        flex-direction: column;
    }

    .search-divider {
        width: 100%;
        height: 1px;
    }

    .btn-search {
        width: 100%;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .cta-stats {
        flex-direction: column;
        gap: var(--space-xl);
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: var(--text-base);
    }

    .category-tags {
        justify-content: flex-start;
    }

    .cta-actions {
        flex-direction: column;
    }

    .cta-actions .btn {
        width: 100%;
    }

    /* Services Showcase Responsive */
    .service-categories-row {
        gap: var(--space-md);
    }

    .service-category-icon {
        width: 52px;
        height: 52px;
    }

    .service-category-label {
        font-size: 0.65rem;
    }

    .services-title {
        font-size: var(--text-2xl);
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: var(--space-lg);
    }

    .service-card-icon {
        width: 48px;
        height: 48px;
    }
}

/* ===================================
   ENQUIRY MODAL — Global Styles
   (used on all pages via dynamic injection in app.js)
   =================================== */

.enquiry-modal-content {
    max-width: 580px;
    padding: 0;
    overflow-y: auto;
    overflow-x: hidden;
}

.enquiry-modal-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 2rem 2rem 1.5rem;
    background: linear-gradient(135deg, #a5100d 0%, #c41210 100%);
    color: white;
    position: relative;
}

.enquiry-avatar {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    letter-spacing: 0.5px;
}

.enquiry-modal-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    margin: 0 0 0.25rem 0;
    line-height: 1.3;
}

.enquiry-modal-sub {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
}

.enquiry-modal-content .modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    z-index: 2;
}

.enquiry-modal-content .modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.enquiry-form {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    padding: 1.75rem 2rem 2rem;
}

.enquiry-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.enquiry-field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.enquiry-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #171717;
}

.enquiry-input {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid #e5e5e5;
    border-radius: 0.75rem;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    color: #171717;
    background: #fafafa;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    box-sizing: border-box;
    appearance: none;
    -webkit-appearance: none;
}

.enquiry-input:focus {
    outline: none;
    border-color: #a5100d;
    background: white;
    box-shadow: 0 0 0 3px rgba(165, 16, 13, 0.1);
}

.enquiry-input::placeholder { color: #a3a3a3; }

select.enquiry-input {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23737373' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.enquiry-textarea {
    resize: vertical;
    min-height: 100px;
    line-height: 1.5;
}

.enquiry-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.95rem 1.5rem;
    background: linear-gradient(135deg, #a5100d 0%, #c41210 100%);
    color: white;
    border: none;
    border-radius: 0.875rem;
    font-weight: 700;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.25rem;
    box-shadow: 0 4px 20px rgba(165, 16, 13, 0.25);
}

.enquiry-submit-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(165, 16, 13, 0.4);
}

.enquiry-submit-btn:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none;
}

.enquiry-response-note {
    text-align: center;
    font-size: 0.85rem;
    color: #737373;
    margin: 0.25rem 0 0;
}

@media (max-width: 540px) {
    .enquiry-modal-header { padding: 1.5rem; }
    .enquiry-avatar { width: 48px; height: 48px; min-width: 48px; font-size: 1.1rem; }
    .enquiry-modal-title { font-size: 1.2rem; }
    .enquiry-form { padding: 1.25rem 1.25rem 1.5rem; }
    .enquiry-form-row { grid-template-columns: 1fr; }
}