/* Travelbeats CSS Theme: Premium, Modern, and Responsive */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    --primary: #0d2137;
    --primary-dark: #091727;
    --primary-light: #eff6ff;
    --secondary: #0d9488;
    --accent: #eab308;
    --dark: #0f172a;
    --light: #f8fafc;
    --gray-dark: #334155;
    --gray-light: #e2e8f0;
    --success: #10b981;
    --warning: #eab308;
    --danger: #ef4444;
    --figma-yellow: #eab308;
    --figma-yellow-hover: #ca8a04;
    --figma-blue: #0d2137;
    --figma-dark: #0f172a;
    --figma-light-bg: #f3f7fa;
    --font-heading: 'Outfit', 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-premium: 0 20px 25px -5px rgb(15 23 42 / 0.15), 0 8px 10px -6px rgb(15 23 42 / 0.1);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}


/* Global resets & typography */
body {
    font-family: var(--font-body);
    background-color: var(--light);
    color: var(--gray-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--light);
}
::-webkit-scrollbar-thumb {
    background: var(--gray-light);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gray-dark);
}

/* Theme Utilities */
.bg-gradient-primary {
    background: linear-gradient(135deg, var(--dark) 0%, #1e293b 100%);
}

.text-primary-color {
    color: var(--primary);
}

.text-secondary-color {
    color: var(--secondary);
}

/* Custom Buttons */
.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    font-weight: 550;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    transition: var(--transition-smooth);
}
.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.btn-whatsapp {
    background-color: #25d366;
    color: #fff;
    border: none;
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
}
.btn-whatsapp:hover {
    background-color: #128c7e;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-secondary-custom {
    background-color: var(--secondary);
    color: white;
    font-weight: 550;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    transition: var(--transition-smooth);
    border: none;
}
.btn-secondary-custom:hover {
    background-color: #0b7a70;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.25);
}

/* Floating Actions */
.whatsapp-floating {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    color: white;
    font-size: 30px;
    text-decoration: none;
    transition: var(--transition-smooth);
}
.whatsapp-floating:hover {
    transform: scale(1.1) rotate(15deg);
    color: white;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.6);
}

/* Glassmorphism Header & Navbar */
.navbar-custom {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
    transition: var(--transition-smooth);
}

.navbar-custom .navbar-brand {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.6rem;
    letter-spacing: -0.5px;
}

.navbar-custom .nav-link {
    color: #cbd5e1 !important;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem !important;
    transition: var(--transition-smooth);
}

.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
    color: #E7AD33 !important;
}

/* Homepage Banner Carousel */
.hero-slider .carousel-item {
    height: 90vh;
    min-height: 500px;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.6) 0%, rgba(15, 23, 42, 0.9) 100%);
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 800px;
    text-align: left;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    color: #ffffff;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: #e2e8f0;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

/* Quick Search Widget */
.search-widget {
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-premium);
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

/* Premium Card Styles */
.destination-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 320px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    border: none;
}
.destination-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-premium);
}
.destination-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}
.destination-card:hover .destination-img {
    transform: scale(1.1);
}
.destination-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.1) 70%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
}
.destination-overlay h4 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 0.2rem;
}

/* Package Grid Cards */
.package-card {
    border-radius: 16px;
    background: white;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: var(--transition-smooth);
    border: 1px solid rgba(226, 232, 240, 0.8);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.package-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-premium);
    border-color: rgba(37, 99, 235, 0.2);
}
.package-card-img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}
.package-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}
.package-card:hover .package-card-img {
    transform: scale(1.05);
}
.package-badge-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(4px);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    letter-spacing: 0.5px;
}
.package-badge-duration {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(37, 99, 235, 0.9);
    backdrop-filter: blur(4px);
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
}
.package-card-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.package-card-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    transition: var(--transition-smooth);
}
.package-card:hover .package-card-title {
    color: var(--primary);
}
.package-card-price {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--dark);
    margin-top: auto;
}
.package-card-price span {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--gray-dark);
}

/* Call-to-Action CTA Banner */
.cta-banner {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    padding: 5rem 3rem;
    color: white;
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow-lg);
}

/* Testimonial slider layouts */
.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid var(--gray-light);
    box-shadow: var(--shadow-sm);
    text-align: left;
    margin: 15px;
}
.client-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-light);
}

/* Itinerary day timeline node */
.itinerary-timeline {
    position: relative;
    border-left: 2px solid var(--primary-light);
    padding-left: 30px;
    margin-left: 15px;
}
.itinerary-day {
    position: relative;
    margin-bottom: 2.5rem;
}
.itinerary-day-badge {
    position: absolute;
    left: -42px;
    top: 2px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.75rem;
    font-weight: 700;
    border: 4px solid white;
    box-shadow: 0 0 0 2px var(--primary-light);
}

/* Admin Dashboard layout and sidebar styling */
.admin-sidebar {
    background-color: var(--dark);
    min-height: 100vh;
    color: #94a3b8;
    border-right: 1px solid rgba(255,255,255,0.05);
}
.admin-sidebar .sidebar-heading {
    padding: 1.5rem 1rem;
    color: white;
    font-weight: 800;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.admin-sidebar .nav-link {
    color: #94a3b8;
    font-weight: 500;
    padding: 0.8rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 12px;
    border-radius: 8px;
    margin: 0.2rem 0.5rem;
    transition: var(--transition-smooth);
}
.admin-sidebar .nav-link:hover,
.admin-sidebar .nav-link.active {
    background-color: var(--primary);
    color: white !important;
}
.admin-header {
    background-color: white;
    border-bottom: 1px solid var(--gray-light);
    padding: 1rem 2rem;
}

/* Stats Counter Box */
.stat-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--primary);
    transition: var(--transition-smooth);
}
.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Image Gallery grids */
.gallery-grid-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 250px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-md);
}
.gallery-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}
.gallery-grid-item:hover img {
    transform: scale(1.08);
}
.gallery-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    opacity: 0;
    transition: var(--transition-smooth);
    padding: 1rem;
    text-align: center;
}
.gallery-grid-item:hover .gallery-hover-overlay {
    opacity: 1;
}

/* Responsive Overrides */
@media (max-width: 768px) {
    .hero-slider .carousel-item {
        height: 70vh;
    }
    .search-widget {
        margin-top: 0px;
    }
    .admin-sidebar {
        min-height: auto;
    }
}

@media (max-width: 576px) {
    .whatsapp-floating {
        bottom: 15px;
        right: 15px;
        width: 50px;
        height: 50px;
        font-size: 24px;
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
}

/* Footer High-Contrast Styling */
footer.bg-dark {
    background-color: #0f172a !important; /* Rich Dark Slate Blue */
    border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
}

footer.bg-dark h5 {
    color: #ffffff !important;
}

footer.bg-dark p, 
footer.bg-dark span {
    color: #cbd5e1 !important; /* Soft light grey text with very high contrast */
}

footer.bg-dark a.text-muted {
    color: #94a3b8 !important; /* Readable muted slate link color */
    transition: var(--transition-smooth);
}

footer.bg-dark a.text-muted:hover {
    color: #38bdf8 !important; /* Sky blue on hover */
    text-decoration: none;
    padding-left: 3px; /* Subtle interactive slide effect */
}

footer.bg-dark hr {
    border-color: rgba(255, 255, 255, 0.08) !important;
}

/* ==========================================================================
   FIGMA DESIGN INTEGRATION STYLES
   ========================================================================== */

/* Accent Yellow Elements */
.btn-yellow {
    background-color: var(--figma-yellow);
    border-color: var(--figma-yellow);
    color: var(--figma-blue) !important;
    font-weight: 600;
    border-radius: 8px;
    padding: 0.65rem 1.5rem;
    transition: var(--transition-smooth);
}
.btn-yellow:hover {
    background-color: var(--figma-yellow-hover);
    border-color: var(--figma-yellow-hover);
    color: var(--figma-blue) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(234, 179, 8, 0.35);
}

.text-yellow-color {
    color: var(--figma-yellow);
}

/* Navbar Logo */
.navbar-logo-img {
    max-height: 60px;
    min-height: 44px;
    max-width: 260px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}
@media (max-width: 991px) {
    .navbar-logo-img {
        max-height: 50px;
        min-height: 38px;
        max-width: 200px;
    }
}
@media (max-width: 576px) {
    .navbar-logo-img {
        max-height: 45px;
        min-height: 35px;
        max-width: 160px;
    }
}

/* Footer Logo */
.footer-logo-img {
    max-height: 60px;
    min-height: 42px;
    max-width: 250px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: var(--transition-smooth);
}
@media (max-width: 991px) {
    .footer-logo-img {
        max-height: 50px;
        min-height: 38px;
    }
}
@media (max-width: 576px) {
    .footer-logo-img {
        max-height: 45px;
        min-height: 35px;
    }
}

/* 1. Static Hero Collage Backdrop */
.hero-static {
    position: relative;
    min-height: 85vh;
    background: url('../images/hero-grid.png') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    padding: 6rem 0;
    overflow: hidden;
}
.hero-static::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 33, 55, 0.75) 0%, rgba(15, 23, 42, 0.95) 100%);
    z-index: 1;
}
.hero-static .container {
    position: relative;
    z-index: 2;
}
.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #ffffff;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}
.hero-content p {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: #cbd5e1;
    margin-bottom: 0;
    font-weight: 300;
    max-width: 720px;
}

/* Floating Search Panel Card */
.hero-search-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: var(--shadow-premium);
    padding: 1.75rem;
    border: 1px solid rgba(226, 232, 240, 0.8);
    margin-top: 3rem;
}
.hero-search-card label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #475569;
    margin-bottom: 0.4rem;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.hero-search-card .form-select,
.hero-search-card .form-control {
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    padding: 0.65rem 0.85rem;
    font-size: 0.95rem;
    color: #1e293b;
}
.hero-search-card .form-select:focus,
.hero-search-card .form-control:focus {
    border-color: var(--figma-yellow);
    box-shadow: 0 0 0 3px rgba(234, 179, 8, 0.2);
}

/* Value Propositions Bar */
.value-props-bar {
    background-color: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    padding: 1.75rem 0;
}
.prop-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.prop-item-icon {
    font-size: 2.2rem;
    color: var(--figma-blue);
    line-height: 1;
    margin-bottom: 0.5rem;
}
.prop-item-icon-rupee {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-white: true;
    background-color: var(--figma-blue);
    color: #ffffff;
    border-radius: 6px;
    width: 32px;
    height: 32px;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    font-family: var(--font-heading);
}
.prop-item-text {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--figma-blue);
    font-size: 1.05rem;
    margin-bottom: 0;
}

/* 2. Tour Cards Layout */
.pkg-grid-card {
    border-radius: 16px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}
.pkg-grid-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-premium);
    border-color: rgba(234, 179, 8, 0.25);
}
.pkg-img-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}
.pkg-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}
.pkg-grid-card:hover .pkg-img-wrapper img {
    transform: scale(1.05);
}
.pkg-overlay-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 40%;
    background: linear-gradient(to top, rgba(13, 33, 55, 0.95) 0%, rgba(13, 33, 55, 0.5) 60%, rgba(0,0,0,0) 100%);
    display: flex;
    align-items: flex-end;
    padding: 1.25rem 1.5rem;
    z-index: 2;
}
.pkg-title-price {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    color: #ffffff;
}
.pkg-title-price h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    flex: 1;
    line-height: 1.3;
}
.pkg-title-price .price-tag {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--figma-yellow);
    margin-left: 15px;
    white-space: nowrap;
}
.pkg-card-body {
    padding: 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.pkg-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
}
.pkg-duration {
    font-size: 0.9rem;
    font-weight: 500;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 6px;
}
.pkg-rating {
    color: var(--figma-yellow);
    font-size: 0.85rem;
}
.pkg-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
}
.pkg-actions .btn {
    flex: 1;
    font-size: 0.9rem;
    padding: 0.55rem 1rem;
}

/* 3. Why Choose Us Section with World Map Backdrop */
.why-choose-section {
    background: linear-gradient(rgba(248, 250, 252, 0.95), rgba(248, 250, 252, 0.95)), url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?auto=format&fit=crop&w=1920&q=80') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    padding: 6rem 0;
    position: relative;
}
.value-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2.25rem 2rem;
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    text-align: center;
    height: 100%;
}
.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(234, 179, 8, 0.35);
}
.value-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #eff6ff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    font-size: 1.75rem;
    color: var(--figma-blue);
}
.value-card h5 {
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--figma-blue);
    margin-bottom: 0.75rem;
}
.value-card p {
    font-size: 0.92rem;
    color: #64748b;
    margin-bottom: 0;
}

/* 4. Testimonials Dark Taj Mahal Section */
.testimonials-section {
    background: linear-gradient(rgba(13, 33, 55, 0.88), rgba(13, 33, 55, 0.92)), url('https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?auto=format&fit=crop&w=1920&q=80') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    padding: 6rem 0;
    color: #ffffff;
    position: relative;
}
.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13, 33, 55, 0.85);
    z-index: 1;
}
.testimonials-section .container {
    position: relative;
    z-index: 2;
}
.testimonials-section h2 {
    color: #ffffff;
}
.google-reviews-badge {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.25rem 2rem;
    display: inline-flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 3.5rem;
}
.google-reviews-badge img {
    height: 25px;
    width: auto;
}
.google-reviews-badge .rating-info {
    text-align: left;
}
.google-reviews-badge .rating-num {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
}
.google-reviews-badge .stars {
    color: var(--figma-yellow);
    font-size: 0.95rem;
}
.google-reviews-badge .reviews-count {
    font-size: 0.8rem;
    color: #cbd5e1;
}

.review-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1.5rem;
    color: #ffffff;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}
.review-card:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}
.review-card .client-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}
.review-card .client-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.2);
}
.review-card .client-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: #ffffff;
    margin-bottom: 0px;
}
.review-card .review-time {
    font-size: 0.75rem;
    color: #cbd5e1;
}
.review-card .stars {
    color: var(--figma-yellow);
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
}
.review-card p {
    font-size: 0.88rem;
    color: #e2e8f0;
    line-height: 1.5;
    margin-bottom: 1.25rem;
}
.review-card .platform-source {
    font-size: 0.75rem;
    color: #cbd5e1;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255,255,255,0.06);
}

/* 5. Contact Section & Form Card */
.escape-section {
    padding: 6.5rem 0;
    background-color: #ffffff;
}
.escape-form-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: var(--shadow-premium);
    padding: 2.5rem;
}
.escape-form-card label {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--figma-blue);
    margin-bottom: 0.5rem;
}
.escape-form-card label .required {
    color: var(--danger);
}
.escape-form-card .form-control,
.escape-form-card .form-select {
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    padding: 0.7rem 0.9rem;
    font-size: 0.95rem;
    color: #1e293b;
}
.escape-form-card .form-control:focus,
.escape-form-card .form-select:focus {
    border-color: var(--figma-yellow);
    box-shadow: 0 0 0 3px rgba(234, 179, 8, 0.25);
}
.escape-form-card .btn-submit {
    background-color: var(--figma-blue);
    color: #ffffff;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    transition: var(--transition-smooth);
    width: 100%;
}
.escape-form-card .btn-submit:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(13, 33, 55, 0.25);
}

