:root {
    /* Colors */
    --color-primary: #000000;
    --color-secondary: #2a2a2a;
    --color-dark-azure: #101315;
    --color-accent: #d4af37;
    --color-text-light: #ffffff;
    --color-text-dark: #1a1a1a;
    --color-overlay: rgba(0, 0, 0, 0.5);

    /* Typography */
    --font-primary: "Poppins", sans-serif;
    --font-secondary: "Alice", serif;

    /* Spacing */
    --header-height: 80px;
    --section-padding: 80px 0;
    --container-max-width: 1400px;

    /* Transitions */
    --transition-speed: 0.3s;
}

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

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

/* ========================================
   HEADER STYLES
   ======================================== */

.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: transparent;
    z-index: 1000;
}

.header-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 40px;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 20px;
}

.logo {
    display: block;
    height: 50px;
    justify-self: start;
}

.logo img {
    height: 100%;
    width: auto;
    display: block;
}

.logo span {
    display: block;
    font-size: 10px;
    letter-spacing: 2px;
    font-weight: 300;
    margin-top: -5px;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

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

.nav-links a {
    color: var(--color-text-light);
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color var(--transition-speed);
    position: relative;
    white-space: nowrap;
}

.nav-links a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-accent);
    transition: width var(--transition-speed);
}

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

.nav-links a:hover::after {
    width: 100%;
}

.btn-reservation {
    padding: 12px 30px;
    background-color: transparent;
    color: var(--color-text-light);
    border: 1px solid var(--color-text-light);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all var(--transition-speed);
    justify-self: end;
    grid-column: 3;
    white-space: nowrap;
}

header .header-container form {
    grid-column: 3;
    justify-self: end;
}

.btn-reservation:hover {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-primary);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--color-text-light);
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
}

body.menu-open {
    overflow: hidden;
}

/* Flash Messages */
.flash-message {
    position: fixed;
    top: 100px;
    right: 40px;
    padding: 16px 24px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    z-index: 9999;
    transition: opacity 0.3s ease;
    max-width: 400px;
}

.flash-success {
    background-color: rgba(40, 167, 69, 0.95);
    color: white;
    border-left: 4px solid #1e7e34;
}

.flash-error {
    background-color: rgba(220, 53, 69, 0.95);
    color: white;
    border-left: 4px solid #bd2130;
}

/* Header Responsive Styles */
@media (max-width: 1200px) {
    .header-container {
        padding: 0 20px;
    }

    .nav-links {
        gap: 20px;
    }

    .nav-links a {
        font-size: 14px;
        letter-spacing: 0.3px;
    }

    .btn-reservation {
        padding: 10px 20px;
        font-size: 11px;
        letter-spacing: 1px;
    }
}

@media (max-width: 1024px) {
    .header-container {
        grid-template-columns: auto 1fr auto;
        display: flex;
        justify-content: space-between;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background-color: var(--color-primary);
        padding: 80px 40px 40px;
        transition: right 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
        flex-direction: column;
    }

    .nav.active {
        right: 0;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
    }

    .nav-links {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links li a {
        display: block;
        padding: 20px 0;
        font-size: 16px;
    }

    .nav-links a::after {
        display: none;
    }

    .btn-reservation,
    header .header-container form {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav {
        width: 280px;
        padding: 80px 30px 30px;
    }

    .flash-message {
        right: 20px;
        left: 20px;
        max-width: none;
    }
}

@media (max-width: 480px) {
    .logo {
        height: 40px;
    }
}
/* ========================================
   FOOTER STYLES
   ======================================== */

.footer {
    background-color: #000000;
    color: var(--color-text-light);
    padding-top: 60px;
}

.footer-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo-section {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.footer-logo img {
    height: 60px;
    width: auto;
}

.footer-links {
    display: flex;
    gap: 60px;
    justify-content: center;
}

.footer-column {
    min-width: 120px;
}

.footer-column-title {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: var(--color-text-light);
    text-decoration: none;
    font-size: 14px;
    opacity: 0.7;
    transition: opacity var(--transition-speed);
}

.footer-column ul li a:hover {
    opacity: 1;
}

.footer-contact-section {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-contact-item svg {
    flex-shrink: 0;
    opacity: 0.7;
}

.footer-contact-item a {
    color: var(--color-text-light);
    text-decoration: none;
    font-size: 14px;
    opacity: 0.7;
    transition: opacity var(--transition-speed);
}

.footer-contact-item a:hover {
    opacity: 1;
}

.social-icons {
    display: flex;
    gap: 20px;
}

.social-icons a {
    color: var(--color-text-light);
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-speed);
}

.social-icons a:hover {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-primary);
}

.social-icons svg {
    width: 18px;
    height: 18px;
}

.footer-bottom {
    padding: 25px 0;
}

.footer-copyright {
    font-size: 13px;
    opacity: 0.5;
    margin: 0;
}

.footer-login-btn {
    display: inline-block;
    padding: 10px 30px;
    background-color: transparent;
    color: var(--color-text-light);
    border: 1px solid var(--color-text-light);
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all var(--transition-speed);
    margin-bottom: 20px;
}

.footer-login-btn:hover {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-primary);
}

/* Footer Responsive Styles */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links {
        gap: 40px;
    }

    .footer-contact-section {
        align-items: flex-start;
    }

    .footer-contact-info {
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .footer {
        padding-top: 40px;
    }

    .footer-links {
        flex-direction: row;
        gap: 40px;
        justify-content: flex-start;
    }

    .footer-logo img {
        height: 50px;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 0 20px;
    }

    .footer-links {
        gap: 30px;
    }

    .social-icons a {
        width: 35px;
        height: 35px;
    }

    .social-icons svg {
        width: 16px;
        height: 16px;
    }
}

/* ========================================
   HOME PAGE STYLES
   ======================================== */

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-images {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    z-index: -2;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.hero-content {
    text-align: center;
    color: var(--color-text-light);
    padding: 0 20px;
    max-width: 900px;
}

.hero-title {
    font-family: var(--font-primary);
    font-size: 44px;
    font-weight: 200;
    line-height: 1.2;
    letter-spacing: 8px;
    text-transform: uppercase;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 50px;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

.hero-cta {
    display: inline-block;
    padding: 18px 50px;
    background-color: transparent;
    color: var(--color-text-light);
    border: 2px solid var(--color-text-light);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all var(--transition-speed);
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

.hero-cta:hover {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--color-text-light);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: fadeIn 1s ease-out 0.9s backwards;
}

.hero-scroll::after {
    content: "";
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 50px;
    background-color: var(--color-text-light);
    opacity: 0.5;
    animation: scrollLine 2s ease-in-out infinite;
}
/* Hero Responsive */
@media (max-width: 768px) {
    .hero-images {
        grid-template-columns: 1fr; /* Single column on mobile */
    }

    .hero-background-image:nth-child(2),
    .hero-background-image:nth-child(3) {
        display: none; /* Hide 2nd and 3rd images */
    }

    .hero-title {
        font-size: 40px;
        letter-spacing: 4px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 20px;
        letter-spacing: 3px;
    }

    .hero-cta {
        padding: 14px 35px;
        font-size: 12px;
    }
}
/* Events Redefined Section */
.events-redefined {
    background-color: #101315;
    padding: 80px 0;
}

.events-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 60px;
    align-items: center;
}

.events-image {
    overflow: hidden;
    border-radius: 12px;
    box-shadow:
        0 24px 64px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.05);
}

.events-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.events-divider {
    width: 1px;
    height: 300px;
    background-color: rgba(255, 255, 255, 0.2);
}

.events-content {
    color: var(--color-text-light);
}

.section-title {
    font-family: var(--font-secondary);
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
}

.section-text {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 18px;
    opacity: 0.9;
}

.section-text strong {
    color: var(--color-accent);
    font-weight: 600;
}

.section-cta {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 35px;
    background-color: transparent;
    color: var(--color-text-light);
    border: 1px solid var(--color-text-light);
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all var(--transition-speed);
}

.section-cta:hover {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-primary);
}

/* The Collective Section */
.collective-section {
    background-color: #101315;
    padding: 80px 0;
}

.collective-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 40px;
}

.collective-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
}

.collective-title {
    font-family: var(--font-secondary);
    font-size: 40px;
    font-weight: 700;
    color: var(--color-text-light);
    margin-bottom: 12px;
}

.collective-subtitle {
    font-size: 15px;
    color: var(--color-text-light);
    opacity: 0.8;
    margin: 0;
}

.carousel-controls {
    display: flex;
    gap: 15px;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background-color: transparent;
    color: var(--color-text-light);
    cursor: pointer;
    transition: all var(--transition-speed);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.collective-carousel-wrapper {
    overflow: hidden;
    position: relative;
}

.collective-carousel {
    display: flex;
    gap: 25px;
    transition: transform 0.5s ease;
}

.collective-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    flex: 0 0 calc(33.333% - 17px);
    min-width: 0;
    z-index: 0;
}

.collective-item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.55) 0%,
        rgba(0, 0, 0, 0.08) 60%,
        transparent 100%
    );
    z-index: 1;
    pointer-events: none;
}

.collective-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

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

.collective-item-title {
    position: absolute;
    bottom: 25px;
    left: 25px;
    font-family: var(--font-secondary);
    font-size: 28px;
    font-weight: 700;
    color: var(--color-text-light);
    z-index: 2;
    margin: 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes scrollLine {
    0%,
    100% {
        height: 50px;
        opacity: 0.5;
    }
    50% {
        height: 30px;
        opacity: 0.2;
    }
}

/* Events Section */
.events-section {
    background-color: #2a2a2a;
    padding: 80px 0;
}

.events-section-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.events-section-content {
    color: var(--color-text-light);
}

.events-section-title {
    font-family: var(--font-secondary);
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
}

.events-section-text {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.9;
}

.events-section-text strong {
    font-weight: 600;
}

.events-section-cta {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 35px;
    background-color: transparent;
    color: var(--color-text-light);
    border: 1px solid var(--color-text-light);
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all var(--transition-speed);
}

.events-section-cta:hover {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-primary);
}

/* Events Section — Overlapping Gallery */
.events-section-images {
    position: relative;
    width: 100%;
    padding-bottom: 20px;
    padding-right: 20px;
}

.events-image-circle {
    position: relative;
    width: 90%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow:
        0 24px 64px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.05);
    z-index: 1;
}

.events-image-circle img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
}

.events-image-square {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 52%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.08);
    z-index: 2;
    border: 4px solid #2a2a2a;
}

.events-image-square img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: block;
}

/* Portfolio Section */
.portfolio-section {
    background-color: #101315;
    padding: 80px 0;
}

.portfolio-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 40px;
}

.portfolio-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
}

.portfolio-tagline {
    font-size: 15px;
    color: var(--color-text-light);
    opacity: 0.8;
    max-width: 500px;
    line-height: 1.6;
    margin: 0;
}

.portfolio-title {
    font-family: var(--font-secondary);
    font-size: 50px;
    font-weight: 700;
    color: var(--color-text-light);
    margin: 0;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.portfolio-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

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

.portfolio-item-title {
    font-family: var(--font-secondary);
    font-size: 22px;
    font-weight: 600;
    color: var(--color-text-light);
    margin-top: 15px;
    margin-bottom: 0;
}

/* Rewards Section */
.rewards-section {
    background-color: #101315;
    padding: 80px 0;
}

.rewards-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.rewards-content {
    color: var(--color-text-light);
}

.rewards-title {
    font-family: var(--font-secondary);
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
}

.rewards-text {
    font-size: 15px;
    line-height: 1.8;
    opacity: 0.9;
}

.rewards-text strong {
    font-weight: 600;
}

.rewards-image {
    max-width: 600px;
}

.rewards-image img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    display: block;
}

/* Instagram Section */
.instagram-section {
    background-color: #101315;
    padding: 0 0 80px 0;
}

.instagram-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 40px;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}

.instagram-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}

.instagram-item:hover img {
    transform: scale(1.1);
    opacity: 0.8;
}

.instagram-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background-color: transparent;
    color: var(--color-text-light);
    border: 1px solid var(--color-text-light);
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all var(--transition-speed);
}

.instagram-cta:hover {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-primary);
}

.instagram-cta svg {
    width: 18px;
    height: 18px;
}

/* ========================================
   HOME PAGE RESPONSIVE STYLES
   ======================================== */

@media (max-width: 1200px) {
    .events-container {
        gap: 40px;
    }

    .events-divider {
        height: 250px;
    }
}

@media (max-width: 1024px) {
    .events-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .events-divider {
        display: none;
    }

    .events-image {
        order: 2;
    }

    .events-content {
        order: 1;
    }

    .events-image img {
        height: 350px;
    }

    .events-section-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .events-section-content {
        order: 1;
    }

    .events-section-images {
        order: 2;
        max-width: 500px;
        margin: 0 auto;
    }

    .events-image-circle img {
        height: 320px;
    }

    .events-image-square img {
        height: 200px;
    }

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

    .portfolio-header {
        flex-direction: column;
        gap: 20px;
    }

    .portfolio-title {
        font-size: 48px;
    }

    .rewards-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .collective-header {
        flex-direction: column;
        gap: 20px;
    }

    .collective-item {
        flex: 0 0 calc(50% - 12.5px);
    }
}

@media (max-width: 768px) {
    .hero-images {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 40px;
        letter-spacing: 5px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section-title,
    .collective-title,
    .events-section-title {
        font-size: 32px;
    }

    .events-redefined,
    .collective-section,
    .events-section,
    .portfolio-section,
    .rewards-section {
        padding: 50px 0;
    }

    .collective-item {
        flex: 0 0 100%;
    }

    .collective-item img {
        height: 300px;
    }

    .events-section-images {
        max-width: 400px;
    }

    .events-image-circle img {
        height: 270px;
    }

    .events-image-square {
        width: 48%;
        bottom: -16px;
        right: -16px;
        border-width: 3px;
    }

    .events-image-square img {
        height: 180px;
    }

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

    .portfolio-title {
        font-size: 36px;
    }

    .portfolio-item img {
        height: 300px;
    }

    .rewards-title {
        font-size: 36px;
    }

    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 20px;
        letter-spacing: 3px;
    }

    .hero-cta {
        padding: 15px 35px;
        font-size: 12px;
    }

    .section-title,
    .collective-title,
    .events-section-title {
        font-size: 26px;
    }

    .collective-item-title {
        font-size: 22px;
        bottom: 20px;
        left: 20px;
    }

    .events-section-images {
        max-width: 100%;
        padding-right: 16px;
        padding-bottom: 16px;
    }

    .events-image-circle {
        width: 88%;
    }

    .events-image-circle img {
        height: 230px;
    }

    .events-image-square {
        width: 50%;
        bottom: -12px;
        right: -12px;
        border-width: 3px;
    }

    .events-image-square img {
        height: 150px;
    }

    .portfolio-title {
        font-size: 32px;
    }

    .portfolio-item-title {
        font-size: 18px;
    }

    .rewards-title {
        font-size: 32px;
    }

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

/* ========================================
   LOGIN PAGE STYLES
   ======================================== */

.login-section {
    min-height: 100vh;
    background-color: var(--color-dark-azure);
}

.login-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

.login-image {
    position: relative;
    overflow: hidden;
}

.login-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.login-form-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background-color: var(--color-dark-azure);
}

.login-form-wrapper {
    width: 100%;
    max-width: 450px;
}

.login-logo {
    text-align: center;
    margin-bottom: 40px;
}

.login-logo img {
    height: 60px;
    width: auto;
}

.login-title {
    font-family: var(--font-secondary);
    font-size: 36px;
    font-weight: 700;
    color: var(--color-text-light);
    margin-bottom: 10px;
    text-align: center;
}

.login-subtitle {
    font-size: 15px;
    color: var(--color-text-light);
    opacity: 0.7;
    margin-bottom: 40px;
    text-align: center;
}

.login-error {
    background-color: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.3);
    color: #ff6b6b;
    padding: 12px 20px;
    border-radius: 4px;
    margin-bottom: 25px;
    font-size: 14px;
}

.login-form {
    width: 100%;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text-light);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.form-group input {
    width: 100%;
    padding: 14px 18px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-text-light);
    font-size: 15px;
    font-family: var(--font-primary);
    border-radius: 4px;
    transition: all var(--transition-speed);
}

.form-group input:focus {
    outline: none;
    border-color: var(--color-accent);
    background-color: rgba(255, 255, 255, 0.08);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-text-light);
    font-size: 14px;
    cursor: pointer;
}

.remember-me input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.remember-me span {
    opacity: 0.8;
}

.forgot-password {
    color: var(--color-accent);
    font-size: 14px;
    text-decoration: none;
    transition: opacity var(--transition-speed);
}

.forgot-password:hover {
    opacity: 0.8;
}

.login-btn {
    width: 100%;
    padding: 16px;
    background-color: var(--color-accent);
    color: var(--color-primary);
    border: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--transition-speed);
    font-family: var(--font-primary);
    border-radius: 4px;
}

.login-btn:hover {
    background-color: #c49d2e;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.login-footer-text {
    text-align: center;
    margin-top: 30px;
    color: var(--color-text-light);
    opacity: 0.7;
    font-size: 14px;
}

.login-footer-text a {
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 500;
    transition: opacity var(--transition-speed);
}

.login-footer-text a:hover {
    opacity: 0.8;
}

/* Login Page Responsive Styles */
@media (max-width: 1024px) {
    .login-container {
        grid-template-columns: 1fr;
    }

    .login-image {
        display: none;
    }

    .login-form-container {
        min-height: 100vh;
    }
}

@media (max-width: 480px) {
    .login-form-container {
        padding: 30px 20px;
    }

    .login-title {
        font-size: 28px;
    }

    .login-logo img {
        height: 50px;
    }
}

/* ========================================
   ADMIN DASHBOARD STYLES — REDESIGNED
   ======================================== */

.admin-body {
    background-color: #f5f6f8;
}

/* ----------------------------------------
   HEADER
   ---------------------------------------- */
.admin-header {
    background: var(--color-dark-azure);
    border-bottom: none;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow:
        0 1px 3px rgba(0, 0, 0, 0.08),
        0 4px 12px rgba(0, 0, 0, 0.04);
}

.admin-header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
    gap: 24px;
}

.admin-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.admin-logo img {
    height: 36px;
    width: auto;
}

/* Nav */
.admin-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 0 auto;
}

.admin-nav a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.2s;
    letter-spacing: 0.01em;
    position: relative;
    white-space: nowrap;
}

.admin-nav a:hover {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.08);
}

.admin-nav a.active {
    color: var(--color-primary);
    background-color: var(--color-accent);
    font-weight: 600;
    box-shadow: 0 1px 4px rgba(212, 175, 55, 0.25);
}

/* User area */
.admin-user {
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    font-weight: 500;
    flex-shrink: 0;
    white-space: nowrap;
}

.admin-logout-btn {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.85);
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    border-radius: 7px;
    transition: all 0.2s;
    font-family: var(--font-primary);
    letter-spacing: 0.01em;
}

.admin-logout-btn:hover {
    background-color: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    color: #ffffff;
}

/* ----------------------------------------
   MAIN CONTENT AREA
   ---------------------------------------- */
.admin-main {
    padding: 36px 0;
    min-height: calc(100vh - 64px);
}

.admin-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
}

.admin-page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
}

.admin-page-title {
    font-family: var(--font-secondary);
    font-size: 28px;
    font-weight: 700;
    color: var(--color-dark-azure);
    margin: 0;
}

/* ----------------------------------------
   BUTTONS
   ---------------------------------------- */
.admin-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
    font-family: var(--font-primary);
}

.admin-btn-primary {
    background-color: var(--color-accent);
    color: var(--color-primary);
}

.admin-btn-primary:hover {
    background-color: #c49d2e;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.25);
}

.admin-btn-secondary {
    background-color: #374151;
    color: var(--color-text-light);
}

.admin-btn-secondary:hover {
    background-color: #1f2937;
}

.admin-btn-link {
    color: var(--color-accent);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 4px 8px;
    transition: opacity var(--transition-speed);
}

.admin-btn-link:hover {
    opacity: 0.8;
}

.admin-btn-danger {
    color: #dc3545;
}

/* ----------------------------------------
   STATS GRID
   ---------------------------------------- */
.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}

.admin-stat-card {
    background: white;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    gap: 20px;
    transition:
        box-shadow 0.2s,
        transform 0.2s;
}

.admin-stat-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.stat-icon {
    font-size: 44px;
}

.stat-info h3 {
    font-size: 13px;
    font-weight: 500;
    color: #6b7280;
    margin: 0 0 6px 0;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.stat-number {
    font-size: 30px;
    font-weight: 700;
    color: var(--color-dark-azure);
    margin: 0;
    line-height: 1;
}

/* ----------------------------------------
   SECTIONS
   ---------------------------------------- */
.admin-section {
    background: white;
    padding: 0;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    margin-bottom: 28px;
    overflow: hidden;
}

.admin-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 28px;
    border-bottom: 1px solid #f3f4f6;
}

.admin-section-header h2 {
    font-family: var(--font-secondary);
    font-size: 18px;
    font-weight: 600;
    color: var(--color-dark-azure);
    margin: 0;
}

/* ----------------------------------------
   TABLE
   ---------------------------------------- */
.admin-table-container {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table thead {
    background-color: #f9fafb;
}

.admin-table th {
    text-align: left;
    padding: 12px 28px;
    font-size: 11px;
    font-weight: 600;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-bottom: 1px solid #f3f4f6;
}

.admin-table td {
    padding: 16px 28px;
    font-size: 14px;
    color: #374151;
    border-bottom: 1px solid #f3f4f6;
}

.admin-table tbody tr {
    transition: background 0.15s;
}

.admin-table tbody tr:hover {
    background-color: #fafbfc;
}

.admin-table tbody tr:last-child td {
    border-bottom: none;
}

.admin-table-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 500;
    border-radius: 20px;
}

.status-active {
    background-color: #ecfdf5;
    color: #065f46;
}

.status-inactive {
    background-color: #fef2f2;
    color: #991b1b;
}

.admin-empty-state {
    text-align: center;
    padding: 60px 28px;
    color: #6b7280;
}

.admin-empty-state a {
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 600;
}

.admin-empty-state a:hover {
    text-decoration: underline;
}

/* ----------------------------------------
   FORMS
   ---------------------------------------- */
.admin-form-container {
    background: white;
    padding: 36px;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
}

.admin-form {
    max-width: 800px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 18px;
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
    font-family: var(--font-primary);
    transition: all 0.2s;
    color: #111827;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12);
}

.form-error {
    color: #ef4444;
    font-size: 12px;
    margin-top: 5px;
    display: block;
}

.form-actions {
    display: flex;
    gap: 12px;
    margin-top: 28px;
}

/* ----------------------------------------
   PAGINATION
   ---------------------------------------- */
.admin-pagination {
    margin-top: 24px;
    display: flex;
    justify-content: center;
}

/* ----------------------------------------
   RESPONSIVE
   ---------------------------------------- */
@media (max-width: 768px) {
    .admin-header-container {
        padding: 0 16px;
        height: 56px;
    }

    .admin-logo img {
        height: 30px;
    }

    .admin-container {
        padding: 0 16px;
    }

    .admin-page-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .admin-nav {
        display: none;
    }

    .admin-stats-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .admin-form-container {
        padding: 20px;
    }

    .admin-table th,
    .admin-table td {
        padding: 12px 16px;
    }

    .admin-section-header {
        padding: 18px 20px;
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
}

/* ========================================
           REDESIGNED RESTAURANT FORM STYLES
           ======================================== */

.rf-page {
    max-width: 960px;
    margin: 0 auto;
}

.rf-page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.rf-page-header h1 {
    font-family: var(--font-secondary);
    font-size: 28px;
    font-weight: 700;
    color: var(--color-dark-azure);
    margin: 0;
}

.rf-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: white;
    color: var(--color-dark-azure);
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
    font-family: var(--font-primary);
}

.rf-back-btn:hover {
    background: #f9fafb;
    border-color: #9ca3af;
    color: var(--color-dark-azure);
}

.rf-section {
    background: white;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    margin-bottom: 24px;
    overflow: hidden;
    transition: box-shadow 0.2s;
}

.rf-section:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.rf-section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 28px;
    border-bottom: 1px solid #f3f4f6;
    background: #fafbfc;
}

.rf-section-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.rf-section-icon.blue {
    background: #dbeafe;
    color: #2563eb;
}
.rf-section-icon.amber {
    background: #fef3c7;
    color: #d97706;
}
.rf-section-icon.green {
    background: #d1fae5;
    color: #059669;
}
.rf-section-icon.purple {
    background: #ede9fe;
    color: #7c3aed;
}
.rf-section-icon.rose {
    background: #ffe4e6;
    color: #e11d48;
}
.rf-section-icon.teal {
    background: #ccfbf1;
    color: #0d9488;
}
.rf-section-icon.orange {
    background: #ffedd5;
    color: #ea580c;
}
.rf-section-icon.indigo {
    background: #e0e7ff;
    color: #4f46e5;
}

.rf-section-title {
    font-family: var(--font-secondary);
    font-size: 17px;
    font-weight: 600;
    color: var(--color-dark-azure);
    margin: 0;
}

.rf-section-subtitle {
    font-size: 13px;
    color: #6b7280;
    margin: 2px 0 0;
}

.rf-section-body {
    padding: 24px 28px;
}

.rf-form-group {
    margin-bottom: 22px;
}

.rf-form-group:last-child {
    margin-bottom: 0;
}

.rf-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 6px;
    letter-spacing: 0.01em;
}

.rf-label .required {
    color: #ef4444;
    margin-left: 2px;
}

.rf-input,
.rf-select,
.rf-textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
    font-family: var(--font-primary);
    color: #111827;
    background: white;
    transition: all 0.2s;
    outline: none;
}

.rf-input:focus,
.rf-select:focus,
.rf-textarea:focus {
    border-color: #d4af37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12);
}

.rf-input::placeholder,
.rf-textarea::placeholder {
    color: #9ca3af;
}

.rf-textarea {
    resize: vertical;
    min-height: 80px;
}

.rf-textarea.mono {
    font-family: "Courier New", monospace;
    font-size: 13px;
}

.rf-hint {
    font-size: 12px;
    color: #9ca3af;
    margin-top: 5px;
    display: block;
}

.rf-error {
    color: #ef4444;
    font-size: 12px;
    margin-top: 5px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.rf-error::before {
    content: "⚠";
    font-size: 11px;
}

.rf-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 18px;
}

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

.rf-checkbox-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #6b7280;
    cursor: pointer;
    padding: 6px 0;
}

.rf-checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #d4af37;
    cursor: pointer;
}

.rf-file-upload input[type="file"] {
    width: 100%;
    padding: 10px 14px;
    border: 2px dashed #d1d5db;
    border-radius: 8px;
    font-size: 13px;
    font-family: var(--font-primary);
    color: #6b7280;
    background: #f9fafb;
    cursor: pointer;
    transition: all 0.2s;
}

.rf-file-upload input[type="file"]:hover {
    border-color: #d4af37;
    background: #fefce8;
}

.rf-file-upload input[type="file"]::file-selector-button {
    background: var(--color-dark-azure);
    color: white;
    border: none;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    margin-right: 10px;
    font-family: var(--font-primary);
}

.rf-logo-preview {
    margin-top: 12px;
    display: inline-block;
}

.rf-logo-preview img {
    max-width: 180px;
    height: auto;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 8px;
    background: white;
}

.rf-editor {
    border: 1px solid #d1d5db;
    border-radius: 8px;
    background: white;
    overflow: hidden;
    transition:
        border-color 0.2s,
        box-shadow 0.2s;
}

.rf-editor:focus-within {
    border-color: #d4af37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12);
}

.rf-editor-toolbar {
    display: flex;
    gap: 3px;
    padding: 8px 10px;
    background: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
    flex-wrap: wrap;
    align-items: center;
}

.toolbar-group {
    display: flex;
    gap: 2px;
}

.toolbar-divider {
    width: 1px;
    height: 24px;
    background: #e5e7eb;
    margin: 0 6px;
}

.toolbar-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 6px;
    cursor: pointer;
    color: #4b5563;
    font-size: 13px;
    transition: all 0.15s;
}

.toolbar-btn:hover {
    background: #e5e7eb;
    color: #111827;
}

.toolbar-btn.active {
    background: var(--color-accent);
    color: white;
    border-color: var(--color-accent);
}

.editor-content {
    min-height: 160px;
    max-height: 360px;
    overflow-y: auto;
    padding: 14px 16px;
    font-size: 14px;
    line-height: 1.7;
    outline: none;
    color: #111827;
}

.editor-content:empty:before {
    content: attr(data-placeholder);
    color: #9ca3af;
}

.editor-content:focus {
    outline: none;
}

.editor-content ul,
.editor-content ol {
    margin: 10px 0 10px 20px !important;
    padding-left: 20px !important;
}

.editor-content ul li,
.editor-content ol li {
    margin: 5px 0 !important;
    padding-left: 5px !important;
    list-style-position: outside !important;
}

.editor-content ul {
    list-style-type: disc !important;
}
.editor-content ol {
    list-style-type: decimal !important;
}

.rf-dynamic-group {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 18px 20px;
    margin-bottom: 12px;
    position: relative;
    transition: border-color 0.2s;
}

.rf-dynamic-group:hover {
    border-color: #d1d5db;
}
.rf-dynamic-group .rf-row {
    margin-bottom: 0;
}

.rf-remove-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    background: white;
    color: #ef4444;
    border: 1px solid #fecaca;
    width: 30px;
    height: 30px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s;
    z-index: 2;
}

.rf-remove-btn:hover {
    background: #fef2f2;
    border-color: #ef4444;
}

.rf-add-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 18px;
    background: white;
    color: #059669;
    border: 1px dashed #a7f3d0;
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    font-family: var(--font-primary);
    transition: all 0.2s;
    margin-top: 8px;
}

.rf-add-btn:hover {
    background: #ecfdf5;
    border-color: #059669;
}

.rf-existing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 14px;
    margin-bottom: 16px;
}

.rf-existing-item {
    position: relative;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
    background: white;
    transition: box-shadow 0.2s;
}

.rf-existing-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.rf-existing-item img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    display: block;
}

.rf-existing-item-info {
    padding: 8px 10px;
    font-size: 12px;
    text-align: center;
    color: #6b7280;
    background: #fafbfc;
    border-top: 1px solid #f3f4f6;
}

.rf-existing-item-delete {
    position: absolute;
    top: 6px;
    right: 6px;
    background: rgba(239, 68, 68, 0.9);
    color: white;
    border: none;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s;
}

.rf-existing-item:hover .rf-existing-item-delete {
    opacity: 1;
}

.rf-featured-badge {
    position: absolute;
    top: 6px;
    left: 6px;
    background: var(--color-accent);
    color: white;
    padding: 3px 10px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.rf-pdf-placeholder {
    width: 100%;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9fafb;
}

.rf-pdf-placeholder i {
    font-size: 40px;
    color: #ef4444;
}

.rf-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.rf-modal-overlay.active {
    display: flex;
}

.rf-modal {
    background: white;
    border-radius: 14px;
    width: 90%;
    max-width: 480px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    animation: rfModalIn 0.2s ease-out;
}

@keyframes rfModalIn {
    from {
        transform: scale(0.95) translateY(10px);
        opacity: 0;
    }
    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.rf-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #f3f4f6;
}

.rf-modal-header h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-dark-azure);
    display: flex;
    align-items: center;
    gap: 8px;
}

.rf-modal-close {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #9ca3af;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.15s;
}

.rf-modal-close:hover {
    background: #f3f4f6;
    color: #374151;
}

.rf-modal-body {
    padding: 20px 24px;
}

.rf-modal-footer {
    padding: 16px 24px;
    border-top: 1px solid #f3f4f6;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.rf-form-actions {
    display: flex;
    gap: 12px;
    padding-top: 12px;
}

.rf-btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--color-accent);
    color: var(--color-primary);
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font-primary);
    transition: all 0.2s;
}

.rf-btn-submit:hover {
    background: #c49d2e;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.rf-btn-cancel {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background: white;
    color: #6b7280;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    font-family: var(--font-primary);
    transition: all 0.2s;
}

.rf-btn-cancel:hover {
    background: #f9fafb;
    color: #374151;
}

.rf-img-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
    margin-top: 12px;
}

.rf-img-preview-item {
    position: relative;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}

.rf-img-preview-item img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    display: block;
}

.rf-img-preview-item-label {
    padding: 6px 8px;
    font-size: 11px;
    text-align: center;
    color: #6b7280;
    background: #fafbfc;
}

.flash-message {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 14px 24px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    z-index: 10000;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transition: opacity 0.3s;
    animation: rfFlashIn 0.3s ease-out;
}

@keyframes rfFlashIn {
    from {
        transform: translateX(20px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.flash-success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}
.flash-error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

@media (max-width: 768px) {
    .rf-page {
        padding: 0 16px;
    }
    .rf-section-header {
        padding: 16px 20px;
    }
    .rf-section-body {
        padding: 20px;
    }
    .rf-row-3 {
        grid-template-columns: 1fr;
    }
    .rf-page-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

.idx-page {
    max-width: 1200px;
    margin: 0 auto;
}

.idx-page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
}

.idx-page-header h1 {
    font-family: var(--font-secondary);
    font-size: 28px;
    font-weight: 700;
    color: var(--color-dark-azure);
    margin: 0;
}

.idx-add-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    background: var(--color-accent);
    color: var(--color-primary);
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font-primary);
    text-decoration: none;
    transition: all 0.2s;
}

.idx-add-btn:hover {
    background: #c49d2e;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
    color: var(--color-primary);
}

/* Grid */
.idx-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 22px;
}

/* Card */
.idx-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    overflow: hidden;
    transition:
        box-shadow 0.25s,
        transform 0.25s;
}

.idx-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

/* Card Image */
.idx-card-img {
    width: 100%;
    height: 180px;
    position: relative;
    overflow: hidden;
}

.idx-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.idx-card-img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f0f2f5 0%, #e2e6eb 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c4c9d0;
    font-size: 40px;
}

/* Status dot on the image */
.idx-card-status-dot {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

.idx-card-status-dot.active {
    background: #10b981;
}
.idx-card-status-dot.inactive {
    background: #ef4444;
}

/* Card Body */
.idx-card-body {
    padding: 20px 22px;
}

.idx-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 14px;
}

.idx-card-name {
    font-family: var(--font-secondary);
    font-size: 18px;
    font-weight: 700;
    color: var(--color-dark-azure);
    margin: 0 0 4px;
    line-height: 1.3;
}

.idx-card-location {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: #9ca3af;
}

.idx-card-location i {
    font-size: 11px;
    color: #d1d5db;
}

/* Toggle */
.idx-toggle {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.idx-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.idx-toggle-track {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #d1d5db;
    border-radius: 24px;
    transition: background 0.25s;
}

.idx-toggle-track::before {
    content: "";
    position: absolute;
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background: white;
    border-radius: 50%;
    transition: transform 0.25s;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.idx-toggle input:checked + .idx-toggle-track {
    background: #10b981;
}

.idx-toggle input:checked + .idx-toggle-track::before {
    transform: translateX(20px);
}

.idx-toggle input:disabled + .idx-toggle-track {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Meta row */
.idx-card-meta {
    display: flex;
    gap: 16px;
    padding: 12px 0;
    margin-bottom: 14px;
    border-top: 1px solid #f3f4f6;
    border-bottom: 1px solid #f3f4f6;
}

.idx-card-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #6b7280;
}

.idx-card-meta-item i {
    font-size: 12px;
    color: #9ca3af;
}

/* Action buttons */
.idx-card-actions {
    display: flex;
    gap: 10px;
}

.idx-card-action {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 9px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    font-family: var(--font-primary);
    transition: all 0.15s;
    cursor: pointer;
}

.idx-card-action.view {
    background: #f3f4f6;
    color: #374151;
    border: 1px solid #e5e7eb;
}

.idx-card-action.view:hover {
    background: #e5e7eb;
    color: var(--color-dark-azure);
}

.idx-card-action.edit {
    background: var(--color-dark-azure);
    color: white;
    border: 1px solid var(--color-dark-azure);
}

.idx-card-action.edit:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

/* Empty State */
.idx-empty {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 80px 40px;
    text-align: center;
}

.idx-empty-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: #f9fafb;
    border: 1px solid #f3f4f6;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #d1d5db;
    margin-bottom: 20px;
}

.idx-empty h2 {
    font-family: var(--font-secondary);
    font-size: 22px;
    font-weight: 700;
    color: var(--color-dark-azure);
    margin: 0 0 8px;
}

.idx-empty p {
    font-size: 15px;
    color: #6b7280;
    margin: 0 0 28px;
}

/* Pagination */
.idx-pagination {
    margin-top: 28px;
    display: flex;
    justify-content: center;
}

/* Flash Messages */
.flash-message {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 14px 24px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    z-index: 10000;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transition: opacity 0.3s;
    animation: idxFlashIn 0.3s ease-out;
}

@keyframes idxFlashIn {
    from {
        transform: translateX(20px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.flash-success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}
.flash-error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

@media (max-width: 768px) {
    .idx-page-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

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

.dash-page {
    max-width: 1200px;
    margin: 0 auto;
}

.dash-greeting {
    margin-bottom: 32px;
}

.dash-greeting h1 {
    font-family: var(--font-secondary);
    font-size: 28px;
    font-weight: 700;
    color: var(--color-dark-azure);
    margin: 0 0 4px;
}

.dash-greeting p {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

/* Stats Row */
.dash-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.dash-stat {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 24px 28px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition:
        box-shadow 0.2s,
        transform 0.2s;
}

.dash-stat:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.dash-stat-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.dash-stat-icon.blue {
    background: #dbeafe;
    color: #2563eb;
}
.dash-stat-icon.green {
    background: #d1fae5;
    color: #059669;
}
.dash-stat-icon.amber {
    background: #fef3c7;
    color: #d97706;
}

.dash-stat-label {
    font-size: 13px;
    font-weight: 500;
    color: #6b7280;
    margin: 0 0 4px;
    letter-spacing: 0.02em;
}

.dash-stat-value {
    font-family: var(--font-secondary);
    font-size: 30px;
    font-weight: 700;
    color: var(--color-dark-azure);
    margin: 0;
    line-height: 1;
}

/* Recent Table Section */
.dash-section {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    overflow: hidden;
}

.dash-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 28px;
    border-bottom: 1px solid #f3f4f6;
}

.dash-section-header h2 {
    font-family: var(--font-secondary);
    font-size: 18px;
    font-weight: 600;
    color: var(--color-dark-azure);
    margin: 0;
}

.dash-add-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--color-accent);
    color: var(--color-primary);
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font-primary);
    text-decoration: none;
    transition: all 0.2s;
}

.dash-add-btn:hover {
    background: #c49d2e;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
    color: var(--color-primary);
}

/* Table */
.dash-table {
    width: 100%;
    border-collapse: collapse;
}

.dash-table thead {
    background: #f9fafb;
}

.dash-table th {
    text-align: left;
    padding: 12px 28px;
    font-size: 11px;
    font-weight: 600;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-bottom: 1px solid #f3f4f6;
}

.dash-table td {
    padding: 16px 28px;
    font-size: 14px;
    color: #374151;
    border-bottom: 1px solid #f3f4f6;
}

.dash-table tbody tr {
    transition: background 0.15s;
}

.dash-table tbody tr:hover {
    background: #fafbfc;
}

.dash-table tbody tr:last-child td {
    border-bottom: none;
}

.dash-restaurant-name {
    font-weight: 600;
    color: var(--color-dark-azure);
}

.dash-city {
    color: #6b7280;
}

.dash-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 500;
    border-radius: 20px;
}

.dash-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.dash-badge.active {
    background: #ecfdf5;
    color: #065f46;
}

.dash-badge.active .dash-badge-dot {
    background: #10b981;
}

.dash-badge.inactive {
    background: #fef2f2;
    color: #991b1b;
}

.dash-badge.inactive .dash-badge-dot {
    background: #ef4444;
}

.dash-date {
    color: #9ca3af;
    font-size: 13px;
}

.dash-actions {
    display: flex;
    gap: 4px;
}

.dash-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    color: #6b7280;
    text-decoration: none;
    transition: all 0.15s;
    font-size: 13px;
}

.dash-action-btn:hover {
    background: #f3f4f6;
    color: var(--color-dark-azure);
}

.dash-action-btn.edit:hover {
    background: #dbeafe;
    color: #2563eb;
}

/* Empty State */
.dash-empty {
    padding: 60px 28px;
    text-align: center;
}

.dash-empty-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: #f3f4f6;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #9ca3af;
    margin-bottom: 16px;
}

.dash-empty p {
    color: #6b7280;
    font-size: 15px;
    margin: 0 0 20px;
}

.dash-empty a {
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 600;
}

.dash-empty a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .dash-stats {
        grid-template-columns: 1fr;
    }

    .dash-table th,
    .dash-table td {
        padding: 12px 16px;
    }

    .dash-section-header {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
}

/* ========================================
                       RESTAURANT LISTING PAGE — PUBLIC
                       ======================================== */

/* Hero */
.rl-hero {
    position: relative;
    width: 100%;
    height: 340px;
    background: linear-gradient(135deg, #0d0f11 0%, #1a1d21 50%, #0d0f11 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.rl-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        ellipse at 50% 80%,
        rgba(212, 175, 55, 0.06) 0%,
        transparent 60%
    );
}

.rl-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 40px;
}

.rl-hero-label {
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-accent);
    margin-bottom: 18px;
}

.rl-hero-title {
    font-family: var(--font-secondary);
    font-size: 52px;
    font-weight: 700;
    color: var(--color-text-light);
    margin: 0 0 16px;
    line-height: 1.1;
}

.rl-hero-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Main */
.rl-main {
    background: #101315;
    padding: 70px 0 120px;
}

.rl-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 40px;
}

/* Restaurant Grid */
.rl-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* Restaurant Card */
.rl-card {
    position: relative;
    display: block;
    text-decoration: none;
    border-radius: 4px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.4s;
}

.rl-card:hover {
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

/* Card Image */
.rl-card-img {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.rl-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.rl-card:hover .rl-card-img img {
    transform: scale(1.06);
}

.rl-card-img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1d21 0%, #0d0f11 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.06);
    font-size: 52px;
}

.rl-card-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to top,
        rgba(16, 19, 21, 0.9) 0%,
        rgba(16, 19, 21, 0.1) 50%,
        transparent 100%
    );
    pointer-events: none;
    z-index: 1;
}

/* Card Body */
.rl-card-body {
    padding: 24px 28px 28px;
}

.rl-card-name {
    font-family: var(--font-secondary);
    font-size: 22px;
    font-weight: 700;
    color: var(--color-text-light);
    margin: 0 0 8px;
    line-height: 1.2;
}

.rl-card-location {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 16px;
}

.rl-card-location i {
    color: var(--color-accent);
    font-size: 11px;
}

.rl-card-description {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.45);
    margin: 0 0 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.rl-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.rl-card-meta {
    display: flex;
    gap: 14px;
}

.rl-card-meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
}

.rl-card-meta-item i {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.2);
}

.rl-card-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
    transition: all 0.3s;
}

.rl-card:hover .rl-card-arrow {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-primary);
}

/* Empty State */
.rl-empty {
    text-align: center;
    padding: 80px 40px;
}

.rl-empty-icon {
    font-size: 56px;
    color: rgba(255, 255, 255, 0.06);
    margin-bottom: 20px;
}

.rl-empty h2 {
    font-family: var(--font-secondary);
    font-size: 28px;
    font-weight: 700;
    color: var(--color-text-light);
    margin: 0 0 10px;
}

.rl-empty p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
}

/* Pagination */
.rl-pagination {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.rl-pagination nav {
    display: flex;
    gap: 6px;
}

.rl-pagination .page-link,
.rl-pagination nav a,
.rl-pagination nav span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    text-decoration: none;
    transition: all 0.2s;
}

.rl-pagination nav a:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.rl-pagination .active span,
.rl-pagination nav span[aria-current] {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-primary);
    font-weight: 600;
}

.rl-pagination nav span.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Responsive */
@media (max-width: 1024px) {
    .rl-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .rl-hero-title {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .rl-hero {
        height: 420px;
    }

    .rl-hero-title {
        font-size: 34px;
    }

    .rl-hero-content {
        padding: 0 20px;
    }

    .rl-container {
        padding: 0 20px;
    }

    .rl-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .rl-card-img {
        height: 240px;
    }

    .rl-main {
        padding: 50px 0 80px;
    }
}

@media (max-width: 480px) {
    .rl-hero {
        height: 380px;
    }

    .rl-hero-title {
        font-size: 28px;
    }

    .rl-card-img {
        height: 200px;
    }

    .rl-card-body {
        padding: 20px 22px 24px;
    }

    .rl-card-name {
        font-size: 20px;
    }
}

/* ========================================
       RESTAURANT SHOW PAGE — PUBLIC
       ======================================== */

.rst-hero {
    position: relative;
    width: 100%;
    height: 520px;
    overflow: hidden;
}

.rst-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.rst-hero-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1d21 0%, #101315 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.08);
    font-size: 120px;
}

.rst-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to top,
        rgba(16, 19, 21, 1) 0%,
        rgba(16, 19, 21, 0.7) 40%,
        rgba(16, 19, 21, 0.3) 70%,
        transparent 100%
    );
    z-index: 1;
}

.rst-hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 40px 60px;
}

.rst-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.rst-hero-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #10b981;
}

.rst-hero-name {
    font-family: var(--font-secondary);
    font-size: 52px;
    font-weight: 700;
    color: var(--color-text-light);
    margin: 0 0 12px;
    line-height: 1.1;
}

.rst-hero-location {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    gap: 8px;
}

.rst-hero-location i {
    color: var(--color-accent);
    font-size: 13px;
}

/* Gallery Thumbnails Strip */
.rst-thumbs-section {
    background: #101315;
    padding: 0 0 50px;
}

.rst-thumbs-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 40px;
}

.rst-thumbs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 8px;
}

.rst-thumbs::-webkit-scrollbar {
    height: 4px;
}

.rst-thumbs::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
}

.rst-thumbs::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 2px;
}

.rst-thumb {
    width: 90px;
    height: 64px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    flex-shrink: 0;
    border: 2px solid transparent;
    opacity: 0.5;
    transition: all 0.25s;
}

.rst-thumb:hover,
.rst-thumb.active {
    opacity: 1;
    border-color: var(--color-accent);
}

.rst-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Main Layout */
.rst-main {
    background: #101315;
    padding: 0 0 100px;
}

.rst-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 60px;
}

/* Section Styles */
.rst-section {
    margin-bottom: 50px;
}

.rst-section:last-child {
    margin-bottom: 0;
}

.rst-section-label {
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-accent);
    margin-bottom: 14px;
}

.rst-divider {
    width: 40px;
    height: 1px;
    background: var(--color-accent);
    margin-bottom: 24px;
}

/* Description */
.rst-description {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7) !important;
}

.rst-description span {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7) !important;
}

.rst-description p {
    margin: 0 0 16px;
}

.rst-description p:last-child {
    margin-bottom: 0;
}

.rst-description strong {
    color: rgba(255, 255, 255, 0.9);
}

.rst-description a {
    color: var(--color-accent);
    text-decoration: none;
}

.rst-description a:hover {
    text-decoration: underline;
}

.rst-description ul,
.rst-description ol {
    margin: 12px 0 12px 24px;
    padding-left: 8px;
}

.rst-description li {
    margin-bottom: 6px;
}

/* Hours */
.rst-hours {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
}

.rst-hours strong {
    color: rgba(255, 255, 255, 0.9);
}

/* Embed */
.rst-embed {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.rst-embed-reservation {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px;
}

.rst-embed iframe {
    width: 100%;
    min-height: 420px;
    display: block;
    border: none;
}

/* ===== SIDEBAR ===== */
.rst-sidebar {
    position: sticky;
    top: calc(var(--header-height) + 30px);
    align-self: start;
}

.rst-sidebar-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 28px;
    margin-bottom: 20px;
}

.rst-sidebar-card:last-child {
    margin-bottom: 0;
}

.rst-sidebar-title {
    font-family: var(--font-secondary);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0 0 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Contact Items */
.rst-contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.rst-contact-item:first-child {
    padding-top: 0;
}

.rst-contact-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.rst-contact-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: var(--color-accent);
    flex-shrink: 0;
}

.rst-contact-text {
    min-width: 0;
    flex: 1;
}

.rst-contact-value {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.rst-contact-value a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.2s;
}

.rst-contact-value a:hover {
    color: var(--color-accent);
}

.rst-contact-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.35);
    margin: 2px 0 0;
}

/* Social Links */
.rst-social-list {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.rst-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 16px;
    transition: all 0.25s;
}

.rst-social-link:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-primary);
    transform: translateY(-2px);
}

/* Booking CTA */
.rst-book-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 24px;
    background: transparent;
    color: var(--color-text-light);
    border: 1px solid var(--color-text-light);
    border-radius: 0;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all var(--transition-speed);
}

.rst-book-btn:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-primary);
}

/* ===== FULL-WIDTH TABBED MENUS ===== */
.rst-menus-section {
    background: #101315;
    padding: 0 0 100px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.rst-menus-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 60px 40px 0;
}

.rst-menu-tabs {
    display: flex;
    gap: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 35px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.rst-menu-tabs::-webkit-scrollbar {
    display: none;
}

.rst-menu-tab {
    background: none;
    border: none;
    padding: 16px 32px;
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    white-space: nowrap;
    flex-shrink: 0;
}

.rst-menu-tab::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--color-accent);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.rst-menu-tab:hover {
    color: rgba(255, 255, 255, 0.7);
}

.rst-menu-tab.active {
    color: var(--color-accent);
}

.rst-menu-tab.active::after {
    transform: scaleX(1);
}

/* Panels */
.rst-menu-panels {
    position: relative;
}

.rst-menu-panel {
    display: none;
    animation: rstMenuFadeIn 0.4s ease;
}

.rst-menu-panel.active {
    display: block;
}

@keyframes rstMenuFadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Image Viewer */
.rst-menu-image-viewer {
    padding: 0px 0;
    text-align: center;
}

.rst-menu-image-viewer img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: inline-block;
}

/* PDF Viewer */
.rst-menu-pdf-viewer {
    padding: 30px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.rst-menu-pdf-viewer iframe {
    width: 100%;
    height: 80vh;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    background: #1a1d21;
}

.rst-menu-download {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding: 12px 28px;
    background: transparent;
    color: var(--color-text-light);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all var(--transition-speed);
}

.rst-menu-download:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-primary);
}

/* Responsive */
@media (max-width: 1024px) {
    .rst-container {
        grid-template-columns: 1fr 320px;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .rst-hero {
        height: 380px;
    }

    .rst-hero-content {
        padding: 0 20px 40px;
    }

    .rst-hero-name {
        font-size: 36px;
    }

    .rst-thumbs-container,
    .rst-container {
        padding: 0 20px;
    }

    .rst-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .rst-sidebar {
        position: static;
    }

    .rst-section-title {
        font-size: 24px;
    }

    .rst-menus-container {
        padding: 40px 20px 0;
    }

    .rst-menu-pdf-viewer iframe {
        height: 60vh;
    }
}

@media (max-width: 480px) {
    .rst-hero {
        height: 300px;
    }

    .rst-hero-name {
        font-size: 28px;
    }

    .rst-menu-tab {
        padding: 14px 20px;
        font-size: 11px;
        letter-spacing: 0.5px;
    }

    .rst-menus-container {
        padding: 40px 20px 0;
    }

    .rst-menu-pdf-viewer iframe {
        height: 50vh;
    }
}

/* ========================================
       OUR STORY PAGE
       ======================================== */

/* Hero */
.story-hero {
    position: relative;
    width: 100%;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: #101315;
    overflow: hidden;
}

.story-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(
            ellipse at 20% 50%,
            rgba(212, 175, 55, 0.04) 0%,
            transparent 50%
        ),
        radial-gradient(
            ellipse at 80% 80%,
            rgba(212, 175, 55, 0.03) 0%,
            transparent 40%
        );
}

.story-hero-container {
    position: relative;
    z-index: 2;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 160px 40px 100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-hero-label {
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-accent);
    margin-bottom: 20px;
}

.story-hero-title {
    font-family: var(--font-secondary);
    font-size: 52px;
    font-weight: 700;
    color: var(--color-text-light);
    margin: 0 0 32px;
    line-height: 1.08;
}

.story-hero-text {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 20px;
}

.story-hero-text:last-child {
    margin-bottom: 0;
}

.story-hero-visual {
    position: relative;
}

/* ===== TWO-IMAGE GALLERY ===== */
.story-hero-gallery {
    position: relative;
    width: 100%;
    padding-bottom: 20px;
    padding-right: 20px;
}

/* Main large image */
.story-gallery-main {
    position: relative;
    width: 90%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow:
        0 24px 64px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.05);
    z-index: 1;
}

.story-gallery-main img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

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

/* Secondary image — overlapping bottom-right */
.story-gallery-secondary {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 52%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.08);
    z-index: 2;
    border: 4px solid #101315;
}

.story-gallery-secondary img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.story-gallery-secondary:hover img {
    transform: scale(1.03);
}

/* Floating badge — top-right area */
.story-gallery-badge {
    position: absolute;
    top: -14px;
    right: -14px;
    z-index: 4;
    width: 88px;
    height: 88px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--color-accent) 0%, #b8941e 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 10px 30px rgba(212, 175, 55, 0.25),
        0 4px 12px rgba(0, 0, 0, 0.4);
    text-align: center;
}

.story-badge-number {
    font-family: var(--font-secondary);
    font-size: 28px;
    font-weight: 800;
    color: #101315;
    line-height: 1;
    display: block;
}

.story-badge-text {
    font-size: 8.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: rgba(16, 19, 21, 0.65);
    line-height: 1.25;
    margin-top: 3px;
    display: block;
}

/* ===== FULL-WIDTH IMAGE BREAK ===== */
.story-image-break {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.story-image-break-inner {
    position: relative;
    width: 100%;
    height: 380px;
}

.story-image-break-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.story-image-break-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(
            to bottom,
            rgba(13, 15, 17, 0.55) 0%,
            rgba(13, 15, 17, 0.2) 40%,
            rgba(13, 15, 17, 0.2) 60%,
            rgba(16, 19, 21, 0.6) 100%
        ),
        linear-gradient(
            to right,
            rgba(13, 15, 17, 0.3) 0%,
            transparent 15%,
            transparent 85%,
            rgba(16, 19, 21, 0.3) 100%
        );
    pointer-events: none;
}

.story-image-break-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.story-image-break-quote {
    font-family: var(--font-secondary);
    font-size: 30px;
    font-weight: 400;
    font-style: italic;
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
    line-height: 1.5;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    max-width: 600px;
    padding: 0 40px;
}

/* ===== COLLECTION INTRO ===== */
.story-collection {
    background: #0d0f11;
}

.story-collection .story-section-inner {
    border-top: none;
}

.story-collection-grid {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 80px;
    align-items: start;
}

.story-collection-left .story-section-label {
    margin-bottom: 16px;
}

.story-collection-left .story-section-title {
    line-height: 1.3;
}

.story-collection-body p {
    font-size: 16px;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 20px;
}

.story-collection-body p:last-child {
    margin-bottom: 0;
}

/* ===== EVENT CATERING SECTION ===== */
.story-catering {
    background: #0d0f11;
}

.story-catering-header {
    margin-bottom: 50px;
}

.story-catering-grid {
    display: grid;
    grid-template-columns: 40% 1fr;
    gap: 70px;
    align-items: start;
}

.story-catering-visual {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.05);
}

.story-catering-visual img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.story-catering-visual:hover img {
    transform: scale(1.05);
}

.story-catering-content {
    padding-right: 20px;
}

.story-catering-intro {
    font-size: 15px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.65);
    margin: 24px 0 16px;
}

.story-catering-text {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
}

.story-catering-lists {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 100%;
}

.story-catering-list-block {
    padding: 32px 36px;
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.story-catering-list-block:hover {
    background: rgba(255, 255, 255, 0.025);
    border-color: rgba(212, 175, 55, 0.2);
}

.story-catering-list-title {
    font-family: var(--font-secondary);
    font-size: 14px;
    font-weight: 700;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 16px;
}

.story-catering-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.story-catering-list li {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 10px;
    padding-left: 18px;
    position: relative;
}

.story-catering-list li:last-child {
    margin-bottom: 0;
}

.story-catering-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: 600;
    font-size: 12px;
}

.story-catering-list li strong {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
}

/* ===== SECTIONS ===== */
.story-section {
    background: #101315;
    position: relative;
}

.story-section-inner {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 100px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.story-section-label {
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-accent);
    margin-bottom: 16px;
}

.story-section-title {
    font-family: var(--font-secondary);
    font-size: 34px;
    font-weight: 700;
    color: var(--color-text-light);
    margin: 0;
    line-height: 1.2;
}

.story-section-divider {
    width: 40px;
    height: 1px;
    background: var(--color-accent);
    margin: 24px 0 0;
}

/* Mission & Vision — side by side */
.story-dual {
    background: #101315;
}

.story-dual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.story-dual-card {
    padding: 44px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 4px;
    transition: border-color 0.3s;
}

.story-dual-card:hover {
    border-color: rgba(212, 175, 55, 0.25);
}

.story-dual-card-label {
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-accent);
    margin-bottom: 16px;
}

.story-dual-card h3 {
    font-family: var(--font-secondary);
    font-size: 22px;
    font-weight: 700;
    color: var(--color-text-light);
    margin: 0 0 18px;
    line-height: 1.3;
}

.story-dual-card p {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0 16px;
}

.story-dual-card p:last-child {
    margin-bottom: 0;
}

/* Values */
.story-values-header {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 50px;
}

.story-values-header .story-section-divider {
    margin: 24px auto 0;
}

.story-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.story-values-grid.last-row {
    grid-template-columns: repeat(2, 1fr);
    max-width: 66.666%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 24px;
}

.story-value {
    padding: 36px 32px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 4px;
    transition: border-color 0.3s;
}

.story-value:hover {
    border-color: rgba(212, 175, 55, 0.3);
}

.story-value-title {
    font-family: var(--font-secondary);
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text-light);
    margin: 0 0 12px;
}

.story-value-text {
    font-size: 14px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.45);
    margin: 0;
}

/* CTA Block */
.story-cta-block {
    background: #0d0f11;
    position: relative;
    overflow: hidden;
}

.story-cta-block::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        ellipse at 50% 50%,
        rgba(212, 175, 55, 0.04) 0%,
        transparent 60%
    );
}

.story-cta-inner {
    position: relative;
    z-index: 2;
    max-width: 680px;
    margin: 0 auto;
    padding: 100px 40px;
    text-align: center;
}

.story-cta-label {
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-accent);
    margin-bottom: 18px;
}

.story-cta-title {
    font-family: var(--font-secondary);
    font-size: 36px;
    font-weight: 700;
    color: var(--color-text-light);
    margin: 0 0 16px;
    line-height: 1.2;
}

.story-cta-text {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0 36px;
}

.story-cta-btn {
    display: inline-block;
    padding: 16px 40px;
    background: transparent;
    color: var(--color-text-light);
    border: 1px solid var(--color-text-light);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all var(--transition-speed);
}

.story-cta-btn:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-primary);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .story-hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 140px 40px 80px;
    }

    .story-hero-title {
        font-size: 44px;
    }

    .story-hero-gallery {
        max-width: 520px;
        margin: 0 auto;
    }

    .story-gallery-main img {
        height: 340px;
    }

    .story-gallery-secondary img {
        height: 200px;
    }

    .story-collection-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .story-catering-header {
        margin-bottom: 40px;
    }

    .story-catering-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .story-catering-visual {
        position: relative;
        top: auto;
    }

    .story-catering-visual img {
        height: 400px;
    }

    .story-catering-content {
        padding-right: 0;
    }

    .story-catering-lists {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .story-image-break-inner {
        height: 320px;
    }

    .story-image-break-quote {
        font-size: 26px;
    }

    .story-dual-grid {
        grid-template-columns: 1fr;
    }

    .story-values-grid {
        grid-template-columns: 1fr;
    }

    .story-values-grid.last-row {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .story-hero-container {
        padding: 120px 20px 60px;
    }

    .story-hero-title {
        font-size: 36px;
    }

    .story-hero-gallery {
        max-width: 420px;
    }

    .story-gallery-main img {
        height: 280px;
    }

    .story-gallery-secondary {
        width: 48%;
        bottom: -16px;
        right: -16px;
        border-width: 3px;
    }

    .story-gallery-secondary img {
        height: 180px;
    }

    .story-gallery-badge {
        width: 74px;
        height: 74px;
        top: -10px;
        right: -10px;
        border-radius: 12px;
    }

    .story-badge-number {
        font-size: 22px;
    }

    .story-badge-text {
        font-size: 7.5px;
    }

    .story-catering-visual img {
        height: 320px;
    }

    .story-catering-lists {
        grid-template-columns: 1fr;
    }

    .story-catering-list-block {
        padding: 28px 32px;
    }

    .story-image-break-inner {
        height: 280px;
    }

    .story-image-break-quote {
        font-size: 22px;
        padding: 0 20px;
    }

    .story-section-inner,
    .story-cta-inner {
        padding-left: 20px;
        padding-right: 20px;
    }

    .story-section-title {
        font-size: 28px;
    }

    .story-dual-card {
        padding: 32px 28px;
    }

    .story-catering-list-block {
        padding: 24px 28px;
    }

    .story-cta-title {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .story-hero-title {
        font-size: 28px;
    }

    .story-hero-gallery {
        max-width: 100%;
        padding-right: 16px;
        padding-bottom: 16px;
    }

    .story-gallery-main {
        width: 88%;
    }

    .story-gallery-main img {
        height: 240px;
    }

    .story-gallery-secondary {
        width: 50%;
        bottom: -12px;
        right: -12px;
        border-width: 3px;
    }

    .story-gallery-secondary img {
        height: 150px;
    }

    .story-gallery-badge {
        width: 64px;
        height: 64px;
        top: -8px;
        right: -8px;
        border-radius: 10px;
    }

    .story-badge-number {
        font-size: 20px;
    }

    .story-badge-text {
        font-size: 7px;
    }

    .story-catering-visual img {
        height: 280px;
    }

    .story-image-break-inner {
        height: 240px;
    }

    .story-image-break-quote {
        font-size: 20px;
    }

    .story-dual-card h3 {
        font-size: 20px;
    }

    .story-catering-list-block {
        padding: 20px 24px;
    }
}
/* Header */
.db-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 32px;
    gap: 20px;
}

.db-title {
    font-size: 26px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 4px;
}

.db-subtitle {
    font-size: 14px;
    color: #9ca3af;
    margin: 0;
}

.db-header-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.db-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.15s;
    white-space: nowrap;
}

.db-btn.primary {
    background: #111827;
    color: white;
}

.db-btn.primary:hover {
    background: #1f2937;
}

.db-btn.outline {
    background: white;
    color: #374151;
    border: 1px solid #d1d5db;
}

.db-btn.outline:hover {
    background: #f9fafb;
    border-color: #9ca3af;
}

/* Stats */
.db-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.db-stat {
    background: white;
    border: 1px solid #f3f4f6;
    border-radius: 12px;
    padding: 22px;
    transition: box-shadow 0.2s;
}

.db-stat:hover {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.db-stat-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.db-stat-label {
    font-size: 12px;
    font-weight: 500;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.db-stat-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

.db-stat-icon.blue {
    background: #eff6ff;
    color: #2563eb;
}

.db-stat-icon.green {
    background: #ecfdf5;
    color: #059669;
}

.db-stat-icon.purple {
    background: #f5f3ff;
    color: #7c3aed;
}

.db-stat-icon.amber {
    background: #fffbeb;
    color: #d97706;
}

.db-stat-value {
    font-size: 30px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 12px;
    line-height: 1;
}

.db-stat-bar {
    height: 4px;
    background: #f3f4f6;
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 10px;
}

.db-stat-bar-fill {
    height: 100%;
    border-radius: 2px;
    transition: width 0.6s ease;
}

.db-stat-bar-fill.blue {
    background: #2563eb;
}

.db-stat-bar-fill.green {
    background: #059669;
}

.db-stat-bar-fill.purple {
    background: #7c3aed;
}

.db-stat-bar-fill.amber {
    background: #d97706;
}

.db-stat-sub {
    font-size: 12px;
    color: #9ca3af;
    margin: 0;
}

/* Columns */
.db-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Card */
.db-card {
    background: white;
    border: 1px solid #f3f4f6;
    border-radius: 12px;
    overflow: hidden;
}

.db-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #f9fafb;
}

.db-card-title {
    font-size: 15px;
    font-weight: 600;
    color: #111827;
    margin: 0 0 2px;
}

.db-card-sub {
    font-size: 12px;
    color: #9ca3af;
    margin: 0;
}

.db-card-link {
    font-size: 12px;
    font-weight: 500;
    color: #6b7280;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.15s;
}

.db-card-link:hover {
    color: #111827;
}

.db-card-link i {
    font-size: 10px;
}

/* List */
.db-list {
    padding: 4px 0;
}

.db-list-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 24px;
    transition: background 0.1s;
}

.db-list-item:hover {
    background: #fafbfc;
}

.db-list-thumb {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: #f9fafb;
}

.db-list-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.db-list-thumb-ph {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #d1d5db;
}

.db-list-info {
    flex: 1;
    min-width: 0;
}

.db-list-name {
    font-size: 14px;
    font-weight: 500;
    color: #111827;
    margin: 0 0 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.db-list-meta {
    font-size: 12px;
    color: #9ca3af;
    margin: 0;
}

.db-badge {
    font-size: 11px;
    font-weight: 500;
    padding: 3px 10px;
    border-radius: 20px;
    flex-shrink: 0;
}

.db-badge.live {
    background: #ecfdf5;
    color: #059669;
}

.db-badge.draft {
    background: #f9fafb;
    color: #9ca3af;
}

.db-list-actions {
    display: flex;
    gap: 4px;
    flex-shrink: 0;
    opacity: 0;
    transition: opacity 0.15s;
}

.db-list-item:hover .db-list-actions {
    opacity: 1;
}

.db-list-actions a {
    width: 30px;
    height: 30px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #9ca3af;
    text-decoration: none;
    transition: all 0.15s;
}

.db-list-actions a:hover {
    background: #f3f4f6;
    color: #374151;
}

/* Empty */
.db-empty {
    padding: 48px 24px;
    text-align: center;
}

.db-empty i {
    font-size: 28px;
    color: #e5e7eb;
    margin-bottom: 12px;
    display: block;
}

.db-empty p {
    font-size: 13px;
    color: #9ca3af;
    margin: 0 0 12px;
}

.db-empty a {
    font-size: 13px;
    font-weight: 500;
    color: #d4af37;
    text-decoration: none;
}

.db-empty a:hover {
    color: #b8941e;
}

/* Responsive */
@media (max-width: 1024px) {
    .db-stats {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 768px) {
    .db-header {
        flex-direction: column;
    }

    .db-header-actions {
        width: 100%;
    }

    .db-btn {
        flex: 1;
        justify-content: center;
    }

    .db-stats {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .db-stat {
        padding: 18px;
    }

    .db-stat-value {
        font-size: 24px;
    }

    .db-list-item {
        padding: 12px 16px;
    }

    .db-list-actions {
        opacity: 1;
    }
}

/* ========================================
           CELEBRATIONS & CATERING PAGE
           ======================================== */

/* Hero */
.cel-hero {
    position: relative;
    width: 100%;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #101315;
    overflow: hidden;
    text-align: center;
}

.cel-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(
            ellipse at 30% 60%,
            rgba(212, 175, 55, 0.05) 0%,
            transparent 50%
        ),
        radial-gradient(
            ellipse at 70% 30%,
            rgba(212, 175, 55, 0.03) 0%,
            transparent 45%
        );
}

.cel-hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    padding: 160px 40px 100px;
}

.cel-hero-label {
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-accent);
    margin-bottom: 20px;
}

.cel-hero-title {
    font-family: var(--font-secondary);
    font-size: 52px;
    font-weight: 700;
    color: var(--color-text-light);
    margin: 0 0 10px;
    line-height: 1.08;
}

.cel-hero-subtitle {
    font-family: var(--font-secondary);
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.4);
    font-style: italic;
    margin: 0 0 28px;
}

.cel-hero-text {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
}

/* Flash Message */
.cel-flash {
    max-width: 800px;
    margin: 0 auto 32px;
    padding: 18px 24px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 4px;
    color: #6ee7b7;
    font-size: 15px;
    text-align: center;
}

/* ===== FORM SECTION ===== */
.cel-form-section {
    background: #101315;
    padding: 0 0 100px;
}

.cel-form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
}

.cel-form {
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 4px;
    overflow: hidden;
}

/* Form Sections */
.cel-form-block {
    padding: 40px 44px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cel-form-block:last-child {
    border-bottom: none;
}

.cel-form-block-title {
    font-family: var(--font-secondary);
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text-light);
    margin: 0 0 6px;
}

.cel-form-block-subtitle {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
    margin: 0 0 28px;
}

/* Form Fields */
.cel-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.cel-row-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.cel-row-phone {
    display: grid;
    grid-template-columns: 1fr 100px;
    gap: 16px;
}

.cel-field {
    margin-bottom: 22px;
}

.cel-field:last-child {
    margin-bottom: 0;
}

.cel-label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 8px;
}

.cel-label .required {
    color: var(--color-accent);
    margin-left: 2px;
}

.cel-input,
.cel-select,
.cel-textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: var(--color-text-light);
    font-family: var(--font-primary);
    font-size: 14px;
    transition:
        border-color 0.25s,
        box-shadow 0.25s;
    outline: none;
}

.cel-input::placeholder,
.cel-textarea::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

.cel-input:focus,
.cel-select:focus,
.cel-textarea:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.cel-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='rgba(255,255,255,0.4)' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.cel-select option {
    background: #1a1d21;
    color: var(--color-text-light);
}

.cel-textarea {
    resize: vertical;
    min-height: 100px;
}

.cel-error {
    display: block;
    font-size: 12px;
    color: #f87171;
    margin-top: 6px;
}

/* reCAPTCHA */
.cel-captcha {
    margin: 28px 0 0;
}

/* Submit */
.cel-submit-block {
    padding: 32px 44px;
    background: rgba(255, 255, 255, 0.015);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cel-submit-note {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.3);
    max-width: 360px;
}

.cel-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: transparent;
    color: var(--color-text-light);
    border: 1px solid var(--color-text-light);
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--transition-speed);
}

.cel-submit-btn:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-primary);
}

/* ===== REVIEWS SECTION ===== */
.cel-reviews {
    background: #0d0f11;
    padding: 100px 0;
    overflow: hidden;
}

.cel-reviews-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 40px;
}

.cel-reviews-header {
    text-align: center;
    margin-bottom: 50px;
}

.cel-reviews-label {
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-accent);
    margin-bottom: 16px;
}

.cel-reviews-title {
    font-family: var(--font-secondary);
    font-size: 34px;
    font-weight: 700;
    color: var(--color-text-light);
    margin: 0;
}

/* Slider Track */
.cel-slider-wrapper {
    position: relative;
}

.cel-slider {
    display: flex;
    gap: 28px;
    animation: celSlide 20s linear infinite;
}

.cel-slider:hover {
    animation-play-state: paused;
}

@keyframes celSlide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Review Card */
.cel-review {
    flex: 0 0 480px;
    padding: 36px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.02);
    transition: border-color 0.3s;
}

.cel-review:hover {
    border-color: rgba(212, 175, 55, 0.2);
}

.cel-review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.cel-review-author {
    font-family: var(--font-secondary);
    font-size: 17px;
    font-weight: 700;
    color: var(--color-text-light);
    margin: 0 0 4px;
}

.cel-review-event {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-accent);
}

.cel-review-stars {
    display: flex;
    gap: 3px;
    color: var(--color-accent);
    font-size: 14px;
}

.cel-review-text {
    font-size: 14px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.cel-review-text em {
    color: rgba(255, 255, 255, 0.7);
    font-style: normal;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .cel-hero-content {
        padding: 120px 20px 60px;
    }

    .cel-hero-title {
        font-size: 36px;
    }

    .cel-form-container {
        padding: 0 20px;
    }

    .cel-form-block {
        padding: 32px 24px;
    }

    .cel-row,
    .cel-row-3 {
        grid-template-columns: 1fr;
    }

    .cel-submit-block {
        flex-direction: column;
        padding: 28px 24px;
        text-align: center;
    }

    .cel-submit-note {
        max-width: none;
    }

    .cel-submit-btn {
        width: 100%;
        justify-content: center;
    }

    .cel-review {
        flex: 0 0 320px;
        padding: 28px;
    }

    .cel-reviews-container {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .cel-hero-title {
        font-size: 28px;
    }

    .cel-hero-subtitle {
        font-size: 16px;
    }

    .cel-review {
        flex: 0 0 280px;
        padding: 24px;
    }

    .cel-review-text {
        font-size: 13px;
    }
}

/* ========================================
       EVENTS INDEX PAGE
       ======================================== */

/* Hero */
.ev-hero {
    position: relative;
    width: 100%;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #0d0f11 0%, #1a1d21 50%, #0d0f11 100%);
    overflow: hidden;
}

.ev-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(
            ellipse at 50% 80%,
            rgba(212, 175, 55, 0.06) 0%,
            transparent 60%
        ),
        radial-gradient(
            ellipse at 20% 20%,
            rgba(212, 175, 55, 0.03) 0%,
            transparent 40%
        );
}

.ev-hero-content {
    position: relative;
    z-index: 2;
    padding: 0 40px;
}

.ev-hero-label {
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-accent);
    margin-bottom: 18px;
}

.ev-hero-title {
    font-family: var(--font-secondary);
    font-size: 52px;
    font-weight: 700;
    color: var(--color-text-light);
    margin: 0 0 14px;
    line-height: 1.08;
}

.ev-hero-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.45);
    margin: 0;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Main */
.ev-main {
    background: #101315;
    padding: 80px 0 120px;
}

.ev-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 40px;
}

/* Event Cards — full width image banners */
.ev-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ev-card {
    position: relative;
    display: block;
    width: 100%;
    height: 420px;
    border-radius: 6px;
    overflow: hidden;
    text-decoration: none;
}

.ev-card-img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.ev-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.ev-card:hover .ev-card-img img {
    transform: scale(1.04);
}

.ev-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(0, 0, 0, 0.3) 40%,
        rgba(0, 0, 0, 0.15) 100%
    );
    transition: background 0.3s;
    z-index: 1;
}

.ev-card:hover .ev-card-overlay {
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.35) 40%,
        rgba(0, 0, 0, 0.2) 100%
    );
}

.ev-card-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #1a1d21 0%, #0d0f11 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: rgba(255, 255, 255, 0.06);
}

.ev-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 44px;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
}

.ev-card-name {
    font-family: var(--font-secondary);
    font-size: 32px;
    font-weight: 700;
    color: var(--color-text-light);
    margin: 0 0 6px;
    line-height: 1.2;
}

.ev-card-count {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
}

.ev-card-count i {
    margin-right: 6px;
    color: var(--color-accent);
}

.ev-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    color: var(--color-text-light);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s;
    white-space: nowrap;
    flex-shrink: 0;
}

.ev-card:hover .ev-card-btn {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-primary);
}

/* CTA */
.ev-cta {
    background: #0d0f11;
    position: relative;
    overflow: hidden;
}

.ev-cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        ellipse at 50% 50%,
        rgba(212, 175, 55, 0.04) 0%,
        transparent 60%
    );
}

.ev-cta-inner {
    position: relative;
    z-index: 2;
    max-width: 680px;
    margin: 0 auto;
    padding: 80px 40px;
    text-align: center;
}

.ev-cta-title {
    font-family: var(--font-secondary);
    font-size: 28px;
    font-weight: 700;
    color: var(--color-text-light);
    margin: 0 0 12px;
}

.ev-cta-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.45);
    margin: 0 0 28px;
    line-height: 1.6;
}

.ev-cta-btn {
    display: inline-block;
    padding: 14px 36px;
    background: transparent;
    color: var(--color-text-light);
    border: 1px solid var(--color-text-light);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all var(--transition-speed);
}

.ev-cta-btn:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-primary);
}

/* Empty */
.ev-empty {
    text-align: center;
    padding: 100px 20px;
}

.ev-empty-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.ev-empty h2 {
    font-family: var(--font-secondary);
    font-size: 24px;
    color: var(--color-text-light);
    margin: 0 0 8px;
}

.ev-empty p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .ev-card {
        height: 360px;
    }

    .ev-card-name {
        font-size: 26px;
    }

    .ev-hero-title {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .ev-hero {
        height: 340px;
    }

    .ev-hero-title {
        font-size: 34px;
    }

    .ev-hero-content,
    .ev-container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .ev-card {
        height: 300px;
    }

    .ev-card-content {
        flex-direction: column;
        align-items: flex-start;
        padding: 28px 24px;
    }

    .ev-card-name {
        font-size: 22px;
    }

    .ev-card-btn {
        padding: 12px 24px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .ev-hero-title {
        font-size: 28px;
    }

    .ev-card {
        height: 260px;
    }

    .ev-card-name {
        font-size: 20px;
    }
}

/* ========================================
           EVENT SHOW / GALLERY PAGE
           ======================================== */

/* Hero */
.evs-hero {
    position: relative;
    width: 100%;
    height: 480px;
    overflow: hidden;
}

.evs-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.evs-hero-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1d21 0%, #0d0f11 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    color: rgba(255, 255, 255, 0.04);
}

.evs-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to top,
        rgba(16, 19, 21, 1) 0%,
        rgba(16, 19, 21, 0.6) 40%,
        transparent 100%
    );
}

.evs-hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 48px 40px;
    z-index: 2;
    max-width: var(--container-max-width);
    margin: 0 auto;
}

.evs-hero-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-accent);
    text-decoration: none;
    margin-bottom: 16px;
    transition: color 0.2s;
}

.evs-hero-back:hover {
    color: var(--color-text-light);
}

.evs-hero-name {
    font-family: var(--font-secondary);
    font-size: 48px;
    font-weight: 700;
    color: var(--color-text-light);
    margin: 0 0 8px;
    line-height: 1.1;
}

.evs-hero-count {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
}

.evs-hero-count i {
    margin-right: 6px;
    color: var(--color-accent);
}

/* Gallery Main */
.evs-main {
    background: #101315;
    padding: 60px 0 120px;
}

.evs-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 40px;
}

/* Gallery Grid */
.evs-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.evs-gallery-item {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.evs-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.evs-gallery-item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

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

.evs-gallery-item:hover::after {
    opacity: 1;
}

.evs-gallery-expand {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 11px;
    opacity: 0;
    transform: translateY(4px);
    transition:
        opacity 0.3s,
        transform 0.3s;
    z-index: 2;
    backdrop-filter: blur(4px);
}

.evs-gallery-item:hover .evs-gallery-expand {
    opacity: 1;
    transform: translateY(0);
}

/* ===== FULLSCREEN LIGHTBOX ===== */
.evs-lb {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(12px);
}

.evs-lb.active {
    display: flex;
}

.evs-lb-img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
}

.evs-lb-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 10;
}

.evs-lb-close:hover {
    background: rgba(255, 255, 255, 0.15);
}

.evs-lb-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 10;
}

.evs-lb-nav:hover {
    background: rgba(255, 255, 255, 0.12);
}

.evs-lb-prev {
    left: 24px;
}

.evs-lb-next {
    right: 24px;
}

.evs-lb-info {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10;
}

.evs-lb-counter {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .evs-gallery {
        grid-template-columns: repeat(3, 1fr);
    }

    .evs-hero-name {
        font-size: 38px;
    }
}

@media (max-width: 768px) {
    .evs-hero {
        height: 380px;
    }

    .evs-hero-content {
        padding: 36px 20px;
    }

    .evs-hero-name {
        font-size: 30px;
    }

    .evs-container {
        padding: 0 20px;
    }

    .evs-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .evs-lb-nav {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .evs-lb-prev {
        left: 12px;
    }

    .evs-lb-next {
        right: 12px;
    }
}

@media (max-width: 480px) {
    .evs-hero {
        height: 300px;
    }

    .evs-hero-name {
        font-size: 24px;
    }

    .evs-gallery {
        grid-template-columns: 1fr 1fr;
    }
}

.rf-menu-group {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 16px;
    position: relative;
}

.rf-menu-group-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.rf-menu-group-header-left {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.rf-menu-group-number {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #e0e7ff;
    color: #4f46e5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    flex-shrink: 0;
}

.rf-menu-previews {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 8px;
}

.rf-menu-preview-item {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    background: white;
}

.rf-menu-preview-item img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    display: block;
}

.rf-menu-preview-pdf {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #ef4444;
    background: #fef2f2;
}

.rf-menu-preview-item-delete {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(239, 68, 68, 0.9);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    opacity: 0;
    transition: opacity 0.15s;
}

.rf-menu-preview-item:hover .rf-menu-preview-item-delete {
    opacity: 1;
}

.rf-menu-preview-label {
    font-size: 10px;
    color: #6b7280;
    padding: 4px 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.rf-menu-group {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 16px;
}
.rf-menu-group-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.rf-menu-group-header-left {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}
.rf-menu-group-number {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #e0e7ff;
    color: #4f46e5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    flex-shrink: 0;
}
.rf-menu-existing {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 16px 20px;
    margin-bottom: 12px;
    transition:
        opacity 0.2s,
        transform 0.2s;
}
.rf-menu-existing-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}
.rf-menu-existing-title {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    display: flex;
    align-items: center;
}
.rf-menu-existing-count {
    font-size: 11px;
    font-weight: 400;
    color: #9ca3af;
    margin-left: 10px;
    background: #f3f4f6;
    padding: 2px 8px;
    border-radius: 10px;
}
.rf-menu-existing-grid,
.rf-menu-previews {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 8px;
}
.rf-menu-preview-item {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    background: white;
    transition:
        opacity 0.2s,
        transform 0.2s;
}
.rf-menu-preview-item img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    display: block;
}
.rf-menu-preview-pdf {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #ef4444;
    background: #fef2f2;
}
.rf-menu-preview-item-delete {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(239, 68, 68, 0.9);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    opacity: 0;
    transition: opacity 0.15s;
}
.rf-menu-preview-item:hover .rf-menu-preview-item-delete {
    opacity: 1;
}
.rf-menu-preview-label {
    font-size: 10px;
    color: #6b7280;
    padding: 4px 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ========================================
           CONTACT US PAGE
           ======================================== */

/* Hero */
.con-hero {
    position: relative;
    width: 100%;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #101315;
    overflow: hidden;
    text-align: center;
}

.con-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(
            ellipse at 30% 60%,
            rgba(212, 175, 55, 0.05) 0%,
            transparent 50%
        ),
        radial-gradient(
            ellipse at 70% 30%,
            rgba(212, 175, 55, 0.03) 0%,
            transparent 45%
        );
}

.con-hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    padding: 160px 40px 100px;
}

.con-hero-label {
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-accent);
    margin-bottom: 20px;
}

.con-hero-title {
    font-family: var(--font-secondary);
    font-size: 52px;
    font-weight: 700;
    color: var(--color-text-light);
    margin: 0 0 10px;
    line-height: 1.08;
}

.con-hero-subtitle {
    font-family: var(--font-secondary);
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.4);
    font-style: italic;
    margin: 0 0 28px;
}

.con-hero-text {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
}

/* ===== CONTACT INFO CARDS ===== */
.con-info-section {
    background: #101315;
    padding: 0 0 60px;
}

.con-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
}

.con-info-card {
    padding: 40px 30px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.02);
    text-align: center;
    transition: border-color 0.3s;
}

.con-info-card:hover {
    border-color: rgba(212, 175, 55, 0.2);
}

.con-info-icon {
    font-size: 1.5rem;
    color: var(--color-accent);
    margin-bottom: 16px;
}

.con-info-title {
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text-light);
    margin: 0 0 8px;
}

.con-info-text {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.45);
    margin: 0;
}

.con-info-text a {
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    transition: color 0.25s;
}

.con-info-text a:hover {
    color: var(--color-accent);
}

/* ===== CONTACT FORM BLOCK (CENTERED) ===== */
.con-blocks-section {
    background: #0d0f11;
    padding: 80px 0 100px;
}

.con-blocks-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Individual Block */
.con-block {
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.02);
    overflow: hidden;
    transition: border-color 0.3s;
    display: flex;
    flex-direction: column;
}

.con-block:hover {
    border-color: rgba(255, 255, 255, 0.1);
}

.con-block.active {
    border-color: rgba(212, 175, 55, 0.25);
}

/* Block Header */
.con-block-header {
    padding: 48px 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.con-block-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.08);
    color: var(--color-accent);
    font-size: 20px;
}

.con-block-title {
    font-family: var(--font-secondary);
    font-size: 26px;
    font-weight: 700;
    color: var(--color-text-light);
    margin: 0 0 14px;
    line-height: 1.2;
}

.con-block-text {
    font-size: 15px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.45);
    margin: 0 0 28px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.con-block-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    background: transparent;
    color: var(--color-text-light);
    border: 1px solid var(--color-text-light);
    font-family: var(--font-primary);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: auto;
}

.con-block-btn:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-primary);
}

.con-block.active .con-block-btn {
    display: none;
}

/* ===== SLIDE-OPEN FORM ===== */
.con-block-form {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.con-block-form.open {
    max-height: 1200px;
}

.con-block-form form {
    padding: 0 40px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 32px;
}

/* ===== FORM FIELDS (shared) ===== */
.con-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.con-field {
    margin-bottom: 20px;
}

.con-field:last-child {
    margin-bottom: 0;
}

.con-label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 8px;
}

.con-label .required {
    color: var(--color-accent);
    margin-left: 2px;
}

.con-input,
.con-select,
.con-textarea {
    width: 100%;
    padding: 13px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: var(--color-text-light);
    font-family: var(--font-primary);
    font-size: 14px;
    transition:
        border-color 0.25s,
        box-shadow 0.25s;
    outline: none;
}

.con-input::placeholder,
.con-textarea::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

.con-input:focus,
.con-select:focus,
.con-textarea:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.con-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='rgba(255,255,255,0.4)' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    cursor: pointer;
}

.con-select option {
    background: #1a1d21;
    color: var(--color-text-light);
}

.con-textarea {
    resize: vertical;
    min-height: 90px;
}

.con-error {
    display: block;
    font-size: 12px;
    color: #f87171;
    margin-top: 6px;
}

/* Form Actions */
.con-form-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.con-cancel-btn {
    padding: 12px 28px;
    background: transparent;
    color: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-family: var(--font-primary);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 2px;
}

.con-cancel-btn:hover {
    color: rgba(255, 255, 255, 0.7);
    border-color: rgba(255, 255, 255, 0.2);
}

.con-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: transparent;
    color: var(--color-text-light);
    border: 1px solid var(--color-text-light);
    font-family: var(--font-primary);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
}

.con-submit-btn:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-primary);
}

/* ===== FLASH MESSAGE ===== */
.con-flash {
    max-width: 720px;
    margin: 0 auto 32px;
    padding: 18px 24px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 4px;
    color: #6ee7b7;
    font-size: 15px;
    text-align: center;
}

.con-flash--error {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.2);
    color: #fca5a5;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .con-hero-content {
        padding: 120px 20px 60px;
    }

    .con-hero-title {
        font-size: 36px;
    }

    .con-info-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    .con-info-card {
        padding: 30px 24px;
    }

    .con-blocks-container {
        padding: 0 20px;
    }

    .con-blocks-section {
        padding: 60px 0 80px;
    }

    .con-block-header {
        padding: 36px 28px;
    }

    .con-block-form form {
        padding: 0 28px 32px;
        padding-top: 28px;
    }

    .con-row {
        grid-template-columns: 1fr;
    }

    .con-form-actions {
        flex-direction: column;
    }

    .con-cancel-btn,
    .con-submit-btn {
        width: 100%;
        justify-content: center;
    }

    .con-block-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .con-hero-title {
        font-size: 28px;
    }

    .con-hero-subtitle {
        font-size: 16px;
    }

    .con-block-title {
        font-size: 22px;
    }

    .con-block-header {
        padding: 32px 24px;
    }

    .con-block-form form {
        padding: 0 24px 28px;
        padding-top: 24px;
    }
}
/* ========================================
           CAREERS PAGE
           ======================================== */

/* Hero */
.car-hero {
    position: relative;
    width: 100%;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #101315;
    overflow: hidden;
    text-align: center;
}

.car-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(
            ellipse at 30% 60%,
            rgba(212, 175, 55, 0.05) 0%,
            transparent 50%
        ),
        radial-gradient(
            ellipse at 70% 30%,
            rgba(212, 175, 55, 0.03) 0%,
            transparent 45%
        );
}

.car-hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    padding: 160px 40px 100px;
}

.car-hero-label {
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-accent);
    margin-bottom: 20px;
}

.car-hero-title {
    font-family: var(--font-secondary);
    font-size: 52px;
    font-weight: 700;
    color: var(--color-text-light);
    margin: 0 0 10px;
    line-height: 1.08;
}

.car-hero-subtitle {
    font-family: var(--font-secondary);
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.4);
    font-style: italic;
    margin: 0 0 36px;
}

.car-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: transparent;
    color: var(--color-text-light);
    border: 1px solid var(--color-text-light);
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
}

.car-hero-btn:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-primary);
}

/* ===== WHY WORK WITH US — TWO-COLUMN ===== */
.car-why-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.car-why-images {
    position: relative;
}

.car-why-gallery {
    position: relative;
    width: 100%;
    padding-bottom: 20px;
    padding-right: 20px;
}

.car-why-gallery-main {
    position: relative;
    width: 90%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow:
        0 24px 64px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.05);
    z-index: 1;
}

.car-why-gallery-main img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.car-why-gallery-main:hover img {
    transform: scale(1.03);
}

.car-why-gallery-secondary {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 52%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.08);
    z-index: 2;
    border: 4px solid #101315;
}

.car-why-gallery-secondary img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.car-why-gallery-secondary:hover img {
    transform: scale(1.03);
}

.car-why-content {
    text-align: left;
}

.car-why-content .car-block-title {
    margin-bottom: 28px;
}

.car-why-content .car-block-text {
    margin-left: 0;
    margin-right: 0;
    max-width: none;
}

/* ===== CONTENT SECTIONS ===== */
.car-section {
    background: #101315;
    padding: 100px 0;
}

.car-section--dark {
    background: #0d0f11;
}

.car-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Content Block */
.car-block {
    text-align: center;
}

.car-block-label {
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-accent);
    margin-bottom: 16px;
}

.car-block-title {
    font-family: var(--font-secondary);
    font-size: 34px;
    font-weight: 700;
    color: var(--color-text-light);
    margin: 0 0 32px;
}

.car-block-text {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.55);
    margin: 0 0 20px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.car-block-text:last-of-type {
    margin-bottom: 0;
}

/* ===== PERKS LIST ===== */
.car-perks {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 640px;
    margin: 0 auto;
}

.car-perk {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 28px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.02);
    transition: border-color 0.3s;
    text-align: left;
}

.car-perk:hover {
    border-color: rgba(212, 175, 55, 0.2);
}

.car-perk-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    background: rgba(212, 175, 55, 0.08);
    color: var(--color-accent);
    font-size: 16px;
}

.car-perk-text {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
}

/* ===== CTA SECTION ===== */
.car-cta {
    background: #101315;
    padding: 100px 0;
    text-align: center;
    position: relative;
}

.car-cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(212, 175, 55, 0.15) 50%,
        transparent 100%
    );
}

.car-cta-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 40px;
}

.car-cta-title {
    font-family: var(--font-secondary);
    font-size: 34px;
    font-weight: 700;
    color: var(--color-text-light);
    margin: 0 0 16px;
}

.car-cta-text {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0 36px;
}

.car-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: transparent;
    color: var(--color-text-light);
    border: 1px solid var(--color-text-light);
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
}

.car-cta-btn:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-primary);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .car-why-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .car-why-content {
        order: 1;
        text-align: center;
    }

    .car-why-images {
        order: 2;
    }

    .car-why-gallery {
        max-width: 500px;
        margin: 0 auto;
    }

    .car-why-content .car-block-text {
        max-width: 640px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .car-hero-content {
        padding: 120px 20px 60px;
    }

    .car-hero-title {
        font-size: 36px;
    }

    .car-why-container {
        padding: 0 20px;
    }

    .car-why-gallery {
        max-width: 400px;
    }

    .car-why-gallery-main img {
        height: 270px;
    }

    .car-why-gallery-secondary {
        width: 48%;
        bottom: -16px;
        right: -16px;
        border-width: 3px;
    }

    .car-why-gallery-secondary img {
        height: 170px;
    }

    .car-section {
        padding: 70px 0;
    }

    .car-container {
        padding: 0 20px;
    }

    .car-block-title {
        font-size: 28px;
    }

    .car-perk {
        padding: 20px 22px;
    }

    .car-cta {
        padding: 70px 0;
    }

    .car-cta-content {
        padding: 0 20px;
    }

    .car-cta-title {
        font-size: 28px;
    }

    .car-cta-btn,
    .car-hero-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .car-hero-title {
        font-size: 28px;
    }

    .car-hero-subtitle {
        font-size: 16px;
    }

    .car-why-gallery {
        max-width: 100%;
        padding-right: 16px;
        padding-bottom: 16px;
    }

    .car-why-gallery-main {
        width: 88%;
    }

    .car-why-gallery-main img {
        height: 230px;
    }

    .car-why-gallery-secondary {
        width: 50%;
        bottom: -12px;
        right: -12px;
        border-width: 3px;
    }

    .car-why-gallery-secondary img {
        height: 140px;
    }

    .car-perk {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
    }
}
