/**
 * CR.Logistics Main Stylesheet
 * 
 * Professional cream and brown theme for courier booking platform
 * 
 * Table of Contents:
 * 1. Global Styles & Variables
 * 2. Navigation
 * 3. Footer
 * 4. Hero Section
 * 5. Service Cards
 * 6. About Page
 * 7. Contact Page
 * 8. Booking Form
 * 9. Legal Pages
 * 10. FAQ & Testimonials
 * 11. Modals
 * 12. Forms & Inputs
 * 13. Buttons
 * 14. Utilities
 * 15. Responsive Design
 */

/* ========================================
   1. GLOBAL STYLES & VARIABLES
   ======================================== */

/* Cross-browser Reset & Compatibility */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

/* Smooth scrolling for all browsers */
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

/* Accessibility - Skip to main content link */
.skip-link {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--brown-dark);
    color: white;
    padding: 12px 24px;
    border-radius: 0 0 8px 8px;
    z-index: 10000;
    text-decoration: none;
    font-weight: 600;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 0;
}

/* Color palette - Professional cream and brown theme */
:root {
    --brown-dark: #1a0f0a;
    --brown-medium: #3d2817;
    --brown-light: #6b4423;
    --cream: #faf8f5;
    --cream-dark: #f0ebe3;
    --black: #0a0a0a;
    --accent: #c9a060;        /* Gold accent color */
    --accent-light: #d4b87a;
    --white: #ffffff;
    --gradient-gold: linear-gradient(135deg, #c9a060 0%, #e8c97a 50%, #c9a060 100%);
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--black);
    line-height: 1.7;
    background: linear-gradient(135deg, #f5efe8 0%, #ebe3d5 100%);
    position: relative;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Subtle texture overlay - currently disabled */
body::before {
    display: none;
}

/* Container widths */
.nav-container,
.page-container,
.page-container-narrow,
.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.page-container-narrow {
    max-width: 900px;
}

/* ========================================
   2. NAVIGATION
   ======================================== */

/* Sticky navigation bar with brown background */
.navbar {
    background: #2a1810;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 0;
}

.nav-brand {
    margin-left: -120px;
}

/* Brand/logo styling */
.nav-brand h1 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--accent);
    font-weight: 700;
    letter-spacing: 1px;
}

/* Navigation menu items */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.3rem;
    align-items: center;
}

.nav-menu a {
    color: var(--cream);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    padding: 0.7rem 1.3rem;
    border-radius: 8px;
    letter-spacing: 0.3px;
}

/* Hover and active states for navigation links */
.nav-menu a:not(.btn-nav):hover,
.nav-menu a.active {
    color: var(--accent);
    background: rgba(201, 160, 96, 0.1);
}

/* Special styling for CTA button in navigation */
.btn-nav {
    border: 2px solid var(--accent);
    margin-left: 0.5rem;
}

.btn-login:hover {
    background: rgba(201, 160, 96, 0.15);
}

.btn-signup {
    background: var(--accent);
    color: var(--brown-dark) !important;
    font-weight: 600;
}

.btn-signup:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(201, 160, 96, 0.4);
}

/* Enhanced Navigation Styles */
.btn-primary-nav {
    background: var(--accent);
    color: var(--brown-dark) !important;
    padding: 0.7rem 1.5rem !important;
    border-radius: 8px;
    border: none !important;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary-nav:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(201, 160, 96, 0.4);
}

/* Enhanced Brand Styling */
.nav-brand a {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo {
    width: 38px;
    height: 38px;
    object-fit: contain;
    border-radius: 50%;
    position: relative;
    top: -6px;
    left: -7px;
}

.brand-text {
    display: flex;
    flex-direction: column;
    margin-left: 29px;
}

.nav-brand h1 {
    margin: 0;
    line-height: 1.2;
}

.brand-cool {
    color: var(--cream);
    font-weight: 700;
}

.brand-logistics {
    color: var(--accent);
    font-weight: 700;
}

.brand-tagline {
    font-size: 0.75rem;
    color: var(--accent-light);
    margin: 0;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Navigation Divider */
.nav-divider {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    margin: 0 0.5rem;
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--brown-medium);
    min-width: 180px;
    border-radius: 8px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

.nav-dropdown.active .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 0.8rem 1.5rem !important;
    color: var(--cream);
    text-decoration: none;
    transition: all 0.3s ease;
}

.dropdown-menu a:hover {
    background: rgba(201, 160, 96, 0.2);
    color: var(--accent);
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--cream);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Responsive Navigation */
@media (max-width: 1200px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 68px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 68px);
        background: var(--brown-medium);
        flex-direction: column;
        padding: 2rem 0;
        gap: 0;
        transition: right 0.3s ease;
        overflow-y: auto;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu a {
        width: 100%;
        padding: 1rem 2rem !important;
        border-radius: 0;
    }
    
    .nav-divider {
        width: 100%;
        height: 1px;
        margin: 0.5rem 0;
    }
    
    .btn-primary-nav {
        margin: 0.5rem 2rem !important;
        width: calc(100% - 4rem) !important;
        text-align: center;
    }
    
    .dropdown-menu {
        position: static;
        box-shadow: none;
        background: rgba(0, 0, 0, 0.2);
        margin: 0;
        border-radius: 0;
    }
    
    .nav-logo {
        width: 32px;
        height: 32px;
    }
    
    .nav-brand a {
        gap: 8px;
    }
}

/* Hero Home Page - Clean Layout */
.hero-home {
    min-height: auto;
    background: linear-gradient(135deg, #faf8f5 0%, #f0ebe3 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0 30px 0;
    position: relative;
}

.hero-home::before {
    display: none;
}

.hero-content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text-content {
    max-width: 600px;
}

.hero-image-wrapper {
    position: relative;
    width: 90%;
    background: linear-gradient(135deg, #f5efe8 0%, #ffffff 100%);
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(107, 68, 35, 0.25);
    border: 4px solid #c9a060;
    margin-top: 0;
    margin-left: auto;
    margin-right: 0;
}

.hero-delivery-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: center;
    border-radius: 16px;
    box-shadow: 0 10px 35px rgba(107, 68, 35, 0.3);
    display: block;
    border: 2px solid rgba(201, 160, 96, 0.3);
}

.hero-label {
    display: inline-block;
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    padding: 0.5rem 1rem;
    background: rgba(201, 160, 96, 0.12);
    border-radius: 30px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    color: #1a0f0a;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -1px;
}

.hero-desc {
    font-size: 1.1rem;
    color: #3d2817;
    margin-bottom: 1.5rem;
    font-weight: 400;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-stats-row {
    display: flex;
    gap: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(201, 160, 96, 0.3);
    animation: slideUp 0.8s ease 0.5s both;
    justify-content: flex-start;
}

.stat-box {
    text-align: center;
    position: relative;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #2c4a6e 0%, #1a365d 100%);
    border-radius: 50%;
    border: 4px solid #c9a060;
    box-shadow: 
        0 6px 20px rgba(26, 54, 93, 0.35),
        inset 0 1px 8px rgba(255, 255, 255, 0.1);
}

.stat-box::before {
    display: none;
}

.stat-box::after {
    display: none;
}

.stat-box h3 {
    font-size: 1.4rem;
    color: #c9a060;
    font-weight: 700;
    margin-bottom: 0.1rem;
    line-height: 1;
    background: none;
    -webkit-text-fill-color: #c9a060;
}

.stat-box p {
    font-size: 0.5rem;
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    line-height: 1.2;
    padding: 0 0.3rem;
}

.btn-primary,
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2.2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #1a0a05 0%, #3d2516 50%, #2a1409 100%);
    color: var(--cream);
    border: none;
    box-shadow: 0 4px 15px rgba(26, 10, 5, 0.4), 0 2px 4px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #2a1409 0%, #c9a060 50%, #3d2516 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(26, 10, 5, 0.5), 0 4px 8px rgba(201, 160, 96, 0.3);
}

.btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(26, 10, 5, 0.4);
}

.btn-outline {
    background: linear-gradient(135deg, #ffffff 0%, #f8f6f3 100%);
    color: var(--brown-dark);
    border: 2px solid rgba(26, 10, 5, 0.15);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.btn-outline:hover {
    background: linear-gradient(135deg, #1a0a05 0%, #3d2516 100%);
    color: var(--cream);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(26, 10, 5, 0.35), 0 4px 8px rgba(0, 0, 0, 0.15);
}

.btn-outline:active {
    transform: translateY(-1px);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2.2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary-large {
    padding: 1.1rem 2.5rem;
}

.btn-secondary {
    background: linear-gradient(135deg, #ffffff 0%, #f8f6f3 100%);
    color: var(--brown-dark);
    border: 2px solid rgba(26, 10, 5, 0.15);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #1a0a05 0%, #3d2516 100%);
    color: var(--cream);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(26, 10, 5, 0.35);
}

/* Page Sections */
.page-section {
    min-height: calc(100vh - 76px);
    padding: 80px 0;
    background: linear-gradient(135deg, #faf8f5 0%, #f0ebe3 100%);
}

.page-header {
    text-align: center;
    margin-bottom: 60px;
}

.page-label {
    display: inline-block;
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    padding: 0.5rem 1.2rem;
    background: rgba(201, 160, 96, 0.12);
    border-radius: 30px;
}

.page-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--brown-dark);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.page-subtitle {
    font-size: 1.15rem;
    color: var(--brown-medium);
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
    line-height: 1.8;
}

/* Services Grid */
.services-modern-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
}

.service-modern-card {
    background: linear-gradient(135deg, #faf8f5 0%, #f5f0e8 100%);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(42, 24, 16, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.service-modern-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--brown-medium), var(--accent));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-modern-card:hover::before {
    opacity: 1;
}

.service-modern-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 60px rgba(42, 24, 16, 0.25);
}

.service-image {
    position: relative;
    overflow: hidden;
}

.service-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, rgba(255, 255, 255, 1), transparent);
}

.service-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.5s ease;
    display: block;
}

.service-modern-card:hover .service-image img {
    transform: scale(1.08);
}

.service-content {
    padding: 2.5rem;
    position: relative;
}

/* Service Icon Wrapper - Professional styling */
.service-icon-wrapper {
    width: 100px;
    height: 100px;
    background: var(--beige-light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

/* SVG Icons for Services - Clean, professional look */
.service-svg-icon {
    width: 56px;
    height: 56px;
    stroke: var(--brown-dark);
    stroke-width: 1.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-icon-modern {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    display: inline-block;
    color: var(--accent);
    font-weight: 300;
    opacity: 0.9;
}

/* SVG Service Icons - Legacy support */
.service-icon-modern svg {
    width: 56px;
    height: 56px;
    stroke: var(--accent);
    stroke-width: 1.5;
    fill: none;
}

.service-content h3 {
    font-size: 1.8rem;
    color: var(--brown-dark);
    margin-bottom: 1rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.service-content p {
    color: var(--brown-medium);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-price {
    font-size: 2rem;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.price-breakdown {
    list-style: none;
    margin-bottom: 2rem;
    padding: 0;
}

.price-breakdown li {
    color: var(--brown-medium);
    padding: 0.5rem 0;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(107, 68, 35, 0.1);
}

.price-breakdown li:last-child {
    border-bottom: none;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    color: var(--brown-medium);
    padding: 0.6rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.service-features li:hover {
    color: var(--brown-dark);
    padding-left: 2.3rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
    width: 24px;
    height: 24px;
    background: rgba(201, 160, 96, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.btn-service {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    background: linear-gradient(135deg, var(--brown-dark), var(--brown-medium));
    color: var(--cream);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-service::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-service:hover::before {
    left: 100%;
}

.btn-service:hover {
    background: linear-gradient(135deg, var(--accent), var(--brown-medium));
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(201, 160, 96, 0.4);
}

/* Corporate CTA Section */
.corporate-cta-section {
    margin-top: 5rem;
    padding: 4rem;
    background: linear-gradient(135deg, var(--brown-dark) 0%, var(--brown-medium) 100%);
    border-radius: 20px;
    text-align: center;
    color: var(--cream);
    box-shadow: 0 15px 50px rgba(42, 24, 16, 0.3);
}

.corporate-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
    color: var(--cream);
}

.corporate-cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    color: rgba(250, 248, 245, 0.9);
}

.corporate-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.benefit-item strong {
    font-size: 1.1rem;
    color: var(--accent);
    font-weight: 600;
}

.benefit-item span {
    font-size: 0.95rem;
    color: rgba(250, 248, 245, 0.8);
}

/* Why Choose Us Section */
.why-choose-section {
    margin-top: 5rem;
    padding: 3rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.feature-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(42, 24, 16, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(42, 24, 16, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

.feature-card h3 {
    font-size: 1.4rem;
    color: var(--brown-dark);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.feature-card p {
    color: var(--brown-medium);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Comparison Section */
.comparison-section {
    margin-top: 5rem;
    padding: 3rem 0;
}

.comparison-table {
    margin-top: 3rem;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(42, 24, 16, 0.1);
}

.comparison-row {
    display: grid;
    grid-template-columns: 1.5fr 2fr 1fr 1fr;
    gap: 1rem;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(107, 68, 35, 0.1);
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row.header-row {
    background: linear-gradient(135deg, var(--brown-dark), var(--brown-medium));
    color: var(--cream);
    font-weight: 600;
}

.comparison-row.header-row .comparison-cell {
    color: var(--cream);
}

.comparison-cell {
    color: var(--brown-medium);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.comparison-cell strong {
    color: var(--brown-dark);
}

/* Testimonials Section */
.testimonials-section {
    margin-top: 5rem;
    padding: 3rem 0;
    background: linear-gradient(135deg, #f5efe8 0%, #ebe3d5 100%);
    border-radius: 20px;
    padding: 4rem 3rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(42, 24, 16, 0.1);
    position: relative;
}

.testimonial-stars {
    color: var(--accent);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    color: var(--brown-medium);
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.testimonial-author strong {
    color: var(--brown-dark);
    font-size: 1.1rem;
}

.testimonial-author span {
    color: var(--accent);
    font-size: 0.9rem;
}

.testimonial-cta {
    margin-top: 5rem;
    padding: 4rem;
    background: linear-gradient(135deg, var(--brown-dark) 0%, var(--brown-medium) 100%);
    border-radius: 20px;
    text-align: center;
    color: var(--cream);
}

.testimonial-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.testimonial-cta p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.btn-outline {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--brown-dark);
    border: 2px solid var(--brown-dark);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--brown-dark);
    color: var(--cream);
}

/* FAQ Section */
.faq-section {
    margin-top: 5rem;
    padding: 3rem 0;
}

.faq-container {
    max-width: 900px;
    margin: 3rem auto 0;
}

.faq-item {
    background: white;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(42, 24, 16, 0.08);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(42, 24, 16, 0.15);
}

.faq-question {
    color: var(--brown-dark);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.faq-answer {
    color: var(--brown-medium);
    line-height: 1.8;
    font-size: 1rem;
}

.faq-cta {
    margin-top: 5rem;
    padding: 4rem;
    background: linear-gradient(135deg, var(--brown-dark) 0%, var(--brown-medium) 100%);
    border-radius: 20px;
    text-align: center;
    color: var(--cream);
}

.faq-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.faq-cta p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

/* Contact CTA */
.contact-cta {
    margin-top: 5rem;
    padding: 4rem;
    background: linear-gradient(135deg, var(--accent) 0%, var(--brown-light) 100%);
    border-radius: 20px;
    text-align: center;
    color: var(--cream);
}

.contact-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.contact-cta > p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn-outline-large {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--cream);
    border: 2px solid var(--cream);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-outline-large:hover {
    background: var(--cream);
    color: var(--brown-dark);
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.contact-method {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.contact-icon {
    display: none;
}


.contact-method strong {
    font-size: 1.1rem;
    color: var(--cream);
}

.contact-method a {
    color: var(--cream);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contact-method a:hover {
    opacity: 0.8;
}

.contact-method span {
    color: rgba(250, 248, 245, 0.9);
}

/* Legal Document Pages */
.legal-document {
    max-width: 1000px;
    margin: 0 auto;
}

.document-date {
    font-style: italic;
    color: var(--accent);
    margin-top: 0.5rem;
}

.legal-content {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(42, 24, 16, 0.1);
    margin-top: 3rem;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--brown-medium);
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--accent);
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    color: var(--brown-dark);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
    padding-top: 1rem;
}

.legal-section h3 {
    color: var(--brown-medium);
    font-size: 1.3rem;
    margin: 1.5rem 0 1rem 0;
    font-weight: 600;
}

.legal-section p {
    color: var(--brown-medium);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-section ul {
    list-style: none;
    margin: 1rem 0 1rem 1.5rem;
}

.legal-section ul li {
    color: var(--brown-medium);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.7;
}

.legal-section ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-size: 1.5rem;
    line-height: 1.3;
}

.legal-section strong {
    color: var(--brown-dark);
    font-weight: 600;
}

.legal-section a {
    color: var(--accent);
    text-decoration: underline;
}

.legal-section a:hover {
    color: var(--brown-dark);
}

.legal-section.acknowledgment {
    background: linear-gradient(135deg, #f5efe8 0%, #ebe3d5 100%);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 3rem;
}

.contact-info {
    background: #faf8f5;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
    border-left: 4px solid var(--accent);
}

.contact-info p {
    margin: 0;
}

/* Cancellation Policy Specific Styles */
.cancellation-tier {
    margin: 2rem 0;
    padding: 2rem;
    background: #faf8f5;
    border-radius: 12px;
    border-left: 4px solid var(--accent);
}

.fee-box {
    display: inline-block;
    padding: 1.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    margin: 1rem 0;
    min-width: 200px;
}

.fee-box.critical {
    background: linear-gradient(135deg, #d32f2f 0%, #c62828 100%);
    color: white;
}

.fee-box.warning {
    background: linear-gradient(135deg, #f57c00 0%, #ef6c00 100%);
    color: white;
}

.fee-box.success {
    background: linear-gradient(135deg, #388e3c 0%, #2e7d32 100%);
    color: white;
}

.fee-amount {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.3rem;
}

.fee-description {
    font-size: 1rem;
    opacity: 0.9;
}

.legal-footer {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
}

/* Quote Form Modern */
.quote-form-modern {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.98);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    border: 2px solid var(--accent);
    position: relative;
    overflow: hidden;
}

.quote-form-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--brown-dark), var(--accent), var(--brown-dark));
}

.form-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(92, 64, 51, 0.15);
}

.form-section:last-of-type {
    border-bottom: none;
}

.form-section-title {
    font-size: 1.3rem;
    color: var(--brown-dark);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--brown-dark);
    font-weight: 600;
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid rgba(139, 111, 71, 0.25);
    border-radius: 10px;
    font-size: 1rem;
    color: var(--black);
    background: rgba(255, 255, 255, 0.95);
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(201, 160, 96, 0.15);
    background: white;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: var(--brown-medium);
}

.form-group textarea {
    resize: vertical;
}

.quote-info {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(201, 160, 96, 0.1);
    border-radius: 8px;
    border-left: 4px solid var(--accent);
}

.quote-info h4 {
    color: var(--brown-dark);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.quote-info ul {
    list-style: none;
}

.quote-info li {
    color: var(--brown-medium);
    padding: 0.5rem 0;
    font-size: 0.95rem;
}

/* About Page Styles */
.about-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 80px;
}

.about-story-full {
    max-width: 900px;
    margin: 0 auto 80px;
}

.about-content {
    background: linear-gradient(135deg, #ffffff 0%, #faf8f5 100%);
    padding: 3rem 4rem;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    text-align: center;
    border: 1px solid rgba(201, 160, 96, 0.2);
    position: relative;
}

.about-content::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-family: 'Playfair Display', serif;
    font-size: 6rem;
    color: rgba(201, 160, 96, 0.15);
    line-height: 1;
}

.about-content p {
    color: var(--brown-medium);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.lead-text {
    font-size: 1.15rem !important;
    font-weight: 500;
    color: var(--brown-dark) !important;
    line-height: 1.9 !important;
    font-style: italic !important;
}

.highlight-text {
    font-size: 1.3rem !important;
    font-weight: 700;
    color: var(--brown-dark) !important;
    text-align: center;
    margin: 2rem 0 !important;
    font-style: normal !important;
    text-decoration: underline;
    text-decoration-color: var(--accent);
    text-underline-offset: 6px;
    text-decoration-thickness: 3px;
}

.quote-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem !important;
    font-style: italic;
    color: var(--brown-dark) !important;
    text-align: center;
    padding: 1.5rem 2rem;
    margin: 2rem 0 !important;
    position: relative;
    border-top: 1px solid rgba(201, 160, 96, 0.3);
    border-bottom: 1px solid rgba(201, 160, 96, 0.3);
}

.quote-text-no-border {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem !important;
    font-style: italic;
    color: var(--brown-dark) !important;
    text-align: center;
    padding: 1.5rem 2rem;
    margin: 2rem 0 !important;
    position: relative;
}

.brand-promise {
    text-align: center;
    font-size: 1.3rem !important;
    color: var(--brown-dark) !important;
    padding: 2rem;
    background: linear-gradient(135deg, var(--brown-dark) 0%, var(--brown-medium) 100%);
    color: var(--cream) !important;
    border-radius: 12px;
    margin: 2.5rem 0 !important;
}

.brand-promise strong {
    font-size: 1.6rem;
    display: block;
    margin-bottom: 0.5rem;
    color: var(--accent);
}

.closing-text {
    font-size: 1.25rem !important;
    font-weight: 600;
    color: var(--brown-dark) !important;
    text-align: center;
    margin-top: 2rem !important;
}

.about-story-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--brown-dark);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.about-story-content p {
    color: var(--brown-medium);
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.about-story-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    object-position: center top;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    border: 3px solid var(--accent);
    background: var(--brown-light);
}

.section-title-center {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--brown-dark);
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-subtitle-center {
    text-align: center;
    font-size: 1.1rem;
    color: var(--brown-medium);
    margin-bottom: 4rem;
    font-weight: 300;
}

.values-section {
    margin-bottom: 80px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.value-card {
    text-align: center;
    padding: 2.5rem;
    background: linear-gradient(135deg, #faf8f5 0%, #f5f0e8 100%);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(42, 24, 16, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(201, 160, 96, 0.15);
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--brown-medium));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(42, 24, 16, 0.18);
}

.value-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.15) rotate(5deg);
}

.value-card h3 {
    font-size: 1.5rem;
    color: var(--brown-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-card p {
    color: var(--brown-medium);
    line-height: 1.8;
}

.team-section {
    margin-bottom: 80px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.team-member {
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(42, 24, 16, 0.2);
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    margin-bottom: 1.5rem;
    border: 4px solid var(--accent);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    background: var(--brown-light);
}

.team-member h3 {
    font-size: 1.5rem;
    color: var(--brown-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.team-role {
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.team-bio {
    color: var(--brown-medium);
    line-height: 1.8;
    font-size: 0.95rem;
}

.stats-section {
    margin-bottom: 40px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-box {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(201, 160, 96, 0.15);
    border-radius: 12px;
    border: 2px solid var(--accent);
}

.stat-box h3 {
    font-size: 3.5rem;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-box p {
    color: var(--brown-dark);
    font-weight: 600;
    font-size: 1.1rem;
}

/* Contact Page */
.contact-grid-modern {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    margin-bottom: 60px;
}

.contact-info-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-card-modern {
    background: white;
    padding: 2.2rem 1.8rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(42, 24, 16, 0.06);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(201, 160, 96, 0.1);
}

.contact-card-modern::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--brown-medium));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.contact-card-modern:hover::before {
    transform: scaleX(1);
}

.contact-card-modern:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(42, 24, 16, 0.12);
    border-color: rgba(201, 160, 96, 0.25);
}

/* Contact Icon SVG Styles */
.contact-icon-svg {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    transition: all 0.3s ease;
}

.contact-icon-svg svg {
    width: 28px;
    height: 28px;
}

.contact-icon-svg.whatsapp {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.15), rgba(37, 211, 102, 0.05));
}

.contact-icon-svg.whatsapp svg {
    fill: #25D366;
}

.contact-card-modern:hover .contact-icon-svg.whatsapp {
    background: #25D366;
}

.contact-card-modern:hover .contact-icon-svg.whatsapp svg {
    fill: white;
}

.contact-icon-svg.email {
    background: linear-gradient(135deg, rgba(201, 160, 96, 0.15), rgba(201, 160, 96, 0.05));
}

.contact-icon-svg.email svg {
    stroke: var(--accent);
}

.contact-card-modern:hover .contact-icon-svg.email {
    background: var(--accent);
}

.contact-card-modern:hover .contact-icon-svg.email svg {
    stroke: white;
}

.contact-icon-svg.clock {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15), rgba(102, 126, 234, 0.05));
}

.contact-icon-svg.clock svg {
    stroke: #667eea;
}

.contact-card-modern:hover .contact-icon-svg.clock {
    background: #667eea;
}

.contact-card-modern:hover .contact-icon-svg.clock svg {
    stroke: white;
}

.contact-icon-svg.phone {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.15), rgba(40, 167, 69, 0.05));
}

.contact-icon-svg.phone svg {
    stroke: #28a745;
}

.contact-card-modern:hover .contact-icon-svg.phone {
    background: #28a745;
}

.contact-card-modern:hover .contact-icon-svg.phone svg {
    stroke: white;
}

.contact-icon-modern {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.contact-card-modern:hover .contact-icon-modern {
    transform: scale(1.2);
}

.contact-card-modern h3 {
    font-size: 1.15rem;
    color: var(--brown-dark);
    margin-bottom: 0.4rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    letter-spacing: -0.3px;
}

.contact-card-modern p {
    color: #9a8a78;
    margin-bottom: 1.2rem;
    font-size: 0.85rem;
    line-height: 1.5;
}

/* Contact Link Button */
.contact-link-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    word-break: break-all;
    overflow-wrap: anywhere;
    max-width: 100%;
    line-height: 1.4;
    padding: 12px 16px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(201, 160, 96, 0.1) 0%, rgba(201, 160, 96, 0.05) 100%);
    border: 2px solid var(--accent);
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    box-sizing: border-box;
}

.contact-link-btn:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(201, 160, 96, 0.3);
}

.contact-link-btn.whatsapp {
    color: #25D366;
    border-color: #25D366;
    background: rgba(37, 211, 102, 0.1);
}

.contact-link-btn.whatsapp:hover {
    background: #25D366;
    color: white;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.contact-link-btn.phone {
    color: #28a745;
    border-color: #28a745;
    background: rgba(40, 167, 69, 0.1);
}

.contact-link-btn.phone:hover {
    background: #28a745;
    color: white;
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

.contact-link-btn.email {
    color: var(--accent);
    border-color: var(--accent);
    font-size: 0.72rem;
    white-space: nowrap;
    word-break: normal;
    overflow-wrap: normal;
}


.contact-hours-info {
    display: block;
    margin-top: 0.75rem;
    font-size: 0.85rem;
    color: var(--brown-medium);
    line-height: 1.6;
}

.contact-card-modern a {
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
}

.contact-card-modern a:hover {
    color: var(--brown-dark);
}

.contact-hours {
    display: block;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--brown-medium);
}

.contact-card-modern address {
    font-style: normal;
    color: var(--accent);
    font-weight: 500;
    line-height: 1.8;
}

.contact-form-modern {
    background: rgba(255, 255, 255, 0.98);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 2px solid var(--accent);
}

.contact-form-modern h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--brown-dark);
    margin-bottom: 2rem;
}

.map-section {
    margin-top: 60px;
}

.map-placeholder {
    background: rgba(255, 255, 255, 0.95);
    padding: 4rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--accent);
}

.map-placeholder p {
    color: var(--brown-dark);
    font-size: 1.2rem;
    font-weight: 600;
}

/* Footer */
.footer-modern {
    background: linear-gradient(135deg, rgba(26, 10, 5, 0.98) 0%, rgba(42, 24, 16, 0.98) 100%);
    color: var(--cream);
    padding: 2.5rem 0;
    margin-top: 0;
    border-top: 3px solid var(--accent);
    position: relative;
}

.footer-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a060' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.footer-content p {
    margin: 0;
    font-size: 0.95rem;
    opacity: 0.9;
}

.footer-links {
    display: flex;
    gap: 2.5rem;
}

.footer-links a {
    color: var(--cream);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 2px;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-links a:hover::after {
    width: 100%;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
}

/* NOTE: .modal-content styles consolidated in "Modal Improvements" section below */

.modal-content h2 {
    font-family: 'Playfair Display', serif;
    color: var(--brown-dark);
    margin-bottom: 2rem;
    text-align: center;
    font-size: 2rem;
}

.close {
    color: var(--brown-dark);
    position: absolute;
    right: 1.5rem;
    top: 1rem;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close:hover {
    color: var(--accent);
    transform: rotate(90deg);
}

.auth-form .form-group {
    margin-bottom: 1.5rem;
}

.form-footer {
    text-align: center;
    margin-top: 1.5rem;
    color: var(--brown-medium);
}

.form-footer a {
    color: var(--brown-dark);
    font-weight: 600;
    text-decoration: none;
}

.form-footer a:hover {
    color: var(--accent);
    text-decoration: underline;
}

/* Messages */
.success-message,
.error-message {
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    text-align: center;
    font-weight: 600;
    display: none;
    animation: slideDown 0.5s ease;
}

.success-message {
    background: rgba(76, 175, 80, 0.95);
    color: white;
}

.error-message {
    background: rgba(244, 67, 54, 0.95);
    color: white;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-content-wrapper {
        padding: 0 50px;
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-image-wrapper {
        order: -1;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-stats-row {
        gap: 3rem;
    }
}

@media (max-width: 968px) {
    .nav-menu {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .services-modern-grid {
        grid-template-columns: 1fr;
    }
    
    .about-story {
        grid-template-columns: 1fr;
    }
    
    .contact-grid-modern {
        grid-template-columns: 1fr;
    }
    
    .contact-info-modern {
        grid-template-columns: 1fr 1fr;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .hero-content-wrapper {
        padding: 0 30px;
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-delivery-image {
        max-height: 400px;
    }
    
    .hero-stats-row {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem 0;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-primary,
    .btn-outline {
        width: 100%;
        text-align: center;
    }
    
    .contact-info-modern {
        grid-template-columns: 1fr;
    }
    
    .values-grid,
    .team-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* ============================================
   BOOKING FORM STYLES
   ============================================ */

.booking-form-modern {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.98);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    border: 2px solid var(--accent);
}

.repeat-job {
    border: 1px solid rgba(139, 111, 71, 0.3);
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 1rem;
}

.repeat-job legend {
    font-weight: 600;
    color: var(--brown-dark);
    padding: 0 0.5rem;
}

.repeat-options {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin: 1rem 0;
}

.repeat-options.disabled {
    opacity: 0.5;
}

.repeat-options label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.hint {
    font-size: 0.85rem;
    color: var(--brown-medium);
    font-style: italic;
}

.policies {
    background: rgba(201, 160, 96, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent);
}

.policies a {
    color: var(--brown-dark);
    font-weight: 600;
}

.policies a:hover {
    color: var(--accent);
}

.checkbox-inline {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-top: 1rem;
    cursor: pointer;
}

.checkbox-inline input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: var(--brown-dark);
}

.checkbox-inline span {
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Modal Improvements */
.modal.hidden {
    display: none;
}

.modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    margin: 2rem;
    padding: 2.5rem;
    background: var(--cream);
    border-radius: 16px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    border: 3px solid var(--accent);
}

.modal-content h2 {
    font-family: 'Playfair Display', serif;
    color: var(--brown-dark);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.summary-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    padding: 1.5rem;
    border-radius: 8px;
}

.summary-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(139, 111, 71, 0.15);
    font-size: 0.95rem;
}

.summary-list li:last-child {
    border-bottom: none;
}

.summary-list li strong {
    color: var(--brown-dark);
}

.route-text {
    display: block;
    margin-top: 0.5rem;
    padding: 0.75rem;
    background: rgba(201, 160, 96, 0.1);
    border-radius: 6px;
    font-size: 0.9rem;
    white-space: pre-wrap;
}

.estimate-text {
    font-size: 1.2rem;
    padding: 1rem;
    background: rgba(201, 160, 96, 0.15);
    border-radius: 8px;
    text-align: center;
    margin: 1.5rem 0;
}

.estimate-text strong {
    font-size: 2rem;
    color: var(--brown-dark);
}

.modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 1.5rem;
}

/* Booking Success Page */
.booking-success {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #4a7c59;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 2rem;
}

.booking-success h1 {
    font-family: 'Playfair Display', serif;
    color: var(--brown-dark);
    margin-bottom: 1rem;
}

.booking-ref {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    padding: 1rem;
    background: rgba(201, 160, 96, 0.15);
    border-radius: 8px;
    margin: 1.5rem 0;
}

.price-confirm {
    font-size: 1.2rem;
    margin: 1rem 0;
}

.success-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* ============================================
   PRICING SECTION STYLES
   ============================================ */

.pricing-overview {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid rgba(139, 111, 71, 0.2);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
}

.pricing-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--brown-dark);
    margin-bottom: 0.5rem;
}

.pricing-card .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    margin: 1rem 0;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
    text-align: left;
}

.pricing-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(139, 111, 71, 0.15);
    font-size: 0.95rem;
}

.quote-cta {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    margin-bottom: 3rem;
}

.quote-cta p {
    margin-top: 1rem;
    color: var(--brown-medium);
}

/* ============================================
   AUTH PAGES (LOGIN/SIGNUP)
   ============================================ */

.auth-section {
    min-height: calc(100vh - 140px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-container {
    width: 100%;
    max-width: 450px;
    padding: 2rem;
}

.auth-card {
    background: rgba(255, 255, 255, 0.98);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
    border: 2px solid var(--accent);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.auth-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--brown-dark), var(--accent), var(--brown-dark));
}

.auth-card h1 {
    font-family: 'Playfair Display', serif;
    color: var(--brown-dark);
    margin-bottom: 0.5rem;
    font-size: 2rem;
}

.auth-card > p {
    color: var(--brown-medium);
    margin-bottom: 2rem;
}

.auth-form {
    text-align: left;
}

.auth-form .form-group {
    margin-bottom: 1.5rem;
}

.auth-form button {
    width: 100%;
    margin-top: 1rem;
}

.auth-footer {
    margin-top: 2rem;
    font-size: 0.9rem;
}

.auth-footer a {
    color: var(--brown-dark);
    font-weight: 600;
    text-decoration: none;
}

.auth-footer a:hover {
    color: var(--accent);
}

.flash-messages {
    margin-bottom: 1.5rem;
}

.flash-message {
    padding: 0.75rem 1rem;
    border-radius: 6px;
    margin-bottom: 0.5rem;
}

.flash-message.error {
    background: rgba(180, 60, 60, 0.15);
    color: #8b4049;
    border: 1px solid rgba(180, 60, 60, 0.3);
}

.flash-message.success {
    background: rgba(74, 124, 89, 0.15);
    color: #4a7c59;
    border: 1px solid rgba(74, 124, 89, 0.3);
}

/* ============================================
   ADMIN DASHBOARD STYLES
   ============================================ */

.admin-section {
    padding: 3rem 0;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.admin-header h1 {
    font-family: 'Playfair Display', serif;
    color: var(--brown-dark);
}

.admin-nav {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--accent);
}

.stat-card h3 {
    font-size: 2.5rem;
    color: var(--accent);
    font-weight: 700;
}

.stat-card p {
    color: var(--brown-medium);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.table-container {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th {
    background: var(--brown-dark);
    color: var(--cream);
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.admin-table td {
    padding: 1rem;
    border-bottom: 1px solid rgba(139, 111, 71, 0.15);
    font-size: 0.9rem;
}

.admin-table tr:hover {
    background: rgba(201, 160, 96, 0.08);
}

.admin-table small {
    display: block;
    color: var(--brown-medium);
    font-size: 0.8rem;
}

.status-badge {
    display: inline-block;
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-badge.status-pending {
    background: rgba(201, 160, 96, 0.2);
    color: #8b6f47;
}

.status-badge.status-confirmed {
    background: rgba(92, 64, 51, 0.2);
    color: #5c4033;
}

.status-badge.status-in_progress {
    background: rgba(201, 160, 96, 0.3);
    color: #8b6f47;
}

.status-badge.status-completed {
    background: rgba(74, 124, 89, 0.2);
    color: #4a7c59;
}

.status-badge.status-cancelled {
    background: rgba(139, 64, 73, 0.2);
    color: #8b4049;
}

.inline-form {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.small-select {
    padding: 0.4rem 0.5rem;
    border: 1px solid rgba(139, 111, 71, 0.3);
    border-radius: 4px;
    font-size: 0.8rem;
    background: white;
}

.btn-small {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
}

.no-data {
    text-align: center;
    color: var(--brown-medium);
    padding: 3rem !important;
}

/* Calendar Container */
.calendar-container {
    background: rgba(255, 255, 255, 0.98);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* ============================================
   DRIVER PORTAL STYLES
   ============================================ */

.driver-section {
    padding: 3rem 0;
}

.driver-name {
    font-weight: 600;
    color: var(--brown-dark);
}

.route-details {
    max-width: 200px;
    font-size: 0.85rem;
    color: var(--brown-medium);
}

.no-jobs-message {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
}

.no-jobs-message .icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.no-jobs-message h2 {
    font-family: 'Playfair Display', serif;
    color: var(--brown-dark);
    margin-bottom: 0.5rem;
}

.no-jobs-message p {
    color: var(--brown-medium);
}

.text-muted {
    color: var(--brown-medium);
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */

@media (max-width: 768px) {
    .booking-form-modern {
        padding: 1.5rem;
    }

    .modal-content {
        padding: 1.5rem;
        margin: 1rem;
    }

    .modal-actions {
        flex-direction: column;
    }

    .admin-table {
        font-size: 0.8rem;
    }

    .admin-table th,
    .admin-table td {
        padding: 0.75rem 0.5rem;
    }

    .inline-form {
        flex-direction: column;
        align-items: stretch;
    }

    .dashboard-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .success-actions {
        flex-direction: column;
    }
}

/* ============================================
   ADDITIONAL ANIMATIONS & EFFECTS
   ============================================ */

/* Fade in animation for page elements */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.page-header {
    animation: fadeInUp 0.6s ease both;
}

.service-modern-card {
    animation: fadeInUp 0.6s ease both;
}

.service-modern-card:nth-child(1) { animation-delay: 0.1s; }
.service-modern-card:nth-child(2) { animation-delay: 0.2s; }
.service-modern-card:nth-child(3) { animation-delay: 0.3s; }
.service-modern-card:nth-child(4) { animation-delay: 0.4s; }

.value-card {
    animation: fadeInUp 0.6s ease both;
}

.value-card:nth-child(1) { animation-delay: 0.1s; }
.value-card:nth-child(2) { animation-delay: 0.2s; }
.value-card:nth-child(3) { animation-delay: 0.3s; }
.value-card:nth-child(4) { animation-delay: 0.4s; }

.contact-card-modern {
    animation: fadeInUp 0.6s ease both;
}

/* Loading shimmer effect for buttons */
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.btn-primary:active,
.btn-service:active {
    transform: scale(0.98);
}

/* Smooth scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
}

/* ========================================
   AI FEATURES SECTION
   ======================================== */

.ai-features-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
}

.ai-features-section .section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.ai-features-section .section-label {
    display: inline-block;
    background: linear-gradient(135deg, #6b4423 0%, #3d2817 100%);
    color: #c9a060;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(107, 68, 35, 0.3);
}

.ai-features-section .section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--brown-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.ai-features-section .section-header p {
    font-size: 1.2rem;
    color: var(--brown-medium);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Features Split Layout - Image Left, List Right */
.features-split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

.features-image-side {
    position: relative;
}

.features-main-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(107, 68, 35, 0.25);
    border: 4px solid #c9a060;
}

.features-list-side {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-list-item {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid #c9a060;
}

.feature-list-item:hover {
    transform: translateX(8px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
}

.feature-list-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, #6b4423 0%, #3d2817 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-list-icon svg {
    width: 24px;
    height: 24px;
    stroke: #c9a060;
}

.feature-list-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--brown-dark);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.feature-list-content p {
    font-size: 0.95rem;
    color: var(--brown-medium);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 900px) {
    .features-split-layout {
        grid-template-columns: 1fr;
    }
    
    .features-main-image {
        height: 300px;
    }
}

.ai-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.ai-feature-card {
    background: white;
    padding: 2rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.ai-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border-color: var(--accent);
}

.ai-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

.feature-image-container {
    width: 100%;
    height: 200px;
    margin-bottom: 1.5rem;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
}

.feature-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.laptop-icon {
    font-size: 5rem;
    animation: float 3s ease-in-out infinite;
}

.feature-emoji {
    font-size: 5rem;
    color: var(--brown-dark);
    animation: float 3s ease-in-out infinite;
}

/* Feature Icon Container - Clean professional look */
.feature-icon-svg {
    width: 80px;
    height: 80px;
    color: var(--brown-dark);
}

.feature-icon-svg svg {
    width: 100%;
    height: 100%;
    stroke: var(--brown-dark);
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

/* Feature Image Container - Professional card styling */
.feature-image-container {
    background: var(--beige-light);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    min-height: 140px;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.ai-feature-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--brown-dark);
    margin-bottom: 1rem;
}

.ai-feature-card p {
    color: var(--brown-medium);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.ai-benefits {
    list-style: none;
    text-align: left;
    margin: 1.5rem 0;
    padding-left: 1rem;
}

.ai-benefits li {
    color: var(--brown-medium);
    font-size: 1rem;
    margin-bottom: 0.8rem;
    padding-left: 0.5rem;
}

.ai-feature-card .btn-secondary,
.ai-feature-card .btn-outline,
.ai-feature-card .btn-service {
    margin-top: 1rem;
    display: inline-block;
}

/* ========================================
   AI CHATBOT
   ======================================== */

.ai-chatbot {
    position: fixed;
    bottom: 170px;
    right: 30px;
    z-index: 999;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
}

.ai-chatbot.dragging {
    cursor: grabbing;
    opacity: 0.9;
}

.ai-chatbot.dragging .chat-toggle-btn {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.chat-toggle-btn {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brown-dark), var(--brown-medium));
    border: none;
    color: var(--accent);
    font-size: 2rem;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    touch-action: none;
}

.chat-toggle-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.chat-caption {
    text-align: center;
    margin-top: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--brown-dark);
    background: rgba(255, 255, 255, 0.95);
    padding: 4px 10px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.sandra-btn .sandra-icon {
    font-size: 2rem;
}

.sandra-avatar {
    background: linear-gradient(135deg, var(--accent) 0%, var(--brown-medium) 100%) !important;
    color: white !important;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-window {
    position: fixed;
    bottom: 120px;
    right: 30px;
    width: 400px;
    height: 600px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.2);
    display: none;
    flex-direction: column;
    overflow: hidden;
    animation: slideUp 0.3s ease;
}

.chat-window.active {
    display: flex;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chat-header {
    background: linear-gradient(135deg, var(--brown-dark), var(--brown-medium));
    color: var(--cream);
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin: 0;
}

.chat-close {
    background: none;
    border: none;
    color: var(--cream);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s;
}

.chat-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
    background: var(--cream);
}

.chat-message {
    margin-bottom: 1rem;
    display: flex;
    gap: 0.8rem;
}

.chat-message.bot {
    justify-content: flex-start;
}

.chat-message.user {
    justify-content: flex-end;
}

.message-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.message-content {
    max-width: 70%;
    padding: 1rem 1.2rem;
    border-radius: 18px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.chat-message.bot .message-content {
    background: white;
    color: var(--brown-dark);
    border-bottom-left-radius: 4px;
}

.chat-message.user .message-content {
    background: var(--brown-dark);
    color: var(--cream);
    border-bottom-right-radius: 4px;
}

.chat-input-area {
    padding: 1.5rem;
    background: white;
    border-top: 1px solid var(--cream-dark);
    display: flex;
    gap: 0.8rem;
}

.chat-input {
    flex: 1;
    padding: 0.8rem 1.2rem;
    border: 2px solid var(--cream-dark);
    border-radius: 25px;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s;
}

.chat-input:focus {
    outline: none;
    border-color: var(--accent);
}

.chat-send-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--accent);
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-send-btn:hover {
    background: var(--accent-light);
    transform: scale(1.05);
}

.chat-send-btn:disabled {
    background: var(--cream-dark);
    cursor: not-allowed;
}

.typing-indicator {
    display: flex;
    gap: 0.3rem;
    padding: 0.8rem 1.2rem;
}

.typing-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brown-medium);
    animation: typing 1.4s infinite;
}

.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.7; }
    30% { transform: translateY(-10px); opacity: 1; }
}

.quick-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.quick-action-btn {
    padding: 0.5rem 1rem;
    background: white;
    border: 1px solid var(--accent);
    color: var(--brown-dark);
    border-radius: 20px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s;
}

.quick-action-btn:hover {
    background: var(--accent);
    color: white;
}

/* Quick Actions Container - v3.0 */
.quick-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid rgba(139, 69, 19, 0.1);
}

.quick-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    background: linear-gradient(135deg, #f8f5f0 0%, #f0ebe3 100%);
    color: var(--brown-dark);
    border: 1px solid rgba(139, 69, 19, 0.2);
    border-radius: 18px;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.quick-btn:hover {
    background: linear-gradient(135deg, var(--accent) 0%, #e9b300 100%);
    color: var(--brown-dark);
    border-color: var(--accent);
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(249, 196, 31, 0.3);
}

.quick-btn i {
    font-size: 0.9rem;
}

/* Chat Message Links */
.chat-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.chat-link:hover {
    color: #d4a500;
    text-decoration: underline;
}

/* Booking Flow Progress */
.booking-progress {
    display: flex;
    gap: 4px;
    margin-bottom: 10px;
}

.booking-progress .step {
    width: 40px;
    height: 4px;
    background: rgba(139, 69, 19, 0.15);
    border-radius: 2px;
    transition: background 0.3s;
}

.booking-progress .step.active {
    background: var(--accent);
}

.booking-progress .step.completed {
    background: #27ae60;
}

/* Responsive chatbot */
@media (max-width: 768px) {
    .chat-window {
        width: calc(100vw - 40px);
        height: calc(100vh - 140px);
        right: 20px;
        bottom: 110px;
    }
    
    .ai-chatbot {
        right: 20px;
        bottom: 20px;
    }
}
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

/* Selection styling */
::selection {
    background: var(--accent);
    color: var(--brown-dark);
}

/* Focus visible for accessibility */
:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 2px;
}

/* Smooth image loading */
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

img[loading="lazy"] {
    opacity: 0;
}

img[loading="lazy"].loaded,
img:not([loading="lazy"]) {
    opacity: 1;
}

/* ========================================
   PREMIUM SERVICES PAGE STYLES
   ======================================== */

/* Services Hero Section */
.services-hero {
    background: linear-gradient(135deg, #1a0f0a 0%, #3d2817 50%, #1a0f0a 100%);
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a060' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.services-hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.services-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(201, 160, 96, 0.2);
    border: 1px solid var(--accent);
    border-radius: 50px;
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.services-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: var(--cream);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.services-hero-title .highlight-gold {
    color: var(--accent);
}

.services-hero-subtitle {
    color: rgba(250, 248, 245, 0.85);
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

/* Services Showcase Section */
.services-showcase {
    padding: 5rem 0;
    background: linear-gradient(180deg, #f5efe8 0%, #ebe3d5 100%);
}

.services-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.section-heading {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--brown-dark);
    margin-bottom: 1rem;
}

.section-description {
    color: var(--brown-medium);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Premium Services Grid */
.services-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
}

/* Premium Service Card */
.service-card-premium {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(42, 24, 16, 0.1);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.service-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--brown-medium));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(42, 24, 16, 0.2);
}

.service-card-premium:hover::before {
    opacity: 1;
}

.service-card-premium.featured {
    border: 2px solid var(--accent);
}

.service-card-premium.featured::before {
    opacity: 1;
    background: var(--accent);
}

.service-card-header {
    padding: 2rem 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.service-icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(201, 160, 96, 0.15), rgba(201, 160, 96, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.service-card-premium:hover .service-icon-circle {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
}

.service-icon-circle svg {
    width: 32px;
    height: 32px;
    stroke: var(--accent);
    transition: stroke 0.3s ease;
}

.service-card-premium:hover .service-icon-circle svg {
    stroke: white;
}

.service-icon-circle.urgent {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.15), rgba(220, 53, 69, 0.05));
}

.service-icon-circle.urgent svg {
    stroke: #dc3545;
}

.service-icon-circle.night {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15), rgba(102, 126, 234, 0.05));
}

.service-icon-circle.night svg {
    stroke: #667eea;
}

.service-icon-circle.holiday {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.15), rgba(40, 167, 69, 0.05));
}

.service-icon-circle.holiday svg {
    stroke: #28a745;
}

.popular-tag, .urgent-tag {
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.popular-tag {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: var(--brown-dark);
}

.urgent-tag {
    background: linear-gradient(135deg, #dc3545, #ff6b6b);
    color: white;
}

.service-card-body {
    padding: 1.5rem 2rem;
    flex: 1;
}

.service-card-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--brown-dark);
    margin-bottom: 0.5rem;
}

.service-duration {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.service-description {
    color: var(--brown-medium);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.service-card-body .service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-card-body .service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--brown-medium);
    font-size: 0.9rem;
}

.service-card-body .service-features li::before {
    display: none;
}

.service-card-body .service-features li svg {
    width: 18px;
    height: 18px;
    stroke: var(--accent);
    flex-shrink: 0;
}

.service-card-footer {
    padding: 1.5rem 2rem 2rem;
    margin-top: auto;
}

.btn-service-premium {
    display: block;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--brown-dark), var(--brown-medium));
    color: var(--cream);
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-service-premium:hover {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: var(--brown-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 160, 96, 0.4);
}

/* Why Choose Us Section - Premium */
.why-choose-section {
    padding: 5rem 0;
    background: white;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-choose-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--brown-dark);
    margin-bottom: 1rem;
}

.why-choose-content > p {
    color: var(--brown-medium);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.trust-stats {
    display: flex;
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--accent);
    font-weight: 700;
}

.stat-label {
    color: var(--brown-medium);
    font-size: 0.9rem;
}

.why-choose-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #faf8f5, #f5efe8);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(42, 24, 16, 0.1);
}

.feature-item .feature-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(42, 24, 16, 0.1);
}

.feature-item .feature-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--accent);
}

.feature-text h4 {
    font-size: 1.1rem;
    color: var(--brown-dark);
    margin-bottom: 0.3rem;
}

.feature-text p {
    color: var(--brown-medium);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Services CTA Section */
.services-cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--brown-dark), var(--brown-medium));
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--cream);
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(250, 248, 245, 0.85);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary {
    padding: 1rem 2.5rem;
    background: var(--accent);
    color: var(--brown-dark);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cta-primary:hover {
    background: var(--accent-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 160, 96, 0.4);
}

.btn-cta-secondary {
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--cream);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid rgba(250, 248, 245, 0.3);
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    background: rgba(250, 248, 245, 0.1);
    border-color: var(--cream);
}

/* Responsive Premium Services */
@media (max-width: 992px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .services-hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .services-hero {
        padding: 4rem 1.5rem;
    }
    
    .services-hero-title {
        font-size: 2rem;
    }
    
    .services-grid-premium {
        grid-template-columns: 1fr;
    }
    
    .trust-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        text-align: center;
    }
}

/* ========================================
   SERVICES PAGE V3 - PROFESSIONAL REDESIGN
   ======================================== */

/* Services Page Container */
.services-page-v3 {
    background: linear-gradient(180deg, #f8f5f0 0%, #f0ebe3 100%);
    padding: 4rem 0 5rem;
    min-height: 100vh;
}

/* Services Header */
.services-header-v3 {
    text-align: center;
    margin-bottom: 4rem;
}

.services-badge-v3 {
    display: inline-block;
    padding: 0.6rem 1.75rem;
    background: rgba(201, 160, 96, 0.12);
    border: 1px solid var(--accent);
    border-radius: 50px;
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
}

.services-header-v3 h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--brown-dark);
    margin-bottom: 1rem;
}

.services-header-v3 p {
    color: var(--brown-medium);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Grid V3 */
.services-grid-v3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

/* Service Card V3 */
.service-card-v3 {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 25px rgba(42, 24, 16, 0.06);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 1px solid rgba(107, 68, 35, 0.06);
}

.service-card-v3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card-v3:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(42, 24, 16, 0.15);
    border-color: rgba(201, 160, 96, 0.25);
}

.service-card-v3:hover::after {
    transform: scaleX(1);
}

/* Service Image */
.service-image-v3 {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.service-image-v3 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.4s ease;
}

.service-card-v3:hover .service-image-v3 img {
    transform: scale(1.1);
}

.service-overlay-v3 {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(26, 15, 10, 0.4) 100%);
    transition: opacity 0.4s ease;
}

.service-card-v3:hover .service-overlay-v3 {
    opacity: 0.6;
}

/* Service Content */
.service-content-v3 {
    padding: 1.75rem;
}

/* Service Icon V3 */
.service-icon-v3 {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(201, 160, 96, 0.12), rgba(201, 160, 96, 0.04));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: all 0.4s ease;
    position: relative;
}

.service-icon-v3::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--accent), transparent);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.service-card-v3:hover .service-icon-v3 {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    transform: scale(1.1) rotate(-5deg);
}

.service-card-v3:hover .service-icon-v3::before {
    opacity: 0.3;
}

.service-icon-v3 svg {
    width: 26px;
    height: 26px;
    stroke: var(--accent);
    transition: all 0.4s ease;
}

.service-card-v3:hover .service-icon-v3 svg {
    stroke: white;
}

/* Night Icon */
.service-icon-v3.night {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.12), rgba(102, 126, 234, 0.04));
}

.service-icon-v3.night svg {
    stroke: #667eea;
}

.service-card-v3:hover .service-icon-v3.night {
    background: linear-gradient(135deg, #667eea, #8294ff);
}

/* Holiday Icon */
.service-icon-v3.holiday {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.12), rgba(40, 167, 69, 0.04));
}

.service-icon-v3.holiday svg {
    stroke: #28a745;
}

.service-card-v3:hover .service-icon-v3.holiday {
    background: linear-gradient(135deg, #28a745, #4cd964);
}

/* Bespoke Icon */
.service-icon-v3.bespoke {
    background: linear-gradient(135deg, rgba(201, 160, 96, 0.2), rgba(201, 160, 96, 0.08));
}

.service-content-v3 h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    color: var(--brown-dark);
    margin-bottom: 0.7rem;
    transition: color 0.3s ease;
}

.service-card-v3:hover .service-content-v3 h3 {
    color: var(--accent);
}

.service-content-v3 p {
    color: var(--brown-medium);
    font-size: 0.92rem;
    line-height: 1.65;
    margin-bottom: 1.5rem;
}

/* Service Button V3 */
.service-btn-v3 {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--brown-dark), var(--brown-medium));
    color: var(--cream);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-btn-v3::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-btn-v3 span,
.service-btn-v3 svg {
    position: relative;
    z-index: 1;
}

.service-btn-v3 svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.service-btn-v3:hover {
    color: var(--brown-dark);
    transform: translateX(5px);
}

.service-btn-v3:hover::before {
    opacity: 1;
}

.service-btn-v3:hover svg {
    transform: translateX(4px);
}

/* Bespoke Card V3 */
.bespoke-card-v3 {
    border: 2px solid rgba(201, 160, 96, 0.25);
}

.bespoke-card-v3:hover {
    border-color: var(--accent);
}

.bespoke-bg-v3 {
    height: 200px;
    background: linear-gradient(135deg, var(--brown-dark), var(--brown-medium));
    position: relative;
    overflow: hidden;
}

.bespoke-pattern-v3 {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a060' fill-opacity='0.12'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.bespoke-btns-v3 {
    display: flex;
    gap: 0.75rem;
}

.bespoke-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.1rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.bespoke-btn svg {
    width: 18px;
    height: 18px;
}

.bespoke-btn.whatsapp {
    background: #25D366;
    color: white;
}

.bespoke-btn.whatsapp:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
}

.bespoke-btn.email {
    background: var(--accent);
    color: var(--brown-dark);
}

.bespoke-btn.email:hover {
    background: var(--accent-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(201, 160, 96, 0.4);
}

/* Comparison Section V3 */
.comparison-section-v3 {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 4px 25px rgba(42, 24, 16, 0.06);
}

.comparison-header-v3 {
    text-align: center;
    margin-bottom: 2rem;
}

.comparison-header-v3 h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    color: var(--brown-dark);
    margin-bottom: 0.5rem;
}

.comparison-header-v3 p {
    color: var(--brown-medium);
    font-size: 1rem;
}

.comparison-table-v3 {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(107, 68, 35, 0.1);
}

.comparison-row-v3 {
    display: grid;
    grid-template-columns: 1.2fr 2.5fr 1fr;
    gap: 1rem;
    padding: 1.1rem 1.5rem;
    border-bottom: 1px solid rgba(107, 68, 35, 0.08);
    transition: all 0.2s ease;
}

.comparison-row-v3:last-child {
    border-bottom: none;
}

.comparison-row-v3:not(.header):hover {
    background: rgba(201, 160, 96, 0.06);
}

.comparison-row-v3.header {
    background: linear-gradient(135deg, var(--brown-dark), var(--brown-medium));
}

.comparison-row-v3.header span {
    color: var(--cream);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.comparison-row-v3 span {
    color: var(--brown-medium);
    font-size: 0.92rem;
    display: flex;
    align-items: center;
}

.comparison-row-v3 .service-name {
    font-weight: 600;
    color: var(--brown-dark);
    gap: 0.75rem;
}

.comparison-row-v3 .service-name .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
}

.comparison-row-v3 .service-name .dot.night {
    background: #667eea;
}

.comparison-row-v3 .service-name .dot.holiday {
    background: #28a745;
}

.comparison-row-v3 .duration {
    font-weight: 500;
    color: var(--accent);
}

/* Responsive Services V3 */
@media (max-width: 1024px) {
    .services-grid-v3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-page-v3 {
        padding: 3rem 0 4rem;
    }
    
    .services-header-v3 h1 {
        font-size: 2.25rem;
    }
    
    .services-grid-v3 {
        grid-template-columns: 1fr;
    }
    
    .bespoke-btns-v3 {
        flex-direction: column;
    }
    
    .bespoke-btn {
        justify-content: center;
    }
    
    .comparison-section-v3 {
        padding: 1.75rem 1.25rem;
    }
    
    .comparison-row-v3.header {
        display: none;
    }
    
    .comparison-row-v3 {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        padding: 1rem 1.25rem;
    }
    
    .comparison-row-v3 .service-name {
        font-size: 1rem;
        padding-bottom: 0.5rem;
        border-bottom: 1px solid rgba(107, 68, 35, 0.1);
        margin-bottom: 0.25rem;
    }
}

/* ========================================
   HOME PAGE V2 - PROFESSIONAL REDESIGN
   ======================================== */

/* Hero Section V2 */
.section-divider {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-divider::after {
    content: '';
    display: block;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(107, 68, 35, 0.15) 20%, rgba(107, 68, 35, 0.15) 80%, transparent 100%);
}

.home-hero-v2 {
    background: linear-gradient(180deg, #f8f5f0 0%, #f0ebe3 100%);
    padding: 4rem 0 3rem;
}

.hero-grid-v2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 3rem;
}

.hero-content-v2 {
    max-width: 580px;
}

.hero-badge-v2 {
    display: inline-block;
    padding: 0.6rem 1.25rem;
    background: rgba(201, 160, 96, 0.12);
    border: 1px solid var(--accent);
    border-radius: 50px;
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.hero-content-v2 h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.25rem;
    color: var(--brown-dark);
    margin-bottom: 1.25rem;
    line-height: 1.15;
    letter-spacing: -1px;
}

.hero-content-v2 p {
    font-size: 1.1rem;
    color: var(--brown-medium);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.hero-cta-v2 {
    display: flex;
    gap: 0.75rem;
    flex-wrap: nowrap;
    align-items: center;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 1rem 1.8rem;
    background: linear-gradient(135deg, #1a0a05 0%, #3d2516 50%, #2a1409 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 6px 20px rgba(26, 15, 10, 0.4), 0 2px 6px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: none;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn-hero-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.btn-hero-primary:hover::before {
    left: 100%;
}

.btn-hero-primary svg {
    transition: transform 0.3s ease;
}

.btn-hero-primary:hover {
    background: linear-gradient(135deg, #2a1409 0%, #c9a060 50%, #3d2516 100%);
    color: white;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 35px rgba(26, 15, 10, 0.5), 0 4px 12px rgba(201, 160, 96, 0.35);
}

.btn-hero-primary:hover svg {
    transform: translateX(5px);
}

.btn-hero-primary:active {
    transform: translateY(-2px) scale(1);
    box-shadow: 0 6px 20px rgba(26, 15, 10, 0.4);
}

.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 1.8rem;
    background: linear-gradient(135deg, #ffffff 0%, #faf8f5 100%);
    color: var(--brown-dark);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid rgba(26, 10, 5, 0.12);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06), inset 0 2px 0 rgba(255, 255, 255, 0.9);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn-hero-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a0a05 0%, #3d2516 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.btn-hero-outline:hover::before {
    opacity: 1;
}

.btn-hero-outline:hover {
    background: transparent;
    color: white;
    border-color: transparent;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 10px 30px rgba(42, 24, 16, 0.35), 0 4px 10px rgba(0, 0, 0, 0.15);
}

.btn-hero-outline svg {
    transition: transform 0.3s ease;
}

.btn-hero-outline:hover svg {
    transform: scale(1.1);
}

.btn-hero-outline:active {
    transform: translateY(-2px) scale(1);
}

/* Caramel Brown - View Services */
.btn-hero-outline.btn-caramel {
    background: linear-gradient(135deg, #f5ebe0 0%, #e8d5c4 100%);
    border-color: rgba(139, 90, 43, 0.25);
    color: #5c3d2e;
}

.btn-hero-outline.btn-caramel:hover {
    background: linear-gradient(135deg, #8b5a2b 0%, #a0522d 100%);
    color: white;
    border-color: transparent;
}

/* Amber Gold - Become a Driver */
.btn-hero-outline.btn-amber {
    background: linear-gradient(135deg, #faf3e3 0%, #f0e4cc 100%);
    border-color: rgba(184, 134, 11, 0.25);
    color: #6b4f1d;
}

.btn-hero-outline.btn-amber:hover {
    background: linear-gradient(135deg, #b8860b 0%, #d4a017 100%);
    color: white;
    border-color: transparent;
}

.hero-image-v2 {
    position: relative;
}

.hero-image-v2 img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(42, 24, 16, 0.2);
    border: 4px solid rgba(201, 160, 96, 0.3);
}

/* Stats Row V2 */
.stats-row-v2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.stat-card-v2 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(42, 24, 16, 0.06);
    border: 1px solid rgba(107, 68, 35, 0.08);
    transition: all 0.3s ease;
}

.stat-card-v2:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(42, 24, 16, 0.12);
    border-color: rgba(201, 160, 96, 0.3);
}

.stat-emoji {
    font-size: 2.5rem;
    line-height: 1;
}

.stat-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    color: var(--accent);
    margin-bottom: 0.2rem;
    line-height: 1;
}

.stat-info p {
    font-size: 0.85rem;
    color: var(--brown-medium);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Features Section V2 */
.features-section-v2 {
    padding: 5rem 0;
    background: linear-gradient(180deg, #f0ebe3 0%, #f8f5f0 100%);
}

.section-header-v2 {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-badge-v2 {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(201, 160, 96, 0.12);
    border: 1px solid var(--accent);
    border-radius: 50px;
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 1.25rem;
}

.section-header-v2 h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--brown-dark);
    margin-bottom: 0.75rem;
}

.section-header-v2 p {
    color: var(--brown-medium);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.features-grid-v2.three-cards {
    max-width: 1100px;
    margin: 0 auto;
}

.feature-card-v2 {
    padding: 2rem;
    background: white;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(107, 68, 35, 0.08);
    box-shadow: 0 4px 15px rgba(42, 24, 16, 0.05);
}

.feature-card-v2:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(42, 24, 16, 0.1);
    border-color: rgba(201, 160, 96, 0.3);
}

.feature-emoji {
    font-size: 3rem;
    display: block;
    margin-bottom: 1.25rem;
}

.feature-card-v2 h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--brown-dark);
    margin-bottom: 0.75rem;
}

.feature-card-v2 p {
    color: var(--brown-medium);
    font-size: 0.92rem;
    line-height: 1.65;
}

/* How It Works Section V2 */
.how-it-works-v2 {
    padding: 5rem 0;
    background: linear-gradient(180deg, #f8f5f0 0%, #f0ebe3 100%);
}

.steps-grid-v2 {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.step-card-v2 {
    flex: 1;
    max-width: 280px;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(42, 24, 16, 0.06);
    border: 1px solid rgba(107, 68, 35, 0.08);
    position: relative;
    transition: all 0.4s ease;
}

.step-card-v2:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(42, 24, 16, 0.12);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: var(--brown-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(201, 160, 96, 0.4);
}

.step-emoji {
    font-size: 2.5rem;
    display: block;
    margin: 1rem 0 1rem;
}

.step-card-v2 h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--brown-dark);
    margin-bottom: 0.75rem;
}

.step-card-v2 p {
    color: var(--brown-medium);
    font-size: 0.9rem;
    line-height: 1.6;
}

.step-connector {
    font-size: 2rem;
    color: var(--accent);
    padding-top: 4rem;
    font-weight: 700;
}

.cta-center {
    text-align: center;
}

.btn-cta-large {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: linear-gradient(135deg, var(--brown-dark), var(--brown-medium));
    color: var(--cream);
    text-decoration: none;
    border-radius: 14px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    box-shadow: 0 6px 20px rgba(26, 15, 10, 0.25);
}

.btn-cta-large:hover {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: var(--brown-dark);
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(201, 160, 96, 0.45);
}

/* Responsive Home V2 */
@media (max-width: 1024px) {
    .hero-grid-v2 {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .hero-content-v2 {
        max-width: 100%;
        text-align: center;
    }
    
    .hero-cta-v2 {
        justify-content: center;
    }
    
    .hero-image-v2 img {
        height: 350px;
    }
    
    .stats-row-v2 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid-v2 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps-grid-v2 {
        flex-wrap: wrap;
    }
    
    .step-connector {
        display: none;
    }
}

@media (max-width: 768px) {
    .home-hero-v2 {
        padding: 3rem 0 2rem;
    }
    
    .hero-content-v2 h1 {
        font-size: 2.25rem;
    }
    
    .hero-cta-v2 {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-hero-primary,
    .btn-hero-outline {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .stats-row-v2 {
        grid-template-columns: 1fr;
    }
    
    .features-grid-v2 {
        grid-template-columns: 1fr;
    }
    
    .steps-grid-v2 {
        flex-direction: column;
        align-items: center;
    }
    
    .step-card-v2 {
        max-width: 100%;
        width: 100%;
    }
}
