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

:root {
    /* Luxury Eco Color Palette */
    --bg-dark: #000c05; /* Black forest base */
    --bg-main: #00230a; /* Deep luxury forest green */
    --bg-light: #003810; /* Moss highlight */
    
    --card-bg: rgba(0, 16, 5, 0.75); /* Rich transparent obsidian glass */
    --card-hover: rgba(0, 26, 8, 0.9);
    
    --accent: #ffd000; /* Pure solar gold */
    --accent-hover: #ffe066;
    
    --eco-green: #00ff7f; /* Hyper vibrant leaf green */
    --eco-green-glow: rgba(0, 255, 127, 0.3);
    
    --text-white: #ffffff;
    --text-bright: #f4fff7; /* Crisp white-mint */
    --text-muted: #c2eed5; /* Mid-tone soft mint */
    --text-dim: #84bca1; /* Deep sage */
    
    --border-color: rgba(0, 255, 127, 0.2); 
    --border-glow: rgba(0, 255, 127, 0.4);
    
    --font-heading: 'Outfit', sans-serif;
    --font-main: 'Quicksand', sans-serif;
    
    --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 12px 40px rgba(0, 0, 0, 0.7);
    --shadow-glow: 0 0 30px rgba(0, 255, 127, 0.2);
    
    --radius: 20px;
    --radius-sm: 10px;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
    background-color: var(--bg-main);
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(0, 255, 127, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(255, 208, 0, 0.04) 0%, transparent 45%),
        radial-gradient(circle at 50% 50%, rgba(0, 16, 5, 0.5) 0%, var(--bg-dark) 100%);
    background-attachment: fixed;
    color: var(--text-bright);
    font-family: var(--font-main);
    line-height: 1.65;
    overflow-x: hidden;
    letter-spacing: -0.01em;
}

/* Container */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
header {
    background: rgba(0, 12, 5, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 255, 127, 0.15);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo a {
    color: var(--text-white);
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 900;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: -0.03em;
}

.logo span {
    color: var(--eco-green);
    text-shadow: 0 0 15px var(--eco-green-glow);
}

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

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 16px;
    transition: var(--transition);
}

.nav-links a:hover, .nav-links a.active {
    color: var(--eco-green);
    text-shadow: 0 0 10px var(--eco-green-glow);
}

.btn-admin {
    background: rgba(0, 255, 127, 0.08);
    border: 2px solid var(--eco-green);
    color: var(--eco-green) !important;
    padding: 8px 22px;
    border-radius: 30px;
    font-weight: 800;
    box-shadow: 0 0 15px rgba(0, 255, 127, 0.1);
    transition: var(--transition);
}

.btn-admin:hover {
    background: var(--eco-green);
    color: var(--bg-dark) !important;
    box-shadow: 0 0 25px var(--eco-green-glow);
    transform: translateY(-2px);
}

/* Selector Banner */
.tour-selector {
    background: rgba(0, 12, 5, 0.4);
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.selector-form {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.selector-label {
    font-family: var(--font-heading);
    font-weight: 900;
    color: var(--eco-green);
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.1em;
}

.selector-select {
    flex: 1;
    min-width: 280px;
    background: rgba(0, 35, 10, 0.6);
    border: 2px solid var(--border-color);
    color: var(--text-white);
    padding: 14px 20px;
    border-radius: var(--radius);
    outline: none;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 16px;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.selector-select:focus {
    border-color: var(--eco-green);
    box-shadow: 0 0 20px var(--eco-green-glow);
}

/* Layout Grid */
.tour-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
}

@media (max-width: 1024px) {
    .tour-layout {
        grid-template-columns: 1fr;
    }
}

/* Left main panel */
.tour-main-content {
    display: flex;
    flex-direction: column;
    gap: 45px;
}

/* Title Section */
.tour-title-section {
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.tour-title {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 15px;
    color: var(--text-white);
    letter-spacing: -0.02em;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.6);
}

.tour-stats {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 16px;
    font-weight: 700;
}

.rating-stars {
    color: var(--accent);
    letter-spacing: 3px;
    text-shadow: 0 0 10px rgba(255, 208, 0, 0.3);
}

.review-count-text {
    color: var(--text-muted);
}

.booked-count-text {
    color: var(--eco-green);
    background: rgba(0, 255, 127, 0.12);
    padding: 3px 15px;
    border-radius: 30px;
    border: 1px solid rgba(0, 255, 127, 0.3);
    font-weight: 800;
    box-shadow: 0 0 15px rgba(0, 255, 127, 0.1);
}

/* Gallery main view */
.gallery-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.gallery-main {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    height: 560px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-md);
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-main:hover img {
    transform: scale(1.04);
}

.gallery-thumbnails {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}

.thumb-item {
    border-radius: 12px;
    overflow: hidden;
    height: 90px;
    cursor: pointer;
    border: 2px solid transparent;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.75) contrast(1.1);
    transition: var(--transition);
}

.thumb-item:hover {
    transform: translateY(-2px);
}

.thumb-item:hover img {
    filter: brightness(1.05);
}

.thumb-item.active {
    border-color: var(--eco-green);
    box-shadow: 0 0 15px var(--eco-green-glow);
}

.thumb-item.active img {
    filter: brightness(1);
}

/* Itinerary accordion steps */
.itinerary-section {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 900;
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: -0.02em;
}

.section-title::before {
    content: "";
    display: inline-block;
    width: 5px;
    height: 28px;
    background: var(--eco-green);
    border-radius: 4px;
    box-shadow: 0 0 15px var(--eco-green-glow);
}

.step-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.step-card:hover {
    border-color: rgba(0, 255, 127, 0.4);
    background: var(--card-hover);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.step-card.active {
    border-color: rgba(255, 208, 0, 0.5);
    background: var(--card-hover);
    box-shadow: var(--shadow-md), 0 0 20px rgba(255, 208, 0, 0.05);
}

.step-header {
    padding: 22px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.step-title-container {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.step-thumb-preview {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow-sm);
}

.step-title-wrapper {
    display: flex;
    flex-direction: column;
}

.step-title-text {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    color: var(--accent);
}

.step-short-desc-text {
    font-size: 14.5px;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 4px;
}

.step-toggle-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 208, 0, 0.05);
    border: 1px solid rgba(255, 208, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 11px;
    transition: var(--transition);
}

.step-card.active .step-toggle-circle {
    transform: rotate(180deg);
    background: rgba(255, 208, 0, 0.12);
    border-color: var(--accent);
}

.step-card.active .step-short-desc-text {
    display: none;
}


.step-content {
    padding: 0 28px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.step-card.active .step-content {
    padding: 15px 28px 28px 28px;
    max-height: 2000px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.step-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 5px;
    margin-bottom: 25px;
}

.step-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15.5px;
    font-weight: 600;
    color: var(--text-bright);
}

.step-bullets li::before {
    content: "✦";
    color: var(--eco-green);
    font-size: 16px;
    line-height: 1.2;
}

.step-images-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.step-image-item {
    border-radius: 14px;
    overflow: hidden;
    height: 320px; /* Highly detailed portrait format */
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-sm);
}

.step-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.step-image-item:hover img {
    transform: scale(1.08);
}

/* Sidebar structure */
.booking-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Red Bestseller Badge */
.bestseller-badge {
    background: linear-gradient(135deg, #ff414d 0%, #d61c28 100%);
    color: var(--text-white);
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 900;
    padding: 10px 20px;
    border-radius: 30px;
    display: inline-block;
    align-self: flex-start;
    box-shadow: 0 6px 20px rgba(214, 28, 40, 0.4);
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

/* Description card in sidebar */
.sidebar-desc {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 24px;
    text-align: justify;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Tour stats list */
.sidebar-tour-details-list {
    background: transparent;
    border: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sidebar-tour-details-list .detail-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 14px 20px;
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 20px;
    align-items: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.sidebar-tour-details-list .detail-item:hover {
    border-color: rgba(0, 255, 127, 0.45);
    background: var(--card-hover);
    transform: translateX(4px);
}

.sidebar-tour-details-list span.lbl {
    color: var(--accent);
    font-family: var(--font-heading);
    font-weight: 900;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.05em;
}

.sidebar-tour-details-list span.val {
    color: var(--text-white);
    text-align: left;
    line-height: 1.5;
    font-weight: 700;
}

.activity-badges-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 5px;
}

.activity-badge-item {
    background: rgba(0, 255, 127, 0.1);
    color: var(--eco-green);
    border: 1px solid rgba(0, 255, 127, 0.25);
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 12.5px;
    font-weight: 800;
}

/* Price Box Gradient */
.pricing-sidebar-box {
    background: linear-gradient(135deg, rgba(0, 46, 12, 0.9) 0%, rgba(0, 16, 5, 0.8) 100%);
    border: 2px solid var(--eco-green);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow-md), var(--shadow-glow);
    display: flex;
    flex-direction: column;
    gap: 22px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.pricing-sidebar-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 900;
    color: var(--eco-green);
    border-bottom: 1px solid rgba(0, 255, 127, 0.2);
    padding-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.pricing-sidebar-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pricing-sidebar-val {
    font-size: 26px;
    font-weight: 900;
    color: var(--accent);
    text-shadow: 0 0 10px rgba(255, 208, 0, 0.2);
}

.btn-book-now {
    background: var(--eco-green) !important;
    color: #000c05 !important;
    border: none;
    border-radius: 12px;
    padding: 16px;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 900;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 15px rgba(0, 255, 127, 0.2);
}

.btn-book-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--eco-green-glow);
    filter: brightness(1.15);
}

.pricing-sidebar-booked-info {
    font-size: 14px;
    color: var(--text-muted);
    text-align: center;
    font-weight: 800;
}

.pricing-badges-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 18px;
}

.pricing-badge-item {
    font-size: 14px;
    color: var(--text-bright);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-badge-item::before {
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300ff7f' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

/* WhatsApp gold button */
.btn-whatsapp-sidebar {
    background: var(--accent);
    color: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px;
    border-radius: 12px;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 16px;
    text-decoration: none;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.btn-whatsapp-sidebar:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 208, 0, 0.4);
}

/* Form inputs */
.booking-form-sidebar {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.booking-form-sidebar .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.booking-form-sidebar .form-label {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 900;
    color: var(--eco-green);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.booking-form-sidebar .form-control {
    background: rgba(0, 0, 0, 0.35);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 14px;
    color: var(--text-white);
    outline: none;
    font-family: var(--font-main);
    font-size: 15px;
    font-weight: 600;
    transition: var(--transition);
}

.booking-form-sidebar .form-control:focus {
    border-color: var(--eco-green);
    box-shadow: 0 0 15px var(--eco-green-glow);
}

.checkbox-list-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checkbox-item-label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    color: var(--text-bright);
}

.checkbox-item-label input {
    accent-color: var(--eco-green);
    width: 18px;
    height: 18px;
}

.radio-toggle-row {
    display: flex;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.25);
}

.radio-toggle-label {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 900;
    cursor: pointer;
    color: var(--text-muted);
    transition: var(--transition);
}

.radio-toggle-label input {
    display: none;
}

.radio-toggle-label.selected {
    background: var(--eco-green);
    color: var(--bg-dark);
}

/* Policies */
.bottom-policies-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 35px 45px;
    margin-top: 50px;
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

@media (max-width: 768px) {
    .bottom-policies-row {
        grid-template-columns: 1fr;
        padding: 30px;
    }
}

.policy-block-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 900;
    color: var(--eco-green);
    margin-bottom: 20px;
    border-left: 5px solid var(--eco-green);
    padding-left: 14px;
    letter-spacing: -0.01em;
}

.policy-block-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.policy-block-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15.5px;
    font-weight: 700;
    color: var(--text-bright);
}

.policy-block-list li::before {
    content: "■";
    color: var(--accent);
    font-size: 12px;
    margin-top: 4px;
}

.policy-more-link {
    color: var(--eco-green);
    text-decoration: none;
    font-weight: 800;
    font-family: var(--font-heading);
    font-size: 14px;
    display: inline-block;
    transition: var(--transition);
}

.policy-more-link:hover {
    text-shadow: 0 0 10px var(--eco-green-glow);
    transform: translateX(6px);
}

/* Reviews Carousel */
.tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.tab {
    border: 2px solid #e8efe8;
    background: #ffffff;
    color: #12351c;
    border-radius: 999px;
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.tab.active {
    background: #eef7ef; 
    color: #12351c;
    border-color: #12351c; 
}

.tab:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
}

.mobile-filter {
    display: none;
    width: 100%;
    max-width: 320px;
    padding: 12px 16px;
    border-radius: 12px;
    border: 2px solid #e8efe8;
    background: #ffffff;
    color: #12351c;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 800;
    outline: none;
    margin: 0 auto 25px;
}

@media(max-width: 768px) {
    .tabs { display: none !important; }
    .mobile-filter { display: block; }
}

.reviews-carousel-container {
    position: relative;
    width: 100%;
}

.reviews-grid {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 5px 25px 5px;
    scrollbar-width: none; 
}

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

/* White card design */
.review-card {
    flex: 0 0 380px; 
    background: #ffffff;
    color: #111827;
    border: 1px solid #e8efe8;
    border-radius: 22px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
    padding: 24px;
    display: flex;
    flex-direction: column;
    min-height: 370px;
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.25);
}

.review-top {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 12px;
}

.review-author {
    display: flex;
    gap: 12px;
    min-width: 0;
    align-items: center;
}

.avatar {
    width: 52px;
    height: 52px;
    border-radius: 999px;
    object-fit: cover;
    background: #E5E7EB;
    flex: 0 0 auto;
    border: 1px solid #e8efe8;
}

.name {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.15;
    color: #111827;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.date {
    margin-top: 5px;
    color: #9CA3AF;
    font-size: 13px;
    font-weight: 700;
}

.source {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: #E9F8EF;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
}

.source svg {
    width: 26px;
    height: 26px;
    display: block;
}

.rating {
    display: flex;
    gap: 7px;
    margin: 8px 0 13px;
}

.dot {
    width: 15px;
    height: 15px;
    border-radius: 999px;
    background: #33E0A0;
    position: relative;
}

.dot:after {
    content: "";
    position: absolute;
    inset: -3px;
    border-radius: 999px;
    border: 1.5px solid #33E0A0;
}

.review-title {
    margin: 0 0 8px;
    color: #0F6B3A;
    font-size: 18px;
    line-height: 1.25;
    font-weight: 900;
}

.review-text-container {
    height: 120px;
    overflow-y: auto;
    margin-bottom: 12px;
    padding-right: 6px;
}

.review-text-container::-webkit-scrollbar {
    width: 4px;
}

.review-text-container::-webkit-scrollbar-thumb {
    background: #dddddd;
    border-radius: 2px;
}

.review-text {
    margin: 0;
    color: rgba(17, 24, 39, 0.72);
    font-size: 15px;
    line-height: 1.6;
    font-weight: 600;
    text-align: justify;
}

.review-link {
    margin-top: auto;
    padding-top: 16px;
    display: inline-flex;
    align-items: center;
    color: #0F7C2F;
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
    border-top: 1px solid #f3f4f6;
    width: 100%;
}

.review-link:hover {
    text-decoration: underline;
}

/* Dots and Slider Arrows styling */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    margin-bottom: 30px;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.carousel-dot.active {
    background: #0084ff; 
    transform: scale(1.2);
}

/* Carousel Side Navigation Buttons */
.carousel-arrow-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: #ffffff;
    border: 2px solid #e8efe8;
    color: #12351c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: var(--transition);
    z-index: 10;
}

.carousel-arrow-btn:hover {
    background: #eef7ef;
    transform: translateY(-50%) scale(1.05);
}

.carousel-arrow-btn-left {
    left: -24px;
}

.carousel-arrow-btn-right {
    right: -24px;
}

@media(max-width: 1300px) {
    .carousel-arrow-btn {
        display: none !important;
    }
}

/* Bottom columns segments */
.bottom-three-columns {
    display: grid;
    grid-template-columns: 1fr 1fr 320px;
    gap: 40px;
    margin-top: 50px;
    margin-bottom: 100px;
}

@media (max-width: 1024px) {
    .bottom-three-columns {
        grid-template-columns: 1fr;
    }
}

.col-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 900;
    color: var(--accent);
    margin-bottom: 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 12px;
    letter-spacing: -0.01em;
}

.accordion-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.acc-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.acc-card:hover {
    background: var(--card-hover);
    border-color: rgba(0, 255, 127, 0.4);
}

.acc-card.active {
    border-color: rgba(255, 208, 0, 0.35);
}

.acc-header {
    padding: 18px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 16px;
    color: var(--text-bright);
}

.acc-content {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.acc-card.active .acc-content {
    padding: 12px 24px 24px 24px;
    max-height: 400px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 14.5px;
    color: var(--text-muted);
    font-weight: 600;
}

.acc-toggle-icon {
    font-size: 11px;
    color: var(--accent);
    transition: var(--transition);
}

.acc-card.active .acc-toggle-icon {
    transform: rotate(180deg);
}

/* Reviews Breakdown Card */
.mini-reviews-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.mini-reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 14px;
}

.mini-reviews-score {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 900;
    color: var(--text-white);
}

.mini-breakdown-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.mini-breakdown-item {
    display: flex;
    flex-direction: column;
}

.mini-item-label-stars {
    display: flex;
    justify-content: space-between;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--text-muted);
}

.mini-stars-yellow {
    color: var(--accent);
    letter-spacing: 1px;
}
