/* ==========================================================================
   SANTA CABS UK - PREMIUM LANDING PAGE STYLESHEET
   Author: Antigravity AI
   Colors: Brand Crimson Red (#C51315), Charcoal Black (#0F0F0F), Pure White (#FFFFFF)
   ========================================================================== */

/* 1. DESIGN SYSTEM & ROOT TOKENS */
:root {
    /* Colors */
    --color-primary: #C51315;
    --color-primary-light: #E31B1C;
    --color-primary-dark: #9A0E0F;
    --color-primary-rgb: 197, 19, 21;
    
    --color-secondary: #0F0F0F;
    --color-secondary-light: #1A1A1A;
    --color-secondary-dark: #070707;
    --color-secondary-rgb: 15, 15, 15;
    
    --color-neutral-dark: #242424;
    --color-neutral-light: #F8F9FA;
    --color-neutral-border: #E5E7EB;
    --color-text-main: #374151;
    --color-text-muted: #6B7280;
    --color-text-light: #9CA3AF;
    
    --color-whatsapp: #25D366;
    --color-whatsapp-dark: #128C7E;
    
    --color-accent: #FFB800; /* Star Rating / Warning Gold */
    --color-accent-rgb: 255, 184, 0;

    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;

    /* Layout & Shadows */
    --container-width: 1200px;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --border-radius-round: 50px;
    
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.12), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-glow: 0 0 20px rgba(197, 19, 21, 0.35);
    --shadow-glow-green: 0 0 20px rgba(37, 211, 102, 0.35);
    
    /* Transitions */
    --transition-fast: 0.20s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.50s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 2. BASE RESET & INITIALIZATION */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-main);
    background-color: #FFFFFF;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-secondary);
    line-height: 1.25;
}

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

/* Utility Containers */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

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

/* 3. BUTTONS & UI ACTIONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: var(--border-radius-round);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    gap: 10px;
    cursor: pointer;
    transition: var(--transition-normal);
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
    color: #FFFFFF;
    box-shadow: 0 4px 14px rgba(197, 19, 21, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-secondary);
    border-color: var(--color-secondary);
}

.btn-secondary:hover {
    background-color: var(--color-secondary);
    color: #FFFFFF;
    transform: translateY(-2px);
}

.btn-whatsapp {
    background-color: var(--color-whatsapp);
    color: #FFFFFF;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background-color: var(--color-whatsapp-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-green);
}

.btn-light {
    background-color: #FFFFFF;
    color: var(--color-secondary);
    box-shadow: var(--shadow-md);
}

.btn-light:hover {
    background-color: var(--color-neutral-light);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn-outline:hover {
    background-color: var(--color-primary);
    color: #FFFFFF;
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 16px;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 14px;
}

.btn-block {
    display: flex;
    width: 100%;
}

.w-full {
    width: 100%;
}

.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.text-center { text-align: center; }

/* 4. TOP ANNOUNCEMENT BAR */
.top-bar {
    background-color: var(--color-secondary-dark);
    color: #FFFFFF;
    font-size: 13px;
    font-family: var(--font-heading);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.divider {
    color: rgba(255, 255, 255, 0.2);
}

.status-pulse {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #A7F3D0; /* Soft green */
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #10B981;
    border-radius: 50%;
    display: inline-block;
    animation: pulse 1.8s infinite;
}

.top-contact {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-link {
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-link:hover {
    color: var(--color-primary-light);
}

.whatsapp-top {
    color: var(--color-whatsapp);
    font-weight: 600;
}

.whatsapp-top:hover {
    color: #FFFFFF;
}

/* 5. NAVIGATION HEADER (GLASSMORPHISM) */
.main-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: var(--transition-normal);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 110px;
}

.logo-wrapper {
    display: flex;
    align-items: center;
}

.header-logo {
    height: 90px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    color: var(--color-secondary);
    line-height: 1.1;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.logo-subtitle {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Nav Links */
.desktop-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    color: var(--color-text-main);
    position: relative;
    padding: 8px 0;
}

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

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

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

.header-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-nav-phone {
    padding: 10px 20px;
    font-size: 14px;
}

/* Mobile Toggle Hamburger */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 101;
}

.mobile-toggle .bar {
    width: 100%;
    height: 3px;
    background-color: var(--color-secondary);
    border-radius: 2px;
    transition: var(--transition-normal);
}

/* Hamburger Active Animation */
.mobile-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* 6. MOBILE NAVIGATION OVERLAY */
.mobile-nav-overlay {
    position: fixed;
    top: 145px; /* Sits just below the top bar + header */
    left: 0;
    width: 100%;
    height: calc(100vh - 145px);
    background-color: #FFFFFF;
    z-index: 99;
    display: none;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    box-shadow: var(--shadow-lg);
    overflow-y: auto;
}

.mobile-nav-overlay.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav-content {
    display: flex;
    flex-direction: column;
    padding: 40px 24px;
    gap: 24px;
}

.mobile-nav-link {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--color-secondary);
    border-bottom: 1px solid var(--color-neutral-border);
    padding-bottom: 12px;
}

.mobile-nav-link:hover {
    color: var(--color-primary);
    padding-left: 8px;
}

.mobile-nav-cta {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 20px;
}

/* 7. HERO SECTION (IMMEDIATE WOW FACTOR) */
.hero-section {
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1549399542-7e3f8b79c341?q=80&w=1600&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 0 120px;
    color: #FFFFFF;
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.95) 0%, rgba(15, 15, 15, 0.85) 50%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

/* Left Hero Content */
.badge-premium {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(197, 19, 21, 0.15);
    color: var(--color-primary-light);
    border: 1px solid rgba(197, 19, 21, 0.3);
    padding: 8px 18px;
    border-radius: var(--border-radius-round);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(38px, 5vw, 64px);
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 24px;
    line-height: 1.15;
    letter-spacing: -1.5px;
}

.text-gradient {
    background: linear-gradient(135deg, #FFF 30%, var(--color-primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 48px;
}

.hero-badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: var(--border-radius-sm);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.95);
    transition: var(--transition-normal);
}

.hero-badge-item i {
    color: var(--color-primary-light);
    font-size: 16px;
}

.hero-badge-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Right Floating Booking Card */
.hero-widget {
    perspective: 1000px;
}

.booking-card {
    background: rgba(255, 255, 255, 0.96);
    border-radius: var(--border-radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-lg), 0 0 40px rgba(0,0,0,0.3);
    color: var(--color-secondary);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transform: translateZ(0);
    transition: transform var(--transition-slow);
}

.booking-card-header {
    margin-bottom: 24px;
    border-bottom: 1px solid var(--color-neutral-border);
    padding-bottom: 20px;
}

.booking-card-header h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 4px;
}

.booking-card-header p {
    font-size: 13px;
    color: var(--color-text-muted);
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 13px;
    color: var(--color-secondary-light);
    display: flex;
    align-items: center;
    gap: 6px;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    padding: 12px 16px;
    border: 1.5px solid var(--color-neutral-border);
    border-radius: var(--border-radius-sm);
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--color-secondary);
    background-color: #FFFFFF;
    outline: none;
    transition: var(--transition-fast);
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    border-color: var(--color-primary-light);
    box-shadow: 0 0 0 3px rgba(197, 19, 21, 0.1);
}

.form-note {
    font-size: 11px;
    color: var(--color-text-muted);
    text-align: center;
    margin-top: 5px;
}

.form-note i {
    color: var(--color-primary);
}

/* 8. SERVICES SECTION */
.services-section {
    padding: 120px 0;
    background-color: var(--color-neutral-light);
    position: relative;
}

.section-header {
    max-width: 700px;
    margin: 0 auto 80px;
}

.section-tagline {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13px;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.section-accent-line {
    width: 60px;
    height: 4px;
    background-color: var(--color-primary);
    margin: 0 auto 24px;
    border-radius: 2px;
}

.section-accent-line.align-left {
    margin-left: 0;
}

.section-desc {
    font-size: 16px;
    color: var(--color-text-muted);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 36px;
}

.service-card {
    background-color: #FFFFFF;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-image-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.service-card:hover .service-img {
    transform: scale(1.1);
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 14px;
    border-radius: var(--border-radius-round);
    box-shadow: var(--shadow-sm);
}

.service-info {
    padding: 32px;
    position: relative;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-icon-box {
    position: absolute;
    top: -30px;
    left: 32px;
    width: 60px;
    height: 60px;
    background-color: #FFFFFF;
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--color-primary);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition-normal);
}

.service-card:hover .service-icon-box {
    background-color: var(--color-primary);
    color: #FFFFFF;
    transform: rotateY(360deg);
}

.service-card-title {
    font-size: 22px;
    font-weight: 700;
    margin: 10px 0 14px;
}

.service-card-text {
    font-size: 14.5px;
    color: var(--color-text-muted);
    margin-bottom: 24px;
    flex-grow: 1;
}

.service-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 30px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--color-secondary);
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* 9. WHY CHOOSE US SECTION (PREMIUM BOLD STYLE) */
.why-section {
    padding: 120px 0;
    background-color: #FFFFFF;
}

.why-wrapper {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: center;
}

/* Left Visual Stats Box */
.why-visual-card {
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1563720223185-11003d516935?q=80&w=800&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    padding: 60px;
    border-radius: var(--border-radius-lg);
    height: 520px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.visual-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(15, 15, 15, 0.95) 0%, rgba(15, 15, 15, 0.7) 60%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
}

.visual-card-content {
    position: relative;
    z-index: 2;
    color: #FFFFFF;
}

.badge-accent {
    background-color: var(--color-accent);
    color: var(--color-secondary);
    padding: 6px 16px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 11px;
    border-radius: var(--border-radius-round);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 16px;
}

.why-visual-card h2 {
    color: #FFFFFF;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 16px;
}

.why-visual-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    margin-bottom: 30px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 24px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    color: var(--color-primary-light);
}

.stat-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 4px;
}

/* Right Reasons List */
.why-reasons .section-header {
    margin-bottom: 40px;
}

.reasons-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.reason-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.reason-icon {
    width: 54px;
    height: 54px;
    background-color: rgba(197, 19, 21, 0.06);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 20px;
    flex-shrink: 0;
    transition: var(--transition-normal);
    border: 1px solid rgba(197, 19, 21, 0.1);
}

.reason-item:hover .reason-icon {
    background-color: var(--color-primary);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(197, 19, 21, 0.2);
}

.reason-info h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.reason-info p {
    font-size: 14.5px;
    color: var(--color-text-muted);
}

/* 10. AREAS COVERED & MAP */
.coverage-section {
    padding: 120px 0;
    background-color: var(--color-neutral-light);
}

.coverage-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: stretch;
}

.coverage-list-box {
    background-color: #FFFFFF;
    border-radius: var(--border-radius-md);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
}

.coverage-list-box h3 {
    font-size: 24px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.list-desc {
    color: var(--color-text-muted);
    font-size: 14.5px;
    margin-bottom: 24px;
}

.area-badges-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.area-badge {
    background-color: var(--color-neutral-light);
    border: 1px solid var(--color-neutral-border);
    color: var(--color-secondary);
    padding: 10px 18px;
    border-radius: var(--border-radius-round);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 13.5px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-normal);
}

.area-badge i {
    color: var(--color-primary-light);
    font-size: 11px;
}

.area-badge:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: #FFFFFF;
    transform: scale(1.05);
}

.area-badge:hover i {
    color: #FFFFFF;
}

.coverage-card-footer {
    border-top: 1px solid var(--color-neutral-border);
    padding-top: 24px;
    margin-top: auto;
}

.coverage-card-footer h4 {
    font-size: 16px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.coverage-card-footer p {
    font-size: 13px;
    color: var(--color-text-muted);
}

/* Map Frame */
.coverage-map-box {
    background-color: #FFFFFF;
    border-radius: var(--border-radius-md);
    padding: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
}

.map-container-wrapper {
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    flex-grow: 1;
    min-height: 350px;
    border: 1px solid var(--color-neutral-border);
}

.map-info {
    padding: 16px 8px 4px;
    font-size: 14px;
    color: var(--color-text-main);
}

.map-info i {
    color: var(--color-primary);
    margin-right: 4px;
}

/* 11. TESTIMONIALS SLIDER SECTION */
.testimonials-section {
    padding: 120px 0;
    background-color: #FFFFFF;
    overflow: hidden;
}

.testimonials-slider-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding: 20px 0;
}

.testimonials-slider {
    display: flex;
    transition: transform var(--transition-slow);
    width: 100%;
}

.testimonial-slide {
    min-width: 100%;
    opacity: 0;
    transform: scale(0.96);
    transition: opacity 0.5s ease, transform 0.5s ease;
    display: none;
}

.testimonial-slide.active {
    display: block;
    opacity: 1;
    transform: scale(1);
}

.testimonial-card {
    background-color: var(--color-neutral-light);
    border-radius: var(--border-radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-neutral-border);
    position: relative;
    text-align: center;
}

.quote-icon {
    font-size: 40px;
    color: rgba(197, 19, 21, 0.15);
    margin-bottom: 12px;
}

.rating {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 24px;
}

.rating i {
    color: var(--color-accent);
    font-size: 16px;
}

.testimonial-text {
    font-size: clamp(16px, 2.5vw, 19px);
    font-weight: 500;
    line-height: 1.7;
    color: var(--color-secondary-light);
    margin-bottom: 32px;
    font-style: italic;
}

.testimonial-user {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.user-avatar {
    width: 50px;
    height: 50px;
    background-color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-weight: 700;
    font-family: var(--font-heading);
    box-shadow: var(--shadow-sm);
}

.avatar-initials {
    font-size: 16px;
    letter-spacing: 0.5px;
}

.user-details {
    text-align: left;
}

.user-name {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 2px;
}

.user-location {
    font-size: 12.5px;
    color: var(--color-text-muted);
}

/* Slider Controls */
.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 40px;
}

.control-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #FFFFFF;
    border: 1.5px solid var(--color-neutral-border);
    color: var(--color-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.control-btn:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: #FFFFFF;
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--color-neutral-border);
    cursor: pointer;
    transition: var(--transition-fast);
}

.dot.active {
    width: 24px;
    border-radius: 4px;
    background-color: var(--color-primary);
}

/* 12. CALL TO ACTION BANNER */
.banner-cta {
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1549399542-7e3f8b79c341?q=80&w=1600&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 80px 0;
    color: #FFFFFF;
    text-align: center;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(197, 19, 21, 0.90); /* Color matching primary brand color */
    z-index: 1;
}

.banner-container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.banner-container h2 {
    color: #FFFFFF;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.banner-container p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 36px;
}

.banner-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* 13. CONTACT & FORM SECTION */
.contact-section {
    padding: 120px 0;
    background-color: #FFFFFF;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
}

/* Left Contact Card Details */
.contact-info-card {
    background-color: var(--color-neutral-light);
    border-radius: var(--border-radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-neutral-border);
}

.contact-info-card h2 {
    font-size: 32px;
    font-weight: 800;
    margin: 16px 0 12px;
    letter-spacing: -0.5px;
}

.card-intro {
    font-size: 14.5px;
    color: var(--color-text-muted);
    margin-bottom: 36px;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.contact-detail-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.detail-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--border-radius-sm);
    background-color: #FFFFFF;
    border: 1px solid var(--color-neutral-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 16px;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.detail-text h5 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
}

.detail-text p, .detail-text a {
    font-size: 14px;
    color: var(--color-text-main);
    font-weight: 500;
}

.detail-text a:hover {
    color: var(--color-primary-light);
}

.placeholder-tag {
    font-size: 10px;
    background-color: #E5E7EB;
    color: var(--color-text-muted);
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: bold;
    margin-left: 6px;
}

.contact-socials h5 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #FFFFFF;
    border: 1px solid var(--color-neutral-border);
    color: var(--color-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.social-icons a:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: #FFFFFF;
    transform: translateY(-2px);
}

/* Right Interactive Contact Form Card */
.contact-form-card {
    background-color: #FFFFFF;
    border-radius: var(--border-radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-neutral-border);
}

.contact-form-card h3 {
    font-size: 24px;
    margin-bottom: 6px;
}

.contact-form-card p {
    font-size: 14px;
    color: var(--color-text-muted);
    margin-bottom: 30px;
}

.contact-form-inputs {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* 14. FOOTER DESIGN */
.site-footer {
    background-color: var(--color-secondary);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 0;
    font-size: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-about {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Logo protected backdrop for black text safety */
.logo-backdrop {
    background-color: #FFFFFF;
    padding: 4px 10px;
    border-radius: var(--border-radius-sm);
    display: inline-block;
}

.footer-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.footer-brand-title {
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 800;
    line-height: 1;
}

.footer-brand-subtitle {
    color: var(--color-primary-light);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-desc {
    font-size: 13.5px;
    line-height: 1.6;
}

.footer-col-title {
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 8px;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background-color: var(--color-primary);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--color-primary-light);
    transform: translateX(4px);
}

.footer-contact-details {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact-details li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.footer-contact-details i {
    color: var(--color-primary-light);
    font-size: 14px;
    margin-top: 4px;
}

.footer-contact-details a {
    color: #FFFFFF;
    font-weight: 600;
}

.footer-contact-details a:hover {
    color: var(--color-primary-light);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 0;
    background-color: var(--color-secondary-dark);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.copyright {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-credit {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.6);
}

.credit-link {
    color: rgba(255, 255, 255, 0.75);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.3);
    transition: all 0.25s ease;
}

.credit-link:hover {
    color: var(--color-primary-light);
    border-bottom: 1px solid var(--color-primary-light);
}

/* 15. TOAST POPUP (INTERACTIVE RESPONSIVE FEEDBACK) */
.toast-popup {
    position: fixed;
    bottom: 30px;
    right: -400px;
    background-color: #FFFFFF;
    box-shadow: var(--shadow-lg), 0 0 30px rgba(0,0,0,0.15);
    border-radius: var(--border-radius-md);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 1000;
    border-left: 5px solid var(--color-whatsapp);
    transition: right 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    max-width: 360px;
}

.toast-popup.active {
    right: 30px;
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 14px;
}

.toast-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.toast-icon.success {
    background-color: rgba(37, 211, 102, 0.1);
    color: var(--color-whatsapp);
}

.toast-text h5 {
    font-size: 14.5px;
    font-weight: 700;
    margin-bottom: 2px;
}

.toast-text p {
    font-size: 12px;
    color: var(--color-text-muted);
}

.toast-close {
    background: transparent;
    border: none;
    font-size: 18px;
    color: var(--color-text-light);
    cursor: pointer;
}

.toast-close:hover {
    color: var(--color-secondary);
}

/* 16. BACK TO TOP BUTTON */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--color-primary);
    color: #FFFFFF;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 98;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

/* 17. SCROLL REVEAL ANIMATIONS */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in-up.revealed {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }

/* 18. KEYFRAMES & MICRO-ANIMATIONS */
@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

/* 19. RESPONSIVE DESIGN MEDIA QUERIES */

/* Large screens and desktops (below 1200px) */
@media (max-width: 1200px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-container {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 30px;
    }
    
    .why-wrapper {
        gap: 40px;
    }
}

/* Tablets and medium screens (below 992px) */
@media (max-width: 992px) {
    .header-container {
        height: 90px;
    }

    .header-logo {
        height: 72px;
    }

    .desktop-nav {
        display: none;
    }

    .header-cta .btn-nav-phone {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .hero-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-badges {
        justify-content: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-widget {
        max-width: 550px;
        width: 100%;
        margin: 0 auto;
    }

    .why-wrapper {
        grid-template-columns: 1fr;
    }

    .why-visual-card {
        height: 400px;
    }

    .coverage-wrapper {
        grid-template-columns: 1fr;
    }
    
    .map-container-wrapper {
        min-height: 300px;
    }

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

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

/* Mobile Devices (below 768px) */
@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .main-header {
        top: 0;
    }

    .mobile-nav-overlay {
        top: 90px;
        height: calc(100vh - 90px);
    }

    .hero-section {
        padding: 50px 0 80px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .booking-card {
        padding: 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

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

    .service-card {
        max-width: 450px;
        margin: 0 auto;
        width: 100%;
    }

    .testimonial-card {
        padding: 30px 20px;
    }

    .testimonial-text {
        font-size: 16px;
    }

    .contact-info-card, .contact-form-card {
        padding: 30px 20px;
    }

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

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

/* Small screen optimization */
@media (max-width: 480px) {
    .logo-wrapper {
        padding: 0;
    }
    
    .header-logo {
        height: 55px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }
}
