:root {
    --primary-color: #F77F00;
    /* Sunset Orange */
    --primary-hover: #D66D00;
    --bg-dark: #003049;
    /* Deep Ocean Blue */
    --text-dark: #333333;
    --text-light: #FDFDFD;
    --bg-light: #F5EFEB;
    /* Sand */
    --card-bg: #FFFFFF;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);

    /* Fluid Spacing & Typography */
    --section-padding: clamp(4rem, 8vw, 8rem);
    --h1-size: clamp(2.5rem, 8vw, 4.5rem);
    --h2-size: clamp(2rem, 5vw, 3rem);
}

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

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

a {
    text-decoration: none;
    color: inherit;
}

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

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

h1 {
    font-size: var(--h1-size);
}

h2 {
    font-size: var(--h2-size);
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    padding: 0.8rem 0;
}

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

.navbar.scrolled .btn-primary-outline {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    height: clamp(40px, 6vw, 60px);
    transition: var(--transition);
}

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

.nav-links a {
    color: var(--text-light);
    /* Default transparent header text */
    font-weight: 500;
    transition: var(--transition);
}

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

.btn-primary-outline {
    border: 2px solid var(--text-light);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    transition: var(--transition);
}

.btn-primary-outline:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-light) !important;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-light);
    margin: 4px 0;
    transition: 0.4s;
}

.navbar.scrolled .bar {
    background-color: var(--text-dark);
}

/* HERO SECTION */
.hero {
    height: 100vh;
    min-height: 600px;
    background: url('assets/images/hero.png') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    padding: 0 1rem;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
    animation: fadeIn 1s ease-out;
}

.hero-content h1 {
    font-size: var(--h1-size);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-weight: 500;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background: var(--primary-hover);
    border-color: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(247, 127, 0, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    color: var(--text-light);
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-weight: 500;
    border: 2px solid var(--text-light);
    transition: var(--transition);
}

.btn-secondary:hover {
    background: var(--text-light);
    color: var(--text-dark);
    transform: translateY(-3px);
}

/* ABOUT SECTION */
.about {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, #E8E2DE 100%);
}

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

.about-text h2 {
    font-size: var(--h2-size);
    color: var(--bg-dark);
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.about-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.about-img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    aspect-ratio: 4/5;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-img:hover {
    transform: translateY(-10px);
}

.about-image-grid img:nth-child(2) {
    transform: translateY(2rem);
}

.about-image-grid img:nth-child(2):hover {
    transform: translateY(calc(2rem - 10px));
}

/* CUISINE SECTION */
.cuisines {
    padding: var(--section-padding) 0;
    background-color: white;
}

.section-title {
    text-align: center;
    font-size: var(--h2-size);
    color: var(--bg-dark);
    margin-bottom: 4rem;
}

.cuisine-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.cuisine-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    cursor: pointer;
}

.cuisine-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.cuisine-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.cuisine-card:hover img {
    transform: scale(1.05);
}

.card-content {
    padding: 2rem;
    text-align: center;
}

.card-content h3 {
    font-size: 1.5rem;
    color: var(--bg-dark);
    margin-bottom: 0.5rem;
}

.card-content p {
    color: #666;
    font-size: 0.95rem;
}

/* CATERING SECTION */
.catering {
    padding: var(--section-padding) 0;
    background-color: var(--card-bg);
}

.catering-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.premium-text {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 1.5rem;
}

.catering-list {
    list-style: none;
    margin-top: 1.5rem;
}

.catering-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.check-icon {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: var(--primary-color);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

.catering-image {
    position: relative;
}

.catering-img-element {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.catering-img-element:hover {
    transform: scale(1.02);
}

/* VILLA PACKAGES SECTION */
.villa-packages {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, #F5EFEB 0%, #E8E2DE 100%);
}

.villa-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.package-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.package-card {
    background: var(--card-bg);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: 1px solid rgba(247, 127, 0, 0.1);
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.package-icon {
    width: 60px;
    height: 60px;
    background: rgba(247, 127, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary-color);
}

.package-icon svg {
    width: 32px;
    height: 32px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.package-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--bg-dark);
}

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

/* PACKAGE TIERS */
.tier-title {
    text-align: center;
    font-size: 2rem;
    color: var(--bg-dark);
    margin: 4rem 0 2.5rem;
}

.tier-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: center;
    margin-bottom: 3rem;
}

.tier-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: 1px solid #eee;
}

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

.tier-card.silver {
    border-top: 5px solid #C0C0C0;
}

.tier-card.gold {
    border-top: 5px solid #FFD700;
    transform: scale(1.05);
    background: #fffdf2;
    border-color: #fce680;
    z-index: 2;
}

.tier-card.gold:hover {
    transform: scale(1.05) translateY(-10px);
}

.tier-card.platinum {
    border-top: 5px solid #E5E4E2;
    background: #fdfdfd;
}

.tier-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FFDF40, #FFB800);
    color: #111;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(255, 184, 0, 0.4);
}

.tier-card h4 {
    font-size: 1.5rem;
    color: var(--bg-dark);
    margin-bottom: 0.5rem;
}

.tier-price {
    font-family: var(--font-body);
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 2rem;
}

.tier-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.tier-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    color: #555;
    font-size: 0.95rem;
    position: relative;
    padding-left: 1.5rem;
}

.tier-features li:last-child {
    border-bottom: none;
}

.tier-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* ORDER ONLINE SECTION */
.order-online {
    padding: var(--section-padding) 0;
    background-color: white;
}

.direct-order-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.order-card {
    background: var(--card-bg);
    padding: 3rem 2rem;
    border-radius: 25px;
    text-align: center;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.order-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--bg-dark);
}

.order-card p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.order-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.order-icon svg {
    width: 35px;
    height: 35px;
}

.order-card.phone-order:hover {
    border-color: var(--primary-color);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.15);
}

.order-card.phone-order .order-icon {
    background: var(--primary-color);
    color: var(--bg-dark);
}

.order-card.whatsapp:hover {
    border-color: #25D366;
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.15);
}

.order-card.whatsapp .order-icon {
    background: #25D366;
    color: white;
}

.order-btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 30px;
    font-weight: 600;
    font-family: var(--font-body);
    transition: var(--transition);
}

.order-card.whatsapp .order-btn {
    background: #25D366;
    color: white;
}

.phone-order .order-btn {
    background: var(--primary-color);
    color: var(--bg-dark);
}

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

.order-card:hover .order-btn {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* CONTACT SECTION */
.contact {
    padding: var(--section-padding) 0;
    background: linear-gradient(225deg, var(--bg-light) 0%, #E8E2DE 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-form {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(247, 127, 0, 0.1);
}

.form-status {
    margin-top: 1rem;
    text-align: center;
    font-weight: 500;
}

.contact-info-container {
    padding: 2rem 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.contact-item .icon {
    color: var(--primary-color);
    background: white;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
}

.contact-item h4 {
    font-family: var(--font-body);
    font-size: 1.2rem;
    color: var(--bg-dark);
    margin-bottom: 0.2rem;
}

.contact-item p {
    color: #666;
}



/* HEADER SOCIALS */
.header-socials {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-left: 1rem;
    padding-left: 1rem;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.header-socials a {
    color: #444;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.header-socials a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .header-socials {
        display: none;
        /* Hide on mobile for extreme minimalism */
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* REVEAL ON SCROLL */
.reveal-hidden {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.revealed {
    opacity: 1;
    transform: translateY(0);
}

.cuisine-grid .cuisine-card:nth-child(2) {
    transition-delay: 0.1s;
}

.cuisine-grid .cuisine-card:nth-child(3) {
    transition-delay: 0.2s;
}

.cuisine-grid .cuisine-card:nth-child(4) {
    transition-delay: 0.3s;
}

/* BACK TO TOP */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-hover);
    transform: translateY(-5px);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }

    .about-grid {
        gap: 2rem;
    }

    .cuisine-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .package-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-image-grid {
        max-width: 600px;
        margin: 0 auto;
    }

    .about-image-grid img:nth-child(2) {
        transform: translateY(0);
    }

    .about-image-grid img:nth-child(2):hover {
        transform: translateY(-10px);
    }

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

    .catering-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .catering-list li {
        justify-content: center;
    }

    .direct-order-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .tier-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .tier-card.gold {
        transform: none;
    }

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

@media (max-width: 768px) {
    .hamburger {
        display: block;
        z-index: 1001;
    }

    .nav-links {
        position: fixed;
        right: -100%;
        top: 0;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(20px);
        width: 80%;
        max-width: 400px;
        height: 100vh;
        text-align: center;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        justify-content: center;
        padding: 2rem;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        color: var(--text-dark);
        font-size: 1.5rem;
    }

    .navbar.scrolled .bar,
    .hamburger.active .bar {
        background-color: var(--text-dark);
    }

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

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

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

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

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

@media (max-width: 600px) {
    .cuisine-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }

    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }

    .contact-item .icon {
        margin: 0 auto;
    }

    .section-title {
        margin-bottom: 2.5rem;
    }

    .package-timeline {
        grid-template-columns: 1fr;
    }
}

/* TESTIMONIALS SECTION */
.testimonials {
    padding: var(--section-padding) 0;
    background-color: #fcfcfc;
    overflow: hidden;
}

.reviews-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
}

.review-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.review-card {
    min-width: 100%;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    margin: 0 15px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    border: 1px solid #f0f0f0;
    flex: 0 0 calc(100% - 30px);
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--bg-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.review-stars {
    color: #ffb800;
    font-size: 1rem;
    letter-spacing: 2px;
}

.review-text {
    font-style: italic;
    font-size: 1.2rem;
    line-height: 1.6;
    color: #444;
}

.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #f5f5f5;
}

.review-date {
    font-size: 0.85rem;
    color: #999;
}

.google-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
}

.review-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
}

.review-controls button {
    background: none;
    border: 1px solid #ddd;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #555;
}

.review-controls button:hover {
    background: var(--bg-dark);
    color: white;
    border-color: var(--bg-dark);
}

.review-dots {
    display: flex;
    gap: 0.8rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary-color);
    transform: scale(1.3);
}

@media (min-width: 1024px) {
    .review-card {
        min-width: calc(33.333% - 30px);
        flex: 0 0 calc(33.333% - 30px);
    }

    .review-track {
        transform: none !important;
        justify-content: center;
    }

    .review-controls {
        display: none;
    }
}

/* DIRECTIONS BUTTON */
.directions-link {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: 1.2rem;
    padding: 0.8rem 1.5rem;
    background: var(--bg-dark);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
    border: 1px solid transparent;
}

.directions-link:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

.directions-link svg {
    transition: var(--transition);
}

.directions-link:hover svg {
    transform: rotate(45deg);
}