/* --- Variables & Reset --- */
:root {
    --primary-color: #d4af37;
    /* Gold */
    --secondary-color: #1a2a3a;
    /* Deep Navy Blue */
    --accent-color: #c0392b;
    /* Moroccan Red hint */
    --text-dark: #1a2a3a;
    --text-light: #f4f4f4;
    --bg-light: #ffffff;
    /* White background for clean look */
    --bg-off-white: #f9f9f9;
    /* Slight off-white for section distinction */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s ease;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
    position: relative;
}

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

.section-subtitle {
    display: block;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

/* --- Buttons --- */
.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: #fff;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    border: 2px solid var(--primary-color);
}

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

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #fff;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid #fff;
    margin-left: 15px;
}

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

.btn-text {
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-text:hover {
    gap: 12px;
    color: var(--secondary-color);
}


/* --- Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
}

.logo span {
    color: var(--primary-color);
}

.navbar.scrolled .logo {
    color: var(--secondary-color);
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: #fff;
    font-weight: 500;
    font-size: 0.95rem;
}

.navbar.scrolled .nav-links a {
    color: var(--secondary-color);
}

.navbar.scrolled .nav-links a:hover {
    color: var(--primary-color);
}

.navbar.scrolled .nav-links li:last-child a {
    color: #fff;
}

/* Keep button white text */

/* Default: Hidden on desktop */
.menu-toggle {
    display: none;
    cursor: pointer;
}

/* Mobile: Show button */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        color: #fff;
        font-size: 1.5rem;
        background: none;
        border: none;
        z-index: 1001;
    }
}



/* --- Hero Section --- */
.hero {
    height: 100vh;
    min-height: 600px;
    /* Use one of the camel images as bg if provided, else use a placeholder or specific hero asset if renamed */
    background: url('assets/camel-ride.png') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(26, 42, 58, 0.4), rgba(26, 42, 58, 0.7));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    /* Improve legibility on bright backgrounds */
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}


/* --- About Section --- */
.about-section {
    background-color: var(--bg-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-image {
    border-radius: 10px;
    box-shadow: var(--shadow);
    width: 100%;
}

.image-decoration {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    border-left: 5px solid var(--primary-color);
    border-bottom: 5px solid var(--primary-color);
    z-index: -1;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.bio-text p {
    margin-bottom: 15px;
    color: #555;
    font-size: 1.05rem;
}

.quote-box {
    margin-top: 30px;
    padding: 20px;
    border-left: 3px solid var(--primary-color);
    background: var(--bg-off-white);
    font-style: italic;
    color: var(--secondary-color);
}


/* --- Tours Section --- */
.tours-section {
    background-color: var(--bg-off-white);
}

.section-header {
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.tour-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.tour-image {
    height: 250px;
    overflow: hidden;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

/* Why Choose Me Section */
.why-section {
    background-color: #f9f9f9;
    /* Light background to distinguish */
}

.section-intro {
    max-width: 800px;
    margin: 0 auto 40px auto;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.why-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 3px solid var(--primary-color);
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.custom-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.why-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.why-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

.why-list {
    list-style: none;
    padding: 0;
    margin-bottom: 10px;
}

.why-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 5px;
    color: #666;
    font-size: 0.95rem;
}

.why-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Why Showcase Images */
.why-showcase {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
}

.showcase-main img,
.showcase-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease;
}

.showcase-main img:hover,
.showcase-side img:hover {
    transform: scale(1.02);
}

.showcase-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.showcase-side img {
    height: calc(50% - 10px);
}

@media (max-width: 768px) {
    .why-showcase {
        grid-template-columns: 1fr;
        height: auto;
    }

    .showcase-side {
        flex-direction: row;
        height: 200px;
    }

    .showcase-main {
        height: 250px;
    }
}

/* Gallery Section */
.gallery-hero {
    height: 50vh;
    min-height: 300px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('assets/camel-ride.png');
    /* Fallback or specific hero image */
}

.gallery-grid {
    column-count: 3;
    column-gap: 20px;
}

@media (max-width: 900px) {
    .gallery-grid {
        column-count: 2;
    }
}

@media (max-width: 600px) {
    .gallery-grid {
        column-count: 1;
    }
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img {
    width: 100%;
    display: block;
    border-radius: 10px;
    transition: transform 0.5s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s;
}

.lightbox-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 1000px;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.lightbox-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
}

.lightbox-close {
    position: absolute;
    top: 25px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.lightbox-close:hover,
/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #20b958;
    color: white;
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }
}

.price-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary-color);
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.tour-content {
    padding: 25px;
}

.tour-content h3 {
    margin-bottom: 5px;
    font-size: 1.4rem;
}

.tour-duration {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.tour-content p:not(.tour-duration) {
    color: #666;
    margin-bottom: 0;
}


/* --- Heritage Section --- */
.heritage-section {
    background-color: var(--secondary-color);
    color: #fff;
    overflow: hidden;
}

.heritage-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.heritage-content h2 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.heritage-content .section-subtitle {
    color: var(--primary-color);
}

.heritage-content p {
    opacity: 0.9;
    margin-bottom: 30px;
}

.feature-list {
    margin-bottom: 40px;
    display: grid;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px;
    border-radius: 50%;
}

.heritage-image {
    border-radius: 12px;
    overflow: hidden;
    border: 5px solid rgba(255, 255, 255, 0.1);
}


/* --- Transport Section --- */
.transport-section {
    background-color: var(--bg-light);
}

.transport-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
    text-align: center;
    align-items: center;
}

.transport-text {
    max-width: 800px;
}

.transport-text h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.transport-text p {
    color: #555;
}

.transport-images {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 20px;
    /* Space for scrollbar if any */
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
}

.transport-img {
    height: 300px;
    width: auto;
    border-radius: 10px;
    box-shadow: var(--shadow);
    object-fit: cover;
}


/* --- Contact Section --- */
.contact-section {
    background-color: var(--bg-off-white);
    padding-bottom: 40px;
}

.contact-lead {
    margin-bottom: 50px;
    color: #555;
    font-size: 1.2rem;
}

.contact-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-10px);
}

.contact-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: inline-block;
}

.contact-card h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.contact-card a,
.contact-card p {
    color: #666;
    font-weight: 500;
}

.contact-card a:hover {
    color: var(--primary-color);
}


/* --- Footer --- */
.footer {
    background-color: #111;
    color: #fff;
    padding: 40px 0;
    text-align: center;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-logo span {
    color: var(--primary-color);
}

.copyright {
    color: #777;
    font-size: 0.9rem;
}


/* --- Animations --- */
.fade-in-up,
.fade-in-left,
.fade-in-right {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s ease;
}

.fade-in-left {
    transform: translateX(-30px);
}

.fade-in-right {
    transform: translateX(30px);
}

.visible {
    opacity: 1;
    transform: translate(0, 0);
}

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}


/* --- Responsive --- */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .menu-toggle {
        display: block;
        color: #fff;
        font-size: 1.5rem;
        background: none;
        border: none;
        z-index: 1001;
    }

    .navbar.scrolled .menu-toggle {
        color: var(--secondary-color);
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        padding: 30px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-200%);
        transition: transform 0.4s ease;
    }

    .nav-links.nav-active {
        transform: translateY(0);
    }

    /* Make links dark on mobile since bg is white */
    .nav-links a,
    .navbar.scrolled .nav-links a {
        color: var(--secondary-color);
    }

    .about-grid,
    .heritage-container {
        grid-template-columns: 1fr;
    }

    .about-image-wrapper {
        order: -1;
    }

    /* Image on top mobile */
    .heritage-image {
        order: -1;
    }

    .transport-images {
        flex-direction: column;
        align-items: center;
    }

    .transport-img {
        max-width: 100%;
        height: auto;
    }
}


/* --- Reviews Section --- */
.reviews-section {
    background-color: var(--bg-light);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--primary-color);
    position: relative;
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.review-stars {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.review-card p {
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.reviewer-info strong {
    display: block;
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.reviewer-info span {
    font-size: 0.9rem;
    color: #888;
}

/* --- Contact Form --- */
.contact-wrapper {
    display: flex;
    flex-direction: column;
    gap: 50px;
    align-items: center;
}

.contact-form-container {
    width: 100%;
    max-width: 600px;
    margin-top: 20px;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
    background-color: #fff;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

.form-group textarea {
    resize: vertical;
}

/* Adjust contact cards to not be full width in wrapper */
.contact-cards {
    width: 100%;
}

/* --- Meet Guide Section (V2: Overlap & Animated) --- */
.meet-section {
    background-color: var(--bg-light);
    padding-bottom: 100px;
    overflow: hidden;
}

.meet-container {
    padding-top: 50px;
}

/* Overlap Layout */
.meet-overlap-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 80px;
}

.meet-bg-image {
    width: 80%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    /* Animation: Subtle Zoom */
    animation: zoomSlow 20s infinite alternate;
}

.meet-content-card {
    position: absolute;
    bottom: -50px;
    left: 10%;
    width: 45%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-left: 5px solid var(--primary-color);
}

.meet-content-card h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.meet-intro {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.8;
}

/* Features Grid */
.meet-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 80px;
}

.animated-card {
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border-top: 3px solid transparent;
}

.animated-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-top: 3px solid var(--primary-color);
}

.card-icon-wrapper {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px auto;
    background: linear-gradient(135deg, var(--primary-color), #f1c40f);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
    /* Pulse Animation */
    animation: pulseGlow 3s infinite;
}

.animated-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.animated-card p {
    color: #666;
    line-height: 1.6;
}

/* Animations */
@keyframes zoomSlow {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(212, 175, 55, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

/* --- Reviews Section (Carousel) --- */
.reviews-section {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 80px 0;
}

.reviews-section .section-subtitle {
    color: var(--primary-color);
}

.reviews-section h2 {
    color: #fff;
    margin-bottom: 50px;
}

.reviews-carousel-wrapper {
    position: relative;
    padding: 0 50px;
    /* Space for buttons */
}

.reviews-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    /* Ensure smooth scrolling */
    gap: 30px;
    padding-bottom: 20px;
    /* Space for shadow/scrollbar if visible */

    /* Hide scrollbar */
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
}

.reviews-carousel::-webkit-scrollbar {
    display: none;
}

.review-card {
    min-width: 350px;
    /* Desktop width */
    display: flex;
    /* Make it a flex container */
    flex-direction: column;
    /* Force vertical stacking */
    flex: 0 0 auto;
    background: rgba(255, 255, 255, 0.15);
    /* Increased opacity for visibility */
    /* Glassy effect on dark bg */
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    /* Stronger border */
    scroll-snap-align: center;
    transition: transform 0.3s ease, background 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    /* Added shadow for depth */
    white-space: normal;
    /* Force text wrapping */
}

.review-card:hover {
    background: rgba(255, 255, 255, 0.25);
    /* Brighter on hover */
    transform: translateY(-5px);
}

.review-stars {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.review-card p {
    font-size: 1rem;
    /* Slightly larger text */
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
    opacity: 1;
    /* Full opacity for text */
    color: #ffffff;
    font-weight: 500;
    /* Slightly thicker */
}

.reviewer-info strong {
    display: block;
    font-size: 1.1rem;
    color: var(--primary-color);
}

.reviewer-info span {
    font-size: 0.85rem;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Carousel Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

/* Responsive */
@media (max-width: 900px) {
    .meet-overlap-wrapper {
        flex-direction: column;
    }

    .meet-bg-image {
        width: 100%;
        height: 300px;
    }

    .meet-content-card {
        position: relative;
        width: 90%;
        bottom: 0;
        left: 0;
        margin-top: -50px;
        /* Overlap effect */
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .reviews-carousel-wrapper {
        padding: 0 10px;
        /* Small breathing room */
    }

    .carousel-btn {
        display: none;
        /* Swipe only */
    }

    .review-card {
        width: 85vw;
        /* Fixed width relative to viewport */
        min-width: 85vw;
        max-width: 85vw;
        flex: 0 0 auto;
        /* Do not grow/shrink */
        padding: 20px;
        margin-right: 0;
        white-space: normal;
        /* Ensure text wraps */
        word-wrap: break-word;
        /* Break long words if any */
    }

    .review-card p {
        font-size: 0.95rem;
        /* Ensure readable font size */
        margin-bottom: 15px;
    }

    .reviews-carousel {
        gap: 15px;
        /* Tighter gap */
        scroll-padding: 0 10px;
        /* Align snap with wrapper padding */
    }
}