/* === GOOGLE FONT IMPORT === */
@import url('https://fonts.googleapis.com/css2?family=Garamond:wght@700&family=Montserrat:wght@400;600;700&display=swap');

/* === CSS RESET & GLOBAL STYLES === */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* Light Mode Palette */
    --bg-color-light: #F5F7FA;
    /* Light Gray-Blue */
    --text-color-light: #1a365d;
    --primary-color-light: #0F4C81;
    /* Deep Teal-Blue */
    --secondary-color-light: #FF6B35;
    /* Vibrant Orange */
    --accent-color-light: #FF8C61;
    --card-bg-light: #fff;
    --footer-bg-light: #E8EDF2;

    /* Dark Mode Palette (UPDATED COLORS) */
    --bg-color-dark: #0A1929;
    --text-color-dark: #E3F2FD;
    --primary-color-dark: #4FC3F7;
    /* Light Blue */
    --secondary-color-dark: #FF6B35;
    /* Vibrant Orange */
    --accent-color-dark: #FF8C61;
    /* Lighter Orange */
    --card-bg-dark: #132F4C;
    --footer-bg-dark: #061523;

    /* Set default theme */
    --bg-color: var(--bg-color-light);
    --text-color: var(--text-color-light);
    --primary-color: var(--primary-color-light);
    --secondary-color: var(--secondary-color-light);
    --accent-color: var(--accent-color-light);
    --card-bg: var(--card-bg-light);
    --footer-bg: var(--footer-bg-light);

    --font-primary: 'Garamond', serif;
    --font-secondary: 'Montserrat', sans-serif;
    --transition: all 0.3s ease-in-out;
}

html {
    scroll-behavior: smooth;
}

html[data-theme="dark"] {
    --bg-color: var(--bg-color-dark);
    --text-color: var(--text-color-dark);
    --primary-color: var(--primary-color-dark);
    --secondary-color: var(--secondary-color-dark);
    --accent-color: var(--accent-color-dark);
    --card-bg: var(--card-bg-dark);
    --footer-bg: var(--footer-bg-dark);
}


body {
    font-family: var(--font-secondary);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    transition: var(--transition);
}

/* === UTILITIES & HELPERS === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 1rem;
}

.text-center {
    text-align: center;
}

.section-title {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 500;
}

.section-subtitle {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem auto;
    font-size: 1.1rem;
}

img,
video {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: var(--secondary-color);
}

/* === BUTTONS === */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    margin-top: 1rem;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
}

.btn i {
    margin-right: 0.5rem;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.btn-primary:hover {
    background-color: transparent;
    border-color: var(--secondary-color);
    color: var(--secondary-color);
    transform: translateY(-3px);
}

.btn-secondary {
    background-color: var(--bg-color);
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--bg-color);
}

.menu-buttons-container {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.menu-buttons-container .btn {
    min-width: 250px;
}

@media (max-width: 768px) {
    .menu-buttons-container {
        flex-direction: column;
        align-items: center;
    }
    
    .menu-buttons-container .btn {
        width: 100%;
        max-width: 300px;
    }
}

.btn-gold {
    background: linear-gradient(135deg, #FFD700 0%, #B8860B 50%, #FFD700 100%);
    color: white;
    border: 2px solid #B8860B;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
    font-weight: 600;
    -webkit-text-stroke: 0.5px rgba(0, 0, 0, 0.3);
    text-shadow: 0.5px 0.5px 1px rgba(0, 0, 0, 0.2);
}

.btn-gold:hover {
    background: linear-gradient(135deg, #B8860B 0%, #FFD700 50%, #B8860B 100%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    -webkit-text-stroke: 0.5px rgba(0, 0, 0, 0.4);
    text-shadow: 0.5px 0.5px 1px rgba(0, 0, 0, 0.3);
}

.btn-gold i {
    margin-right: 0.5rem;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.3));
}

.hero-buttons .btn-gold {
    background: #000000 !important;
    border: 2px solid #FFD700 !important;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3) !important;
    position: relative;
    color: #fad202 !important;
    font-weight: 600 !important;
}

.hero-buttons .btn-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000000;
    border-radius: 50px;
    z-index: -1;
}

.hero-buttons .btn-gold:hover {
    color: #fad202 !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4) !important;
    border-color: #fad202 !important;
}

.btn-header {
    background-color: var(--primary-color);
    color: var(--bg-color);
    padding: 0.5rem 1.5rem;
    margin-top: 0;
}

.btn-header:hover {
    background: linear-gradient(135deg, #FFD700 0%, #B8860B 50%, #FFD700 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}


/* === TOP SOCIAL BAR === */
.top-social-bar {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    padding: 0.5rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.top-social-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: center;
}

.top-social-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.top-social-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 2px solid transparent;
}

.top-social-icon:hover {
    background-color: white;
    color: var(--primary-color);
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .top-social-bar {
        padding: 0.4rem 0;
    }
    
    .top-social-links {
        gap: 0.7rem;
    }
    
    .top-social-icon {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
}

/* === HEADER & NAVBAR === */
.header {
    position: sticky;
    top: 47px;
    width: 100%;
    z-index: 1000;
    background-color: #000000;
    backdrop-filter: blur(10px);
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

@media (max-width: 768px) {
    .header {
        top: 42px;
    }
}

html[data-theme="dark"] .header {
    background-color: #000000;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* === MINI ORDER HEADER (HOMEPAGE) === */
.mini-order-header {
    display: none; /* Hidden - button moved to header */
}

.mini-order-inner {
    display: none;
}

/* Order button in header - Desktop only */
.header-order-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    border: 2px solid transparent;
    background: linear-gradient(135deg, #FFD700 0%, #B8860B 50%, #FFD700 100%);
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

/* Hide mobile order button on desktop */
.mobile-order-item {
    display: none;
}

/* === TIMER MODAL === */
.timer-modal .modal-content {
    max-width: 600px;
    padding: 3rem 2rem;
    text-align: center;
}

/* === PODCAST / BBC INTERVIEW SECTION === */
.podcast-section { margin-top: 2rem; margin-bottom: 3rem; }
.podcast-description {
    max-width: 860px;
    margin: 0.25rem auto 1.25rem auto;
    text-align: center;
    color: var(--text-color);
    opacity: 0.95;
}
.podcast-player {
    display: flex;
    justify-content: center;
}
.podcast-player audio {
    width: min(900px, 100%);
}

/* Flex layout for combined podcast + highlights */
.podcast-flex {
    display: flex;
    gap: 2rem;
    align-items: center; /* vertically center player to slider */
    margin-top: 1rem;
}
.podcast-left { flex: 1 1 58%; min-width: 0; order: 2; }
.podcast-right { flex: 1 1 42%; min-width: 0; display: flex; flex-direction: column; align-items: flex-start; order: 1; }
.podcast-subtitle {
    margin: 0.25rem 0 0.5rem 0;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Make slider smaller and contained on the right */
.podcast-right .highlights-slider { width: 100%; max-width: 520px; }
.podcast-right .highlights-slider .hs-viewport { border-radius: 10px; }
.podcast-right .hs-slide { background: #000; }
.podcast-right .hs-nav { width: 36px; height: 36px; }
.podcast-right .hs-dots { margin-top: 0.5rem; }

@media (max-width: 992px) {
    .podcast-flex { flex-direction: column; }
    .podcast-left, .podcast-right { flex-basis: auto; align-items: stretch; }
    .podcast-right .highlights-slider { max-width: none; }
}

/* Custom Audio Player */
.audio-card {
    width: min(900px, 100%);
    background: #fff;
    color: var(--text-color);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.06);
}
.audio-info {
    margin-bottom: 0.6rem;
}
.audio-badge {
    display: inline-block;
    background: #111;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.2rem 0.5rem;
    border-radius: 999px;
    font-size: 0.68rem;
}
.audio-title {
    margin: 0.35rem 0 0.1rem 0;
    font-size: 1.2rem;
    font-weight: 800;
    color: #0F4C81;
}
.audio-subtitle {
    margin: 0;
    opacity: 0.85;
    font-size: 0.9rem;
}
.audio-controls {
    display: grid;
    grid-template-columns: auto auto auto 1fr auto auto;
    align-items: center;
    gap: 0.6rem;
    margin-top: 0.6rem;
}
.audio-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #e5e7eb;
    background: #fff;
    color: #0F4C81;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    cursor: pointer;
    transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.1s ease;
}
.audio-btn:hover { background: #f3f4f6; box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
.audio-btn:active { transform: translateY(0.5px); }

.audio-timeline {
    position: relative;
    height: 6px;
    background: #e5e7eb;
    border-radius: 999px;
    overflow: hidden;
    cursor: pointer;
}
.audio-progress {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: #FF6B35;
    transition: width 0.15s linear;
}
.audio-time {
    font-variant-numeric: tabular-nums;
    font-weight: 600;
    color: #4b5563;
}
.audio-time .audio-sep { opacity: 0.7; margin: 0 0.25rem; }
.audio-volume { display: inline-flex; align-items: center; gap: 0.5rem; }
.audio-volume-input { width: 90px; }

.audio-error { font-size: 0.9rem; }

@media (max-width: 640px) {
    .audio-controls { grid-template-columns: auto auto auto 1fr auto; gap: 0.5rem; }
    .audio-volume { display: none; }
    .audio-btn { width: 42px; height: 42px; }
    .audio-timeline { height: 8px; }
}

.timer-display {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.timer-circle {
    position: relative;
    width: 120px;
    height: 120px;
}

.timer-svg {
    transform: rotate(-90deg);
}

.timer-circle-bg {
    fill: none;
    stroke: rgba(255, 215, 0, 0.2);
    stroke-width: 8;
}

.timer-circle-progress {
    fill: none;
    stroke: #FFD700;
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 339.292;
    stroke-dashoffset: 0;
    transition: stroke-dashoffset 1s linear;
}

.timer-number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FFD700 0%, #B8860B 50%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.timer-title {
    font-family: var(--font-primary);
    font-size: 2rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.timer-message {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    text-align: left;
}

.timer-phone {
    color: #FFD700;
    text-decoration: none;
    font-weight: 600;
}

.timer-phone:hover {
    text-decoration: underline;
}

.timer-redirect {
    font-size: 0.95rem;
    color: var(--text-color);
    font-weight: 600;
    opacity: 0.8;
}

.timer-redirect span {
    color: #FFD700;
    font-weight: 700;
}

/* Circular action button for timer modal */
.timer-open-btn {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 2px solid #FFD700;
    background: #000;
    color: #FFD700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.25);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.timer-open-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(255, 215, 0, 0.35);
}
.timer-open-btn:active { transform: translateY(0); }

/* === OFFERS MODAL === */
.offers-modal-content {
    max-width: 600px;
    padding: 3rem 2.5rem;
    text-align: center;
    background: var(--card-bg);
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 215, 0, 0.2);
}

.offers-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
}

.offers-header i {
    font-size: 3rem;
    color: #FFD700;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
    -webkit-text-stroke: 1px #B8860B;
}

.offers-title {
    font-family: var(--font-primary);
    font-size: 2.2rem;
    background: linear-gradient(135deg, #FFD700 0%, #B8860B 50%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    -webkit-text-stroke: 1px #B8860B;
}

.offers-content {
    text-align: left;
}

.offers-main-text {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.offers-main-text strong {
    color: #FFD700;
    font-weight: 700;
}

.offers-sub-text {
    font-size: 1rem;
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 2rem;
    text-align: center;
    font-style: italic;
}

.offers-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.offers-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    padding: 0;
    border-radius: 50%;
    background: #fff;
    border: 2px solid transparent;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.15s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.offers-btn i {
    font-size: 24px;
    line-height: 1;
}

.offers-btn img {
    width: 28px;
    height: 28px;
    display: block;
}

/* Brand variants */
.offers-btn-google {
    border-color: #4285F4;
    color: #4285F4;
}
.offers-btn-google:hover {
    background: #4285F4;
    color: #fff;
    transform: translateY(-1px);
}

.offers-btn-instagram {
    /* Use main Insta pink as accent; icon colored, white background by default */
    border-color: #E1306C;
    color: #E1306C;
}
.offers-btn-instagram:hover {
    /* Approximate Instagram gradient on hover */
    background: linear-gradient(45deg, #F58529, #FEDA77, #DD2A7B, #8134AF, #515BD4);
    color: #fff;
    border-color: transparent;
    transform: translateY(-1px);
}

.offers-terms {
    font-size: 0.85rem;
    color: var(--text-color);
    opacity: 0.7;
    text-align: center;
    font-style: italic;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .offers-modal-content {
        padding: 1.5rem 1rem;
        margin: 1rem;
        max-width: 90vw;
        width: 90vw;
    }
    
    .offers-header i {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .offers-title {
        font-size: 1.6rem;
    }
    
    .offers-main-text {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .offers-sub-text {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .offers-actions {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    
    .offers-btn {
        width: 48px;
        height: 48px;
    }
    
    .offers-terms {
        font-size: 0.75rem;
    }
    
    /* Timer Modal Mobile Styles */
    .timer-modal .modal-content {
        max-width: 90vw;
        padding: 1.5rem 1rem;
    }
    
    .timer-circle {
        width: 80px;
        height: 80px;
    }
    
    .timer-number {
        font-size: 1.5rem;
    }
    
    .modal-content h2 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .modal-content p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .timer-display {
        margin-bottom: 1.5rem;
    }
}

.header-order-btn span,
.header-order-btn i {
    background: linear-gradient(135deg, #FFD700 0%, #B8860B 50%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header-order-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    padding: 2px;
    background: linear-gradient(135deg, #FFD700 0%, #B8860B 50%, #FFD700 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.header-order-btn:hover {
    transform: translateY(-2px);
}

.header-order-btn:hover span,
.header-order-btn:hover i {
    background: linear-gradient(135deg, #F7DC6F 0%, #D4AF37 50%, #F7DC6F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header-order-btn .caret {
    transition: transform 0.2s ease;
    font-size: 0.8rem;
}

.header-order-btn[aria-expanded="true"] .caret {
    transform: rotate(180deg);
}

.mini-order-trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    background: transparent;
    color: var(--secondary-color);
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap; /* keep on one line */
}
.mini-order-trigger .caret {
    transition: transform 0.2s ease;
}
.mini-order-trigger[aria-expanded="true"] .caret {
    transform: rotate(180deg);
}
/* Centered order modal uses global .modal styles */
.modal .modal-options .modal-btn { width: 100%; }
.modal .modal-content { max-width: 560px; }
.mini-order-header .delivery-btn {
    justify-content: center;
    width: 100%;
}
@media (max-width: 768px) {
    .mini-order-inner { padding: 0.25rem 0.75rem; }
    .order-dropdown { grid-template-columns: 1fr; }
}

/* Adjust fixed offset for smaller headers on mobile/tablet */
/* Dynamic top handled via --header-height; mobile override not required */

/* === DELIVERY PARTNERS SECTION === */
.delivery-section {
    background-color: var(--card-bg);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

html[data-theme="dark"] .delivery-section {
    border-color: rgba(255, 255, 255, 0.1);
}

.delivery-options {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    /* Allows wrapping on smaller screens */
}

.delivery-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    transition: var(--transition);
    border: 2px solid;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.delivery-btn img {
    height: 30px;
}

.btn-uber {
    background-color: #06C167;
    border-color: #06C167;
    color: #fff;
}

.btn-uber:hover {
    transform: translateY(-3px);
}

.btn-deliveroo {
    background-color: #00CCBC;
    border-color: #00CCBC;
    color: #fff;
}

.btn-deliveroo:hover {
    transform: translateY(-3px);
}

.btn-justeat {
    background-color: #FF8000;
    border-color: #FF8000;
    color: #fff;
}

.btn-justeat:hover {
    transform: translateY(-3px);
}

/* === GOOGLE REVIEWS SECTION === */
.reviews-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #fdfbf7 0%, #f8f5f0 100%);
}

html[data-theme="dark"] .reviews-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.reviews-grid {
    display: grid;  
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.review-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.reviewer-info {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FFD700, #B8860B);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.reviewer-details h4 {
    margin: 0 0 0.5rem 0;
    color: var(--text-color);
    font-weight: 600;
}

.review-stars {
    display: flex;
    gap: 0.2rem;
}

.review-stars i {
    color: #FFD700;
    font-size: 1rem;
}

.google-logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.google-logo {
    width: 32px;
    height: 32px;
    display: block;
}

.review-text {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-style: italic;
}

.review-date {
    color: var(--text-color);
    opacity: 0.6;
    font-size: 0.9rem;
}

.google-rating-summary {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.2);
}

.overall-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.rating-score {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    background: linear-gradient(135deg, #FFD700, #B8860B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rating-stars {
    display: flex;
    gap: 0.3rem;
}

.rating-stars i {
    color: #FFD700;
    font-size: 1.5rem;
}

.overall-rating p {
    color: var(--text-color);
    font-weight: 600;
    margin: 0;
}

/* Responsive Design for Reviews */
@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .review-card {
        padding: 1.5rem;
    }
    
    .rating-score {
        font-size: 2.5rem;
    }
}

/* === GOOGLE REVIEWS SECTION === */
.reviews-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #fdfbf7 0%, #f8f5f0 100%);
    position: relative;
}

html[data-theme="dark"] .reviews-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.review-slider-container {
    position: relative;
    overflow: hidden;
    margin: 3rem 0;
}

.review-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.review-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
    min-width: 350px;
    margin: 0 1rem;
    flex-shrink: 0;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.reviewer-info {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FFD700, #B8860B);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.reviewer-details h4 {
    margin: 0 0 0.5rem 0;
    color: var(--text-color);
    font-weight: 600;
}

.review-stars {
    display: flex;
    gap: 0.2rem;
}

.review-stars i {
    color: #FFD700;
    font-size: 1rem;
}

.google-logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.google-logo {
    width: 32px;
    height: 32px;
    display: block;
}

.review-text {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-style: italic;
    height: 120px; /* Fixed height for consistent layout */
    overflow: hidden;
    text-overflow: ellipsis;
}

.review-date {
    color: var(--text-color);
    opacity: 0.6;
    font-size: 0.9rem;
}

.slider-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
}

.slider-nav button {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    z-index: 2;
    transition: background-color 0.3s;
    pointer-events: all;
    margin: 0 -25px;
}

.slider-nav button:hover {
    background: rgba(0, 0, 0, 0.8);
}

/* Responsive Design for Reviews */
@media (max-width: 768px) {
    .review-card {
        min-width: 80%;
    }
    
    .slider-nav {
        display: none; /* Hide arrows on mobile, rely on swipe */
    }
}

/* === GOOGLE REVIEWS SECTION === */
.reviews-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #fdfbf7 0%, #f8f5f0 100%);
}

html[data-theme="dark"] .reviews-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.review-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    border-color: rgba(212, 175, 55, 0.3);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.reviewer-info {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FFD700, #B8860B);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.reviewer-details h4 {
    margin: 0 0 0.5rem 0;
    color: var(--text-color);
    font-weight: 600;
}

.review-stars {
    display: flex;
    gap: 0.2rem;
}

.review-stars i {
    color: #FFD700;
    font-size: 1rem;
}

.google-logo-container {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
}

.google-logo {
    width: 28px;
    height: 28px;
    opacity: 0.8;
}

.review-text {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-style: italic;
    flex-grow: 1; /* Allows text to take up available space */
}

.review-date {
    color: var(--text-color);
    opacity: 0.6;
    font-size: 0.9rem;
    margin-top: auto; /* Pushes date to the bottom */
}

.btn-full {
    display: inline-block;
    width: auto;
    max-width: 350px;
    padding: 1rem 3rem;
    font-size: 1.1rem;
}

/* Responsive Design for Reviews */
@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .review-card {
        padding: 1.5rem;
    }
}

/* --- LOGO STYLES --- */
.logo img {
    height: 70px;
    width: auto;
    transition: opacity 0.3s ease;
}

html[data-theme="dark"] .logo img {
    opacity: 0.9;
}

/* --- END LOGO LOGIC --- */

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    background: linear-gradient(135deg, #FFD700 0%, #B8860B 50%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    position: relative;
    padding-bottom: 5px;
    text-decoration: none;
}

.nav-links a:hover {
    background: linear-gradient(135deg, #F7DC6F 0%, #D4AF37 50%, #F7DC6F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: translateY(-1px);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width 0.3s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-btn-mobile {
    display: none;
}

.nav-extra {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-social-icons {
    display: flex;
    gap: 0.5rem;
}

.header-social-link {
    background: var(--primary-color);
    color: white;
    padding: 0.6rem;
    border-radius: 8px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 2px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
}

html[data-theme="dark"] .header-social-link {
    background: var(--primary-color-dark);
    border-color: var(--primary-color-dark);
}

.header-social-link:hover {
    background: linear-gradient(135deg, #FFD700 0%, #B8860B 50%, #FFD700 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.header-phone {
    background: linear-gradient(135deg, #FFD700 0%, #B8860B 50%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    text-decoration: none;
}

.header-phone:hover {
    background: linear-gradient(135deg, #F7DC6F 0%, #D4AF37 50%, #F7DC6F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: #fff;
    transition: var(--transition);
}

/* === DARK MODE TOGGLE === */
.dark-mode-toggle {
    display: none;
}


/* === HERO SECTION === */
.hero {
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
    pointer-events: none;
}

#gallery-hero {
    display: block; /* Override flex display */
    position: relative; /* Needed for the ::before pseudo-element */
}

#gallery-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* Dark overlay */
    z-index: 2; /* Position it above the slider images */
    pointer-events: none; /* Allow clicks to go through to slider buttons */
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.hero-slider .slide.active {
    opacity: 1;
}

.hero-slider .slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    background-color: rgba(0, 0, 0, 0.4);
    color: white;
    border: none;
    padding: 0;
    font-size: 1.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slider .slider-btn:hover {
    background-color: rgba(212, 175, 55, 0.8);
}

.hero-slider .prev-btn {
    left: 2rem;
}

.hero-slider .next-btn {
    right: 2rem;
}

#gallery-hero .hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

#home-hero {
    background-image: url('assets/48.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#menu-hero {
    background-image: url('assets/collage.jpg');
    background-size: cover;
    /* makes the image cover the whole section */
    background-position: center;
    /* centers the image */
    background-repeat: no-repeat;
    /* stops duplication */
}

#contact-hero {
    background-image: url('assets/16.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.logo-dark {
    position: relative;
    display: inline-block;
    /* keeps overlay sized to logo */
}

.logo-dark img {
    display: block;
    position: relative;
    z-index: 2;
    /* ensures logo stays above overlay */
}

.logo-dark::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    /* dark overlay, adjust opacity */
    z-index: 1;
    /* sits behind logo */
    border-radius: 8px;
    /* optional: if you want rounded overlay */
}

#services-hero {
    background-image: url('assets/13.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -2;
    /* Places it behind the dark overlay */
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 1rem;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
    align-items: center;
}

.hero-buttons .btn {
    min-width: 250px;
    font-size: 1rem;
    font-family: inherit;
    line-height: 1;
}

.hero h1 {
    font-family: var(--font-primary);
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.9);
}

.hero .btn {
    animation: float 4s ease-in-out infinite;
}

/* === BOOKING CTA SECTION === */
.booking-cta-section {
    background-color: #000000;
    padding: 3rem 2rem;
    text-align: center;
}

.booking-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.booking-formal-text {
    color: #ffffff;
    font-size: 1.5rem;
    font-family: var(--font-primary);
    margin-bottom: 2rem;
    line-height: 1.8;
    letter-spacing: 0.5px;
}

.btn-booking{
    background-color: transparent;
    color: #FFD700;
    border-color: #FFD700;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

.btn-booking i {
    margin-right: 0.5rem;
}

/* === ABOUT SECTION (HOME PAGE) === */
.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-image {
    aspect-ratio: 1/1;
    overflow: hidden;
}

.about-image img {
    border-radius: 10px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content .section-title {
    text-align: left;
}

.about-content p {
    margin-bottom: 1rem;
}


/* === SECTIONS (Services, WCU, CTA) === */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.card {
    background: var(--card-bg);
    padding: 2.5rem 2rem;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

html[data-theme="dark"] .card {
    border-color: rgba(255, 255, 255, 0.1);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--secondary-color);
}

.card i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.why-choose-us {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.wcu-image {
    aspect-ratio: 1/1;
    overflow: hidden;
}

.wcu-image img {
    border-radius: 10px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 10px 10px 0 var(--secondary-color);
}

/* Bollywood Collage Styles */
.bollywood-collage {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 10px;
    width: 100%;
    height: 100%;
}

.bollywood-collage .collage-img {
    border-radius: 10px;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 5px 5px 0 var(--secondary-color);
}

.bollywood-collage .collage-img:hover {
    transform: scale(1.05);
    box-shadow: 8px 8px 0 var(--secondary-color);
}

.bollywood-collage .collage-img:first-child {
    grid-row: 1;
    grid-column: 1;
}

.bollywood-collage .collage-img:nth-child(2) {
    grid-row: 1;
    grid-column: 2;
}

.bollywood-collage .collage-img:nth-child(3) {
    grid-row: 2;
    grid-column: 1 / 3;
    justify-self: center;
    width: 60%;
}

.wcu-content .section-title {
    text-align: left;
}

.wcu-content ul {
    list-style: none;
    padding: 0;
}

.wcu-content li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: start;
    margin-bottom: 1.5rem;
}

.wcu-content li i {
    color: var(--secondary-color);
    margin-top: 5px;
    font-size: 1.2rem;
}

.wcu-item-text strong {
    display: block;
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.wcu-item-text span {
    font-size: 1rem;
    line-height: 1.5;
}


/* === CLIENT REVIEWS (Formerly Testimonials) === */
.testimonials-section {
    background-color: var(--footer-bg);
}

.client-review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-auto-rows: auto; /* allow aspect-ratio to control height */
    gap: 0; /* remove gaps that look like borders */
}

/* Strong overrides to eliminate any border-looking edges in testimonials grid */
.testimonials-section .client-review-grid { gap: 0; }
.testimonials-section .review-card {
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    background: transparent !important;
    margin: 0 !important;
    aspect-ratio: 1 / 1; /* make each tile perfectly square */
}
.testimonials-section .review-card img,
.testimonials-section .review-card video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: transparent;
}

.review-card {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: none; /* remove light shadow edge */
    border: none; /* remove any visible border/outline */
}

.review-card img,
.review-card video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
    display: block; /* avoid inline gap showing as white line */
    background-color: transparent; /* no background seams */
}

.review-card:hover img,
.review-card:hover video {
    transform: scale(1.1);
}

.review-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
    color: #fff;
    opacity: 0;
    transition: var(--transition);
}

.review-card:hover .review-overlay {
    opacity: 1;
}

/* Remove focus outlines/borders that look like white edges on click */
.review-card:focus {
    outline: none;
}
.review-card *:focus {
    outline: none;
}

/* === CTA SECTION === */
.cta-section {
    background: linear-gradient(45deg, var(--accent-color-light), var(--primary-color-light));
    color: #fff;
    text-align: center;
    padding: 5rem 1rem;
}

html[data-theme="dark"] .cta-section {
    background: linear-gradient(45deg, var(--accent-color-dark), #3a0d1b);
}

.cta-section h2 {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* === SERVICES & CATERING PAGES === */
.service-detail-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.service-detail-section.reverse {
    grid-template-columns: 1fr 1fr;
}

.service-detail-section.reverse .service-detail-image {
    order: -1;
}

.service-detail-section .section-title {
    text-align: left;
}

.service-detail-image img {
    border-radius: 10px;
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.service-detail-image video {
    border-radius: 10px;
    height: 100%;
    width: 100%;
    object-fit: cover;
    display: block;
}
.service-detail-image.square {
    aspect-ratio: 1 / 1;
    overflow: hidden;
}
.service-detail-image .lightbox-trigger {
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.service-detail-content ul {
    margin-top: 1.5rem;
}

.service-detail-content li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.service-detail-content li i {
    color: var(--secondary-color);
    margin-right: 1rem;
    font-size: 1.5rem;
    width: 25px;
}


/* === MENU PAGE === */
.pdf-viewer {
    margin-top: 3rem;
    border: 5px solid var(--footer-bg);
    border-radius: 10px;
    overflow: hidden;
}

.pdf-viewer iframe {
    display: block;
    border: none;
}


/* === GALLERY PAGE === */
.gallery-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.grid-card {
    background-color: var(--card-bg);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.07);
    padding: 0.5rem;
    transition: var(--transition);
    aspect-ratio: 1 / 1;
    cursor: pointer;
}

html[data-theme="dark"] .grid-card {
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.grid-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.grid-card img,
.grid-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}


/* === CONTACT PAGE === */
.contact-section {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border-radius: 5px;
    border: 1px solid #ccc;
    background-color: var(--bg-color);
    color: var(--text-color);
    transition: var(--transition);
}

html[data-theme="dark"] .form-group input,
html[data-theme="dark"] .form-group textarea {
    border-color: rgba(255, 255, 255, 0.2);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 5px var(--secondary-color);
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.address-line {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 768px) {
    .address-line {
        white-space: normal;
        word-wrap: break-word;
    }
}

.contact-info i {
    color: var(--secondary-color);
    margin-right: 1rem;
    width: 1.5rem;
    text-align: center;
}

.invisible-icon {
    opacity: 0;
    visibility: hidden;
}

.address-indent {
    margin-left: 2.5rem;
}

.accordion-item {
    border-bottom: 1px solid var(--primary-color);
    margin-bottom: 1rem;
}

.accordion-header {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.2rem;
    padding: 1rem 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-color);
    font-weight: bold;
}

.accordion-header i {
    transition: transform 0.3s;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.accordion-content p {
    padding-bottom: 1rem;
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

.accordion-item.active .accordion-content {
    max-height: 200px;
}

.map-section {
    padding: 0;
    margin: 0;
    line-height: 0;
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 100;
    animation: float 3s ease-in-out infinite;
}

/* === FOOTER === */
.footer {
    background-color: var(--footer-bg);
    padding: 4rem 2rem 0;
    position: relative;
    z-index: 10;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding-bottom: 3rem;
}

.footer-section h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.3rem;
}

.footer-section p {
    color: var(--text-color);
    margin-bottom: 0.8rem;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-social a {
    color: var(--primary-color);
    font-size: 1.5rem;
    transition: var(--transition);
    text-decoration: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.05);
}

html[data-theme="dark"] .footer-social a {
    color: var(--text-color);
    background-color: rgba(255, 255, 255, 0.05);
}

.footer-social a:hover {
    color: var(--secondary-color);
    transform: translateY(-3px);
    background-color: var(--secondary-color);
    color: white;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding-bottom: 3rem;
}

.footer-col h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: var(--font-primary);
    font-weight: 700;
}

.footer-col ul li a {
    color: var(--text-color);
    margin-bottom: 0.5rem;
    display: inline-block;
}

.footer-col ul li a:hover {
    color: var(--secondary-color);
}

.social-icons {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

.social-icons a {
    color: var(--primary-color);
    font-size: 1.8rem;
    transition: var(--transition);
    text-decoration: none;
}

html[data-theme="dark"] .social-icons a {
    color: var(--text-color);
}

.social-icons a:hover {
    color: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding: 1rem;
    border-top: 1px solid var(--primary-color);
}

.developer-credit {
    margin-top: 1rem;
    font-size: 1.1rem;
    color: var(--text-color);
    opacity: 0.9;
    font-weight: 600;
}

.developer-credit a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
}

.developer-credit a:hover {
    background: linear-gradient(135deg, #FFD700 0%, #B8860B 50%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3), 
                0 0 10px rgba(255, 215, 0, 0.2);
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.4),
                 -1px -1px 0 rgba(184, 134, 11, 0.8),
                 1px -1px 0 rgba(184, 134, 11, 0.8),
                 -1px 1px 0 rgba(184, 134, 11, 0.8),
                 1px 1px 0 rgba(184, 134, 11, 0.8);
}

/* === MODAL STYLES (Lightbox & Booking) === */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
    padding: 1rem;
}

.modal.active {
    display: flex;
}

.modal-content {
    position: relative;
    background: var(--card-bg);
    padding: 2rem 3rem;
    border-radius: 10px;
    text-align: center;
    max-width: 500px;
    width: 100%;
}

.modal-content h2 {
    font-family: var(--font-primary);
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.modal-close-btn {
    position: absolute;
    top: 10px;
    right: 20px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}

.modal-close-btn:hover {
    color: var(--primary-color);
}

.modal-options {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.modal-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    color: #fff;
    transition: var(--transition);
    border: 2px solid transparent;
}

.modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.modal-btn i {
    font-size: 1.2rem;
}

.modal-btn.btn-direct {
    background-color: #06C167;
    border-color: #06C167;
}

.modal-btn.btn-deliveroo {
    background-color: #00CCBC;
    border-color: #00CCBC;
}

.modal-btn.btn-justeat {
    background-color: #FF8000;
    border-color: #FF8000;
}

.modal-btn.btn-thefork {
    background-color: #2D333F;
    border-color: #2D333F;
}

.modal-logo-btn {
    display: block;
    padding: 0.75rem;
    border-radius: 8px;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

html[data-theme="dark"] .modal-logo-btn {
    border-color: rgba(255, 255, 255, 0.2);
}

.modal-logo-btn:hover {
    transform: scale(1.05);
    border-color: var(--secondary-color);
}

.modal-logo-btn img {
    height: 32px;
    width: auto;
    max-width: 150px;
    margin: 0 auto;
}

.modal-logo-btn svg {
    height: 32px;
    width: auto;
    margin: 0 auto;
    display: block;
    fill: #007563;
}

html[data-theme="dark"] .modal-logo-btn svg {
    fill: #fff;
}

/* Fixed Size Lightbox Content */
.modal-content-fixed {
    position: relative;
    width: 90vw;
    max-width: 1100px;
    aspect-ratio: 16 / 9;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.lightbox-image,
.lightbox-video {
    display: none;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

#lightbox-modal .modal-close-btn {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #fff;
    text-shadow: 0 0 5px #000;
    z-index: 2001;
}

/* === ANIMATIONS === */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes subtleZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.05);
    }
}

@keyframes glow {
    from {
        text-shadow: 0 0 8px rgba(0, 0, 0, 0.8);
    }

    to {
        text-shadow: 0 0 16px rgba(0, 0, 0, 0.8);
    }
}

.animate-on-scroll {
    opacity: 0;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    transition-delay: var(--delay, 0s);
}

.animate-on-scroll[data-animation="fade-in"] {
    opacity: 0;
}

.animate-on-scroll[data-animation="zoom-in"] {
    transform: scale(0.9);
    opacity: 0;
}

.animate-on-scroll[data-animation="slide-in-up"] {
    transform: translateY(30px);
    opacity: 0;
}

.animate-on-scroll[data-animation="slide-in-left"] {
    transform: translateX(-30px);
    opacity: 0;
}

.animate-on-scroll[data-animation="slide-in-right"] {
    transform: translateX(30px);
    opacity: 0;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: none;
}

@keyframes float {
    0% {
        transform: translatey(0px);
    }

    50% {
        transform: translatey(-8px);
    }

    100% {
        transform: translatey(0px);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.animate-pulse {
    animation: pulse 2s infinite;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 992px) {

    .nav-links,
    .header-phone,
    .header-order-btn,
    .btn-header {
        display: none;
    }

    .nav-btn-mobile {
        display: block;
    }

    .hamburger {
        display: block;
    }

    .logo img {
        height: 45px;
    }

    .nav-links {
        position: fixed;
        left: -100%;
        top: 61px;
        flex-direction: row;
        flex-wrap: wrap;
        background-color: var(--bg-color);
        width: 100%;
        height: calc(100vh - 61px);
        text-align: center;
        transition: 0.3s;
        gap: 0.5rem;
        padding: 2rem 1rem;
        overflow-y: auto;
        overflow-x: hidden;
        justify-content: center;
        align-content: flex-start;
    }

    .nav-links.active {
        display: flex;
        left: 0;
    }

    .nav-links li {
        flex: 1 1 calc(50% - 0.5rem);
        min-width: calc(50% - 0.5rem);
        max-width: calc(50% - 0.5rem);
        padding: 0.3rem;
        margin: 0.2rem 0;
    }

    .nav-links li a {
        background: linear-gradient(135deg, #FFD700 0%, #B8860B 50%, #FFD700 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-size: 1.1rem;
        font-weight: 700;
        padding: 0.8rem 1.5rem;
        display: block;
        text-decoration: none;
        border-radius: 8px;
        transition: all 0.3s ease;
        border: 2px solid transparent;
        position: relative;
    }

    .nav-links li a::before {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 8px;
        padding: 2px;
    background: linear-gradient(135deg, #FFD700 0%, #B8860B 50%, #FFD700 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
    }

    .nav-links li a:hover {
        background: linear-gradient(135deg, #F7DC6F 0%, #D4AF37 50%, #F7DC6F 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    /* Mobile Order Now button - Show in mobile menu */
    .mobile-order-item {
        display: block;
        flex: 1 1 100%;
        width: 100%;
        padding: 0.3rem;
        margin: 0.5rem 0 0 0;
    }

    .mobile-order-btn {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.6rem;
        padding: 1rem 1.5rem;
        border-radius: 8px;
        border: 2px solid transparent;
        background: transparent;
        font-size: 1.1rem;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
    }

    .mobile-order-btn::before {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 8px;
        padding: 2px;
    background: linear-gradient(135deg, #FFD700 0%, #B8860B 50%, #FFD700 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
    }

    .mobile-order-btn,
    .mobile-order-btn i {
        background: linear-gradient(135deg, #FFD700 0%, #B8860B 50%, #FFD700 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .mobile-order-btn .caret {
        font-size: 0.9rem;
        transition: transform 0.2s ease;
    }

    .mobile-order-btn[aria-expanded="true"] .caret {
        transform: rotate(180deg);
    }

    .nav-btn-mobile {
        padding: 0.5rem 2rem;
        margin: 0.8rem 0;
    }
}

/* === PARKING PAGE === */
.parking-page {
    padding: 4rem 0;
    background-color: var(--bg-color);
}

.parking-main-title {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    color: var(--text-color);
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: 2px;
    font-weight: 400;
}

.parking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.parking-info-box {
    padding: 1rem 0;
}

.parking-heading {
    font-family: var(--font-primary);
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 600;
}

.parking-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.parking-bold {
    font-weight: 600;
}

.parking-address-simple {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-top: 2rem;
    font-weight: 500;
}

.parking-address-simple i {
    color: var(--secondary-color);
    font-size: 1.3rem;
    margin-right: 0.5rem;
}

.parking-location {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
    padding: 2rem;
    background-color: var(--card-bg);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.parking-location i {
    color: var(--secondary-color);
    font-size: 2rem;
    margin-top: 0.3rem;
}

.parking-address-text {
    font-size: 1.2rem;
    line-height: 2;
    color: var(--text-color);
    font-weight: 500;
}

.parking-address-text strong {
    font-size: 1.5rem;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.parking-photo {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.parking-photo img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.parking-map {
    width: 100%;
    background-color: var(--footer-bg);
    position: relative;
    z-index: 1;
}

.parking-map iframe {
    width: 100%;
    height: 500px;
    border: 0;
    display: block;
}

/* Responsive - Parking Page */
@media (max-width: 768px) {
    .parking-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .parking-main-title {
        font-size: 2rem;
    }

    .parking-heading {
        font-size: 1.6rem;
    }

    .parking-text {
        font-size: 1rem;
    }

    .parking-map iframe {
        height: 400px;
    }
}

@media (max-width: 640px) {
    .parking-page {
        padding: 2rem 0;
    }

    .parking-main-title {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }

    .parking-heading {
        font-size: 1.4rem;
    }

    .parking-location {
        flex-direction: column;
        gap: 0.5rem;
    }

    .parking-map iframe {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .about-section,
    .why-choose-us,
    .contact-section,
    .service-detail-section,
    .service-detail-section.reverse {
        grid-template-columns: 1fr;
    }

    .about-image,
    .wcu-image,
    .service-detail-image {
        order: -1;
    }

    .about-content .section-title,
    .wcu-content .section-title,
    .service-detail-section .section-title {
        text-align: center;
    }

    .modal-content-fixed {
        width: 95vw;
        height: auto;
        max-height: 80vh;
        aspect-ratio: unset;
    }
}

/* === INTERVIEW HIGHLIGHTS GRID === */
.highlights-section {
    padding-top: 0;
}
.highlights-slider {
    position: relative;
    margin-bottom: 1.5rem;
}
.hs-viewport {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.06);
}
.hs-track {
    display: flex;
    transition: transform 0.45s ease;
    will-change: transform;
}
.hs-slide {
    min-width: 100%;
    user-select: none;
    position: relative;
    cursor: zoom-in;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000; /* subtle backdrop to frame letterboxed images */
}
.hs-slide img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}
.hs-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px; height: 44px; border-radius: 50%;
    border: 1px solid #e5e7eb; background: #fff; color: #111;
    display: inline-flex; align-items: center; justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    cursor: pointer;
}
.hs-prev { left: 10px; }
.hs-next { right: 10px; }
.hs-nav:hover { background: #f3f4f6; }

.hs-dots { display: flex; gap: 0.4rem; justify-content: center; margin-top: 0.75rem; }
.hs-dot {
    width: 9px; height: 9px; border-radius: 50%; background: #d1d5db; border: none; cursor: pointer;
}
.hs-dot[aria-selected="true"] { background: #FF6B35; }

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}
.highlight-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.06);
    cursor: zoom-in;
}
.highlight-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}
.highlight-item:hover img {
    transform: scale(1.04);
}

/* Lightbox modal content sizing */
.lightbox-modal-content {
    max-width: 1000px;
    width: calc(100% - 2rem);
    text-align: center;
}