/* COFFEA Cafe - Modern Custom CSS Stylesheet & Design System */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    /* Brand Theme Colors */
    --coffea-primary: #006B68;
    --coffea-primary-hover: #005B58;
    --coffea-dark: #004E4C;
    --coffea-dark-deep: #003B39;
    --coffea-accent: #F2B544;
    --coffea-accent-hover: #DFA333;
    --coffea-cream: #F7F3EA;
    --coffea-white: #FFFDFC;
    --coffea-muted: #D9E8E5;
    --coffea-muted-light: #EEF3F0;
    
    /* Text Hierarchy */
    --text-primary: #242424;
    --text-secondary: #67645F;
    --text-muted: #817E78;
    --text-on-brand: #FFFDFC;
    
    /* Borders & Overlays */
    --border-light: #D8DDD9;
    --border-brand: rgba(0, 107, 104, 0.22);
    --overlay-dark: rgba(0, 55, 53, 0.62);
    --overlay-soft: rgba(0, 55, 53, 0.32);
    
    /* Legacy variables mapping for backward compatibility */
    --bg-dark: var(--coffea-cream);
    --bg-card: var(--coffea-white);
    --bg-card-hover: var(--coffea-muted-light);
    --primary: var(--coffea-primary);
    --primary-hover: var(--coffea-primary-hover);
    --accent: var(--coffea-accent);
    --text-main: var(--text-secondary);
    --border-color: var(--border-light);

    --font-head: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 10px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
}

/* Reset & Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--coffea-cream);
    color: var(--text-secondary);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-head);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

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

a:hover {
    color: var(--coffea-primary-hover);
}

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

/* Layout Wrapper */
.app-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation Header */
.header {
    background-color: rgba(247, 243, 234, 0.94);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(0, 107, 104, 0.12);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: var(--transition);
}

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

.logo {
    font-family: var(--font-head);
    font-size: 24px;
    font-weight: 800;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.nav-menu {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-link {
    font-family: var(--font-head);
    font-weight: 500;
    font-size: 16px;
    color: var(--text-secondary);
}

.nav-link:hover, .nav-link.active {
    color: var(--coffea-primary);
}

.nav-cta {
    background-color: var(--coffea-primary);
    color: var(--text-on-brand);
    font-family: var(--font-head);
    font-weight: 600;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}

.nav-cta:hover {
    background-color: var(--coffea-primary-hover);
    color: var(--text-on-brand);
    transform: translateY(-2px);
}

/* Hamburger Menu (Mobile) */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 120px 0 80px;
    background: linear-gradient(180deg, var(--overlay-dark) 0%, var(--coffea-dark) 100%);
    text-align: center;
    border-radius: var(--radius-lg);
    margin-bottom: 40px;
}

.hero-subtitle {
    font-family: var(--font-head);
    color: var(--coffea-accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 16px;
    display: inline-block;
    border-bottom: 2px solid var(--coffea-accent);
    padding-bottom: 4px;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -1px;
    color: var(--text-on-brand);
}

.hero-title span {
    background: linear-gradient(135deg, #ffffff 40%, var(--coffea-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 18px;
    color: var(--coffea-muted);
    max-width: 600px;
    margin: 0 auto 40px;
}

.hero-ctas {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 16px;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--coffea-primary);
    color: var(--text-on-brand);
}

.btn-primary:hover {
    background-color: var(--coffea-primary-hover);
    color: var(--text-on-brand);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: transparent;
    color: var(--coffea-primary);
    border: 2px solid var(--coffea-primary);
}

.btn-secondary:hover {
    border-color: var(--coffea-primary-hover);
    background-color: var(--coffea-primary);
    color: var(--text-on-brand);
    transform: translateY(-2px);
}

/* Secondary Button on Dark (Hero Section) */
.hero .btn-secondary {
    color: var(--text-on-brand);
    border-color: rgba(255, 255, 255, 0.4);
}

.hero .btn-secondary:hover {
    border-color: var(--coffea-accent);
    color: var(--coffea-accent);
    background-color: rgba(255, 253, 252, 0.1);
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-subtitle {
    color: var(--coffea-primary);
    font-family: var(--font-head);
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--coffea-dark);
}

/* Cards Grid */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.card {
    background-color: var(--coffea-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 32px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 107, 104, 0.32);
    background-color: var(--coffea-white);
    box-shadow: var(--shadow-lg);
}

.card-title {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.card-desc {
    color: var(--text-secondary);
    font-size: 15px;
    margin-bottom: 20px;
}

/* Menu Page Styles */
.menu-nav {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.menu-nav-btn {
    background-color: var(--coffea-white);
    border: 1px solid var(--border-light);
    color: var(--text-secondary);
    padding: 10px 20px;
    font-family: var(--font-head);
    font-weight: 500;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
}

.menu-nav-btn:hover, .menu-nav-btn.active {
    background-color: var(--coffea-primary);
    color: var(--text-on-brand);
    border-color: var(--coffea-primary);
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

@media (max-width: 768px) {
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.menu-item {
    background-color: var(--coffea-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 24px;
    display: flex;
    gap: 20px;
    transition: var(--transition);
}

.menu-item:hover {
    border-color: rgba(0, 107, 104, 0.32);
    background-color: var(--coffea-white);
}

.menu-item-details {
    flex: 1;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 8px;
}

.menu-item-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
}

.menu-item-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--coffea-primary);
    font-family: var(--font-head);
}

.menu-item-desc {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 12px;
}

.menu-item-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.badge {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.badge-veg {
    background-color: rgba(76, 175, 80, 0.1);
    color: #2e7d32;
    border: 1px solid rgba(76, 175, 80, 0.25);
}

.badge-nonveg {
    background-color: rgba(244, 67, 54, 0.1);
    color: #c62828;
    border: 1px solid rgba(244, 67, 54, 0.25);
}

.badge-best {
    background-color: rgba(242, 181, 68, 0.15);
    color: #b27a00;
    border: 1px solid rgba(242, 181, 68, 0.35);
}

/* Contact / Reservation Forms */
.reservation-box {
    background-color: var(--coffea-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 48px;
    max-width: 700px;
    margin: 0 auto;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
}

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

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

.form-group-full {
    grid-column: 1 / -1;
}

.form-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--coffea-dark);
}

.form-control {
    background-color: var(--coffea-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 15px;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--coffea-primary);
    box-shadow: 0 0 0 2px rgba(0, 107, 104, 0.15);
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2367645f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 40px;
}

/* Footer & NAP Consistency */
.footer {
    background-color: var(--coffea-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    padding: 80px 0 40px;
    font-size: 14px;
    color: var(--coffea-muted);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 48px;
    margin-bottom: 48px;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.footer-column-title {
    font-family: var(--font-head);
    font-size: 18px;
    color: var(--text-on-brand);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--coffea-muted);
}

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

.footer-nap-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nap-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.footer-nap-list svg {
    margin-top: 3px;
    flex-shrink: 0;
    color: var(--coffea-accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

/* Flash Messages */
.flash-message {
    padding: 16px;
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
    font-weight: 500;
}

.flash-success {
    background-color: rgba(76, 175, 80, 0.1);
    color: #2e7d32;
    border: 1px solid rgba(76, 175, 80, 0.25);
}

.flash-error {
    background-color: rgba(244, 67, 54, 0.1);
    color: #c62828;
    border: 1px solid rgba(244, 67, 54, 0.25);
}

/* Responsive Mobile Improvements */
@media (max-width: 768px) {
    .nav-menu {
        display: none; /* Can be enhanced with JS if hamburger is toggled */
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-title {
        font-size: 40px;
    }
}

/* Gallery Styles */
.gallery-filter-btn {
    background-color: var(--coffea-white);
    border: 1px solid var(--border-light);
    color: var(--text-secondary);
    padding: 10px 24px;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 14px;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gallery-filter-btn:hover, .gallery-filter-btn.active {
    background-color: var(--coffea-primary);
    color: var(--text-on-brand);
    border-color: var(--coffea-primary);
    box-shadow: var(--shadow-sm);
}

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

.gallery-card {
    background-color: var(--coffea-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    border: 1px solid var(--border-light);
}

.gallery-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 107, 104, 0.2);
}

.gallery-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background-color: var(--coffea-muted-light);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.gallery-overlay {
    position: absolute;
    top: 15px;
    left: 15px;
    pointer-events: none;
}

.gallery-badge {
    background-color: rgba(0, 107, 104, 0.9);
    color: var(--text-on-brand);
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 4px;
    letter-spacing: 0.8px;
    backdrop-filter: blur(4px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.gallery-info {
    padding: 20px 24px;
}

.gallery-caption {
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
}

/* Promo Card & Side-by-Side Reservation Grid */
.reservation-layout-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: stretch;
    max-width: 1100px;
    margin: 0 auto 40px;
}

.promo-card {
    display: flex;
    flex-direction: column;
    background-color: var(--coffea-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 100%;
}

.promo-card-image {
    height: 240px;
    background-image: url('../assets/images/promo_banner.png');
    background-size: cover;
    background-position: center;
    position: relative;
}

.promo-card-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    flex: 1;
}

.promo-brand-logo {
    height: 40px;
    margin-bottom: 24px;
}

.promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #006B68 0%, #004E4C 100%);
    color: var(--text-on-brand);
    padding: 6px 16px;
    border-radius: 50px;
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(0, 107, 104, 0.2);
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.promo-badge svg {
    color: var(--coffea-accent);
}

.promo-title {
    font-family: var(--font-head);
    font-size: 34px;
    font-weight: 800;
    color: var(--coffea-dark-deep);
    line-height: 1.25;
    margin-bottom: 16px;
}

.promo-title span {
    color: #b27a00;
}

.promo-desc {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
}

.promo-desc strong {
    color: var(--coffea-dark);
}

.promo-footer-info {
    font-size: 12px;
    color: var(--text-muted);
    border-top: 1px solid var(--border-light);
    padding-top: 12px;
    width: 100%;
    margin-top: auto;
}

/* Adjustments to reservation box to fit nicely side by side */
.reservation-box {
    margin: 0;
    max-width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .reservation-layout-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .promo-card {
        height: auto;
    }

    .promo-card-image {
        height: 280px;
    }
}

@media (max-width: 576px) {
    .promo-card-content {
        padding: 30px 20px;
    }

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

    .reservation-box {
        padding: 30px 20px;
    }
}/* -------------------------------------------------------------
   CRO REDESIGN & CONVERSION OPTIMIZED LANDING PAGE STYLES
   ------------------------------------------------------------- */
:root {
    --coffea-primary: #158B75;
    --coffea-primary-hover: #106f5d;
    --coffea-light-beige: #F9F6F0;
    --coffea-beige-accent: #EFEBE4;
    --coffea-brown: #5C4033;
    --coffea-brown-light: #8D6E63;
    --coffea-accent: #F2B544;
    --coffea-success: #158B75;
    --coffea-error: #E53935;
}

/* Custom Utilities & Animations */
@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(21, 139, 117, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(21, 139, 117, 0); }
    100% { box-shadow: 0 0 0 0 rgba(21, 139, 117, 0); }
}

@keyframes floatElement {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-6px); }
    100% { transform: translateY(0px); }
}

@keyframes drawCheckmark {
    to { stroke-dashoffset: 0; }
}

@keyframes scaleIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* Landing Page Wrapper */
.cro-landing {
    max-width: 1200px;
    margin: 0 auto;
    font-family: var(--font-body);
}

/* Section Common Titles & Badges */
.cro-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(21, 139, 117, 0.1);
    color: var(--coffea-primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
    border: 1px solid rgba(21, 139, 117, 0.2);
}

.cro-badge.urgent {
    background: rgba(229, 57, 53, 0.08);
    color: var(--coffea-error);
    border: 1px solid rgba(229, 57, 53, 0.15);
}

.cro-heading-lg {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.cro-heading-lg span {
    color: var(--coffea-primary);
    position: relative;
    display: inline-block;
}

.cro-heading-lg span::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--coffea-accent);
    border-radius: 2px;
    z-index: -1;
}

.cro-heading-md {
    font-size: 32px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 8px;
}

.cro-subheading {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 32px;
    text-align: center;
}

/* SECTION 1: HERO */
.cro-hero-section {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 40px 0 60px;
}

.cro-hero-content {
    text-align: left;
}

.cro-hero-desc {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.cro-hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 24px;
}

.btn-cro-primary {
    background-color: var(--coffea-primary);
    color: white;
    font-weight: 700;
    padding: 16px 32px;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(21, 139, 117, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-cro-primary:hover {
    background-color: var(--coffea-primary-hover);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(21, 139, 117, 0.45);
}

.btn-cro-wa {
    background-color: #25D366;
    color: white;
    font-weight: 700;
    padding: 16px 32px;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-cro-wa:hover {
    background-color: #20BA5A;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}

.btn-cro-outline {
    background-color: transparent;
    color: var(--text-primary);
    font-weight: 700;
    padding: 16px 32px;
    border-radius: 12px;
    border: 2px solid var(--border-light);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
    cursor: pointer;
    font-size: 16px;
}

.btn-cro-outline:hover {
    background-color: var(--coffea-beige-accent);
    transform: translateY(-2px);
}

.cro-hero-image-pane {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 450px;
    box-shadow: var(--shadow-lg);
    background-size: cover;
    background-position: center;
}

.cro-hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    color: white;
}

/* SECTION 2: TRUST BANNER */
.cro-trust-banner {
    background: white;
    border-radius: 20px;
    padding: 24px 40px;
    margin-bottom: 60px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--coffea-beige-accent);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: center;
    text-align: center;
}

.cro-trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cro-trust-value {
    font-size: 28px;
    font-weight: 800;
    color: var(--coffea-primary);
    line-height: 1;
    margin-bottom: 4px;
}

.cro-trust-label {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 600;
}

.cro-stars {
    color: var(--coffea-accent);
    font-size: 18px;
    margin-bottom: 2px;
}

.cro-trust-separator {
    width: 1px;
    height: 40px;
    background: var(--border-light);
}

/* SECTION 3: WHY VISIT COFFEA */
.why-visit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.why-visit-card {
    background: white;
    border-radius: 16px;
    padding: 32px 24px;
    border: 1px solid var(--coffea-beige-accent);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.why-visit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(21, 139, 117, 0.3);
}

.why-visit-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(21, 139, 117, 0.08);
    color: var(--coffea-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.why-visit-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.why-visit-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* SECTION 4: RESERVATION FORM */
.form-section-container {
    background: white;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--coffea-beige-accent);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    margin-bottom: 60px;
    scroll-margin-top: 100px;
}

.form-info-pane {
    background: linear-gradient(135deg, var(--coffea-primary) 0%, #0c5749 100%);
    color: white;
    padding: 60px 48px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.form-info-pane h3 {
    color: white;
    font-size: 32px;
    margin-bottom: 16px;
    font-weight: 800;
}

.form-info-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 40px 0;
}

.form-info-feat-item {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 15px;
    font-weight: 500;
}

.form-info-feat-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.form-pane {
    padding: 60px 48px;
    position: relative;
}

.form-step-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 32px;
    position: relative;
}

.form-step-indicator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--coffea-beige-accent);
    z-index: 1;
    transform: translateY(-50%);
}

.form-step-progress {
    position: absolute;
    top: 50%;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--coffea-primary);
    z-index: 2;
    transform: translateY(-50%);
    transition: width 0.3s ease;
}

.form-step-node {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    z-index: 3;
    transition: all 0.3s ease;
}

.form-step-node.active {
    border-color: var(--coffea-primary);
    color: var(--coffea-primary);
    box-shadow: 0 0 0 4px rgba(21, 139, 117, 0.15);
}

.form-step-node.completed {
    background: var(--coffea-primary);
    border-color: var(--coffea-primary);
    color: white;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-control-cro {
    width: 100%;
    height: 52px;
    padding: 0 16px;
    border-radius: 10px;
    border: 1px solid var(--border-light);
    font-family: var(--font-body);
    font-size: 15px;
    background-color: var(--coffea-light-beige);
    transition: all 0.2s ease;
}

.form-control-cro:focus {
    outline: none;
    border-color: var(--coffea-primary);
    background-color: white;
    box-shadow: 0 0 0 4px rgba(21, 139, 117, 0.1);
}

.form-control-cro.is-valid {
    border-color: var(--coffea-success);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23158B75'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 20px;
    padding-right: 44px;
}

.guests-selector {
    display: flex;
    border: 1px solid var(--border-light);
    border-radius: 10px;
    overflow: hidden;
    height: 52px;
    background: var(--coffea-light-beige);
}

.guests-btn {
    width: 52px;
    height: 100%;
    border: none;
    background: transparent;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.guests-btn:hover {
    background: var(--coffea-beige-accent);
}

.guests-count {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    background: white;
    border-left: 1px solid var(--border-light);
    border-right: 1px solid var(--border-light);
}

.time-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.time-slot-btn {
    height: 52px;
    border: 1.5px solid var(--border-light);
    border-radius: 10px;
    background: white;
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.time-slot-btn span {
    font-size: 10px;
    opacity: 0.6;
    margin-top: 2px;
}

.time-slot-btn:hover {
    border-color: var(--coffea-primary);
    background: rgba(21, 139, 117, 0.02);
}

.time-slot-btn.active {
    border-color: var(--coffea-primary);
    background: rgba(21, 139, 117, 0.08);
    color: var(--coffea-primary);
    box-shadow: 0 0 0 2px var(--coffea-primary);
}

/* SUCCESS PANEL */
.cro-success-panel {
    display: none;
    text-align: center;
    animation: scaleIn 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    padding: 40px 0;
}

.success-icon-box {
    width: 80px;
    height: 80px;
    background: rgba(21, 139, 117, 0.1);
    color: var(--coffea-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.success-svg {
    width: 44px;
    height: 44px;
}

.success-circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: var(--coffea-primary);
    fill: none;
    animation: drawCheckmark 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.success-check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    stroke-width: 3;
    stroke: var(--coffea-primary);
    fill: none;
    animation: drawCheckmark 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.5s forwards;
}

/* SECTION 5: CUSTOMER REVIEWS */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.review-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    border: 1px solid var(--coffea-beige-accent);
    display: flex;
    flex-direction: column;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    background-color: var(--coffea-beige-accent);
}

.review-user-name {
    font-weight: 700;
    font-size: 15px;
    color: var(--text-primary);
}

.review-user-title {
    font-size: 12px;
    color: var(--text-muted);
}

.review-text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 16px;
    font-style: italic;
    flex-grow: 1;
}

/* SECTION 6: GALLERY */
.gallery-cro-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 60px;
}

.gallery-cro-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 220px;
    box-shadow: var(--shadow-sm);
}

.gallery-cro-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.gallery-cro-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 16px;
    color: white;
    font-size: 14px;
    font-weight: 600;
}

.gallery-cro-item:hover .gallery-cro-overlay {
    opacity: 1;
}

/* SECTION 7: URGENCY OFFER BANNER */
.cro-offer-banner {
    background: linear-gradient(135deg, var(--coffea-primary) 0%, #0d5c4d 100%);
    border-radius: 20px;
    padding: 40px;
    color: white;
    text-align: center;
    margin-bottom: 60px;
    box-shadow: 0 10px 30px rgba(21, 139, 117, 0.25);
    position: relative;
    overflow: hidden;
}

.cro-offer-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
    transform: rotate(30deg);
}

.offer-banner-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 8px;
    color: white;
}

.offer-banner-desc {
    font-size: 16px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 24px;
}

/* SECTION 8: FAQ ACCORDION */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto 60px;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 12px;
    border: 1px solid var(--coffea-beige-accent);
    overflow: hidden;
}

.faq-trigger {
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    text-align: left;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-head);
}

.faq-icon-arrow {
    transition: transform 0.3s ease;
    color: var(--coffea-primary);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 24px;
    color: var(--text-secondary);
    font-size: 14.5px;
    line-height: 1.6;
}

.faq-item.active .faq-icon-arrow {
    transform: rotate(180deg);
}

.faq-item.active .faq-content {
    max-height: 200px;
    padding-bottom: 20px;
}

/* SECTION 9: LOCATION & walkin */
.location-cro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 60px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--coffea-beige-accent);
}

.location-info-panel {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.location-feature-list {
    margin: 24px 0;
}

.location-feat {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 14.5px;
}

.location-feat svg {
    color: var(--coffea-primary);
    flex-shrink: 0;
}

.map-pane {
    width: 100%;
    height: 100%;
    min-height: 350px;
}

.map-pane iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* STICKY COMPONENTS & MOBILE FLOATER */
.floating-whatsapp-btn {
    position: fixed;
    bottom: 96px;
    right: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: #25D366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    z-index: 99;
    transition: transform 0.3s ease;
    animation: floatElement 3s ease-in-out infinite;
}

.floating-whatsapp-btn:hover {
    transform: scale(1.1);
    color: white;
}

.floating-call-btn {
    position: fixed;
    bottom: 164px;
    right: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: var(--coffea-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    z-index: 99;
    transition: transform 0.3s ease;
}

.floating-call-btn:hover {
    transform: scale(1.1);
    color: white;
}

.mobile-sticky-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--border-light);
    padding: 12px 16px;
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    z-index: 100;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.06);
}

.mobile-sticky-btn {
    height: 48px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    border: none;
    text-transform: uppercase;
}

.mobile-sticky-btn.primary {
    background-color: var(--coffea-primary);
    color: white;
    grid-column: span 1;
}

.mobile-sticky-btn.wa {
    background-color: #25D366;
    color: white;
}

.mobile-sticky-btn.call {
    background-color: var(--coffea-beige-accent);
    color: var(--text-primary);
    border: 1px solid var(--border-light);
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 991px) {
    .cro-hero-section {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 20px;
    }
    
    .cro-hero-content {
        text-align: center;
    }
    
    .cro-hero-ctas {
        justify-content: center;
    }
    
    .cro-hero-image-pane {
        height: 320px;
    }
    
    .cro-trust-banner {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        padding: 24px;
    }
    
    .cro-trust-separator {
        display: none;
    }
    
    .why-visit-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-section-container {
        grid-template-columns: 1fr;
    }
    
    .form-info-pane {
        padding: 40px;
    }
    
    .form-pane {
        padding: 40px;
    }
    
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-cro-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .location-cro-grid {
        grid-template-columns: 1fr;
    }
    
    .map-pane {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .cro-heading-lg {
        font-size: 32px;
    }
    
    .cro-heading-md {
        font-size: 26px;
    }
    
    .why-visit-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .mobile-sticky-bottom-bar {
        display: grid;
    }
    
    /* Make sure we don't cover content at the bottom due to the bar */
    body {
        padding-bottom: 80px;
    }
}

@media (max-width: 480px) {
    .cro-trust-banner {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .form-row .form-group {
        margin-bottom: 20px;
    }
    
    .time-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-cro-grid {
        grid-template-columns: 1fr;
    }
    
    .floating-whatsapp-btn {
        bottom: 80px;
        right: 16px;
        width: 48px;
        height: 48px;
    }
    
    .floating-call-btn {
        bottom: 136px;
        right: 16px;
        width: 48px;
        height: 48px;
    }
}

