/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette */
    --primary-orange: #FF6B35;
    --deep-orange: #E55A2B;
    --black: #1A1A1A;
    --dark-brown: #8B4513;
    --light-brown: #D2B48C;
    --palm-green: #228B22;
    --cream: #F5F5DC;
    --white: #FFFFFF;
    --gray: #666666;
    --light-gray: #F8F8F8;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-padding: 0 20px;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--black);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* Enhanced Navigation with Bootstrap */
.custom-navbar {
    background: rgba(26, 26, 26, 0.95) !important;
    backdrop-filter: blur(15px);
    transition: all 0.3s ease;
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.custom-navbar.scrolled {
    background: rgba(26, 26, 26, 0.98) !important;
    padding: 0.5rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.navbar-brand {
    font-family: var(--font-heading);
    font-size: 1.8rem !important;
    font-weight: 700;
    color: var(--white) !important;
    text-decoration: none;
}

.brand-text {
    background: linear-gradient(45deg, var(--primary-orange), #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-nav .nav-link {
    color: var(--white) !important;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 25px;
    margin: 0 0.2rem;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-orange) !important;
    background: rgba(255, 107, 53, 0.1);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-orange);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
    width: 80%;
}

.navbar-toggler {
    border: none !important;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none !important;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* Enhanced Hero Section with Igbo Cultural Background */
.hero-section {
    min-height: 100vh;
    background: 
        /* Village scene overlay */
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><pattern id="village" width="1200" height="800" patternUnits="userSpaceOnUse"><g opacity="0.15"><path d="M100,600 Q200,500 300,600 T500,600" stroke="%23FF6B35" stroke-width="3" fill="none"/><path d="M150,650 Q250,550 350,650 T550,650" stroke="%23FF6B35" stroke-width="2" fill="none"/><circle cx="200" cy="580" r="8" fill="%23FF6B35"/><circle cx="400" cy="570" r="6" fill="%23FF6B35"/><circle cx="600" cy="590" r="7" fill="%23FF6B35"/><rect x="180" y="620" width="40" height="30" fill="%23D2B48C" opacity="0.6"/><rect x="380" y="610" width="35" height="25" fill="%23D2B48C" opacity="0.6"/><rect x="580" y="630" width="38" height="28" fill="%23D2B48C" opacity="0.6"/></g></pattern></defs><rect width="1200" height="800" fill="url(%23village)"/></svg>'),
        /* Palm fronds pattern */
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><pattern id="palms" width="200" height="200" patternUnits="userSpaceOnUse"><g opacity="0.08"><path d="M50,50 Q60,30 70,50 Q80,30 90,50 Q100,30 110,50" stroke="%23228B22" stroke-width="2" fill="none"/><path d="M120,80 Q130,60 140,80 Q150,60 160,80" stroke="%23228B22" stroke-width="2" fill="none"/><path d="M30,120 Q40,100 50,120 Q60,100 70,120 Q80,100 90,120" stroke="%23228B22" stroke-width="2" fill="none"/></g></pattern></defs><rect width="200" height="200" fill="url(%23palms)"/></svg>'),
        /* Uli art geometric patterns */
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="uli" width="100" height="100" patternUnits="userSpaceOnUse"><g opacity="0.06"><circle cx="25" cy="25" r="8" fill="none" stroke="%23FF6B35" stroke-width="1"/><circle cx="75" cy="25" r="6" fill="none" stroke="%23FF6B35" stroke-width="1"/><circle cx="25" cy="75" r="6" fill="none" stroke="%23FF6B35" stroke-width="1"/><circle cx="75" cy="75" r="8" fill="none" stroke="%23FF6B35" stroke-width="1"/><path d="M10,50 Q50,10 90,50 Q50,90 10,50" fill="none" stroke="%23FF6B35" stroke-width="1"/></g></pattern></defs><rect width="100" height="100" fill="url(%23uli)"/></svg>'),
        /* Main gradient */
        linear-gradient(135deg, var(--black) 0%, var(--dark-brown) 30%, #2C1810 60%, var(--black) 100%);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    background: 
        /* Calabash watermarks */
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300"><defs><pattern id="calabash" width="300" height="300" patternUnits="userSpaceOnUse"><g opacity="0.05"><ellipse cx="150" cy="150" rx="40" ry="60" fill="none" stroke="%23D2B48C" stroke-width="2"/><ellipse cx="150" cy="150" rx="25" ry="40" fill="none" stroke="%23D2B48C" stroke-width="1"/><path d="M150,90 Q160,85 170,90" stroke="%23D2B48C" stroke-width="1"/></g></pattern></defs><rect width="300" height="300" fill="url(%23calabash)"/></svg>'),
        /* Yam and Ukwa motifs */
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 150 150"><defs><pattern id="yam-ukwa" width="150" height="150" patternUnits="userSpaceOnUse"><g opacity="0.04"><ellipse cx="75" cy="75" rx="20" ry="35" fill="%23FF6B35" transform="rotate(45 75 75)"/><circle cx="50" cy="50" r="8" fill="%23228B22"/><circle cx="100" cy="100" r="6" fill="%23228B22"/><circle cx="50" cy="100" r="7" fill="%23228B22"/><circle cx="100" cy="50" r="5" fill="%23228B22"/></g></pattern></defs><rect width="150" height="150" fill="url(%23yam-ukwa)"/></svg>');
    opacity: 0.4;
    z-index: 1;
}

.hero-overlay {
    background: linear-gradient(45deg, rgba(26, 26, 26, 0.85) 0%, rgba(139, 69, 19, 0.7) 50%, rgba(26, 26, 26, 0.85) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
}

.hero-badge .badge {
    font-size: 0.7rem !important;
    font-weight: 600;
    letter-spacing: 0.3px;
    animation: pulse 2s infinite;
    padding: 6px 12px !important;
    line-height: 1.2;
}

.hero-title {
    font-family: var(--font-heading);
    line-height: 1.1;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    background: linear-gradient(45deg, #ffffff, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 3.5rem;
}

.hero-subtitle {
    font-size: 1.1rem;
    opacity: 0.95;
    font-weight: 300;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.5;
}

.hero-buttons .btn {
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
}

.hero-buttons .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.hero-buttons .btn:hover::before {
    left: 100%;
}

.hero-buttons .btn-warning {
    background: linear-gradient(45deg, var(--primary-orange), #FFD700);
    border: none;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.hero-buttons .btn-warning:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.6);
    background: linear-gradient(45deg, var(--deep-orange), #FFA500);
}

.hero-buttons .btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.hero-buttons .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--black);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.3);
}

.hero-stats {
    margin-top: 3rem;
}

.stat-item {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.stat-number {
    font-family: var(--font-heading);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Floating Cultural Elements */
.floating-elements {
    z-index: 1;
    pointer-events: none;
}

.floating-pattern {
    position: absolute;
    font-size: 2.5rem;
    opacity: 0.2;
    animation: float 8s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(255, 107, 53, 0.3));
}

.pattern-1 {
    top: 15%;
    left: 8%;
    animation-delay: 0s;
    content: '🍠'; /* Yam */
}

.pattern-2 {
    top: 70%;
    right: 12%;
    animation-delay: 2s;
    content: '🌳'; /* Ukwa tree */
}

.pattern-3 {
    top: 35%;
    left: 3%;
    animation-delay: 4s;
    content: '🥥'; /* Palm fruit */
}

.pattern-4 {
    top: 85%;
    right: 8%;
    animation-delay: 1s;
}

.pattern-5 {
    top: 25%;
    right: 20%;
    animation-delay: 3s;
    font-size: 2rem;
    opacity: 0.15;
}

.pattern-6 {
    top: 60%;
    left: 15%;
    animation-delay: 5s;
    font-size: 2.2rem;
    opacity: 0.18;
}

.pattern-7 {
    top: 45%;
    right: 5%;
    animation-delay: 6s;
    font-size: 2.3rem;
    opacity: 0.16;
}

.pattern-8 {
    top: 75%;
    left: 25%;
    animation-delay: 4s;
    font-size: 2.1rem;
    opacity: 0.17;
}

/* Hero Visual */
.hero-visual {
    z-index: 3;
}

.hero-image-container {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-placeholder {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(255, 215, 0, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: var(--primary-orange);
    border: 3px solid rgba(255, 107, 53, 0.3);
    backdrop-filter: blur(10px);
    animation: rotate 20s linear infinite;
}

.hero-image-img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid rgba(255, 107, 53, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.hero-image-container:hover .hero-image-img {
    transform: scale(1.05);
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    animation: floatCard 3s ease-in-out infinite;
}

.card-1 {
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.card-2 {
    bottom: 20%;
    left: 5%;
    animation-delay: 1s;
}

.card-3 {
    top: 50%;
    right: 0%;
    animation-delay: 2s;
}

/* Scroll Indicator */
.scroll-indicator {
    z-index: 3;
}

.scroll-arrow {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounce 2s infinite;
    cursor: pointer;
    transition: all 0.3s ease;
}

.scroll-arrow:hover {
    border-color: var(--primary-orange);
    color: var(--primary-orange);
    transform: scale(1.1);
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 15px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-orange);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Menu Section with Cultural Background */
.menu-section {
    padding: var(--section-padding);
    background: 
        /* Ankara fabric texture */
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><pattern id="ankara" width="200" height="200" patternUnits="userSpaceOnUse"><g opacity="0.03"><rect x="0" y="0" width="100" height="100" fill="%23FF6B35"/><rect x="100" y="100" width="100" height="100" fill="%23FF6B35"/><circle cx="50" cy="50" r="15" fill="%23D2B48C"/><circle cx="150" cy="150" r="15" fill="%23D2B48C"/><circle cx="50" cy="150" r="10" fill="%23228B22"/><circle cx="150" cy="50" r="10" fill="%23228B22"/></g></pattern></defs><rect width="200" height="200" fill="url(%23ankara)"/></svg>'),
        /* Isi-agu pattern */
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 150 150"><defs><pattern id="isi-agu" width="150" height="150" patternUnits="userSpaceOnUse"><g opacity="0.04"><path d="M75,10 Q85,30 75,50 Q65,30 75,10" fill="%23FF6B35"/><path d="M75,50 Q85,70 75,90 Q65,70 75,50" fill="%23FF6B35"/><path d="M75,90 Q85,110 75,130 Q65,110 75,90" fill="%23FF6B35"/><circle cx="75" cy="75" r="8" fill="%23D2B48C"/></g></pattern></defs><rect width="150" height="150" fill="url(%23isi-agu)"/></svg>'),
        /* Main background */
        linear-gradient(135deg, #F8F8F8 0%, #F0F0F0 50%, #E8E8E8 100%);
    position: relative;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.menu-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.menu-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.menu-image {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.menu-placeholder {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
}

.menu-image-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.menu-card:hover .menu-placeholder,
.menu-card:hover .menu-image-img {
    transform: scale(1.1);
}

.roasted-yam {
    background: linear-gradient(135deg, #8B4513 0%, #D2B48C 100%);
    position: relative;
}

.roasted-yam::before {
    content: '🍠';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    opacity: 0.8;
}

.ukwa {
    background: linear-gradient(135deg, #228B22 0%, #90EE90 100%);
    position: relative;
}

.ukwa::before {
    content: '🌳';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    opacity: 0.8;
}

.abacha {
    background: linear-gradient(135deg, #FF6B35 0%, #FFA500 100%);
    position: relative;
}

.abacha::before {
    content: '🥗';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    opacity: 0.8;
}

.menu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 26, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-card:hover .menu-overlay {
    opacity: 1;
}

.menu-overlay i {
    color: var(--white);
    font-size: 3rem;
}

.menu-content {
    padding: 30px;
}

.menu-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--black);
    margin-bottom: 15px;
}

.menu-description {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.menu-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 15px;
}

.cultural-note {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: var(--cream);
    border-radius: 10px;
    border-left: 4px solid var(--primary-orange);
}

.cultural-note i {
    color: var(--palm-green);
}

.cultural-note span {
    font-size: 0.9rem;
    color: var(--dark-brown);
    font-style: italic;
}

/* Palmwine Section with Cultural Background */
.palmwine-section {
    padding: var(--section-padding);
    background: 
        /* Palm wine calabash pattern */
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300"><defs><pattern id="palmwine-calabash" width="300" height="300" patternUnits="userSpaceOnUse"><g opacity="0.08"><ellipse cx="150" cy="150" rx="50" ry="80" fill="none" stroke="%23D2B48C" stroke-width="3"/><ellipse cx="150" cy="150" rx="30" ry="50" fill="none" stroke="%23D2B48C" stroke-width="2"/><path d="M150,70 Q160,65 170,70" stroke="%23D2B48C" stroke-width="2"/><circle cx="150" cy="120" r="3" fill="%23FF6B35"/><circle cx="150" cy="180" r="3" fill="%23FF6B35"/></g></pattern></defs><rect width="300" height="300" fill="url(%23palmwine-calabash)"/></svg>'),
        /* Palm tree silhouettes */
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><pattern id="palm-trees" width="200" height="200" patternUnits="userSpaceOnUse"><g opacity="0.06"><path d="M50,180 L50,120 Q45,100 50,80 Q55,100 50,120" stroke="%23228B22" stroke-width="3" fill="none"/><path d="M100,180 L100,110 Q95,90 100,70 Q105,90 100,110" stroke="%23228B22" stroke-width="3" fill="none"/><path d="M150,180 L150,130 Q145,110 150,90 Q155,110 150,130" stroke="%23228B22" stroke-width="3" fill="none"/></g></pattern></defs><rect width="200" height="200" fill="url(%23palm-trees)"/></svg>'),
        /* Main gradient */
        linear-gradient(135deg, var(--black) 0%, var(--dark-brown) 50%, #2C1810 100%);
    color: var(--white);
    position: relative;
}

.palmwine-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        /* Market scene silhouettes */
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 300"><defs><pattern id="market" width="400" height="300" patternUnits="userSpaceOnUse"><g opacity="0.05"><rect x="50" y="200" width="30" height="80" fill="%23D2B48C"/><rect x="100" y="190" width="25" height="90" fill="%23D2B48C"/><rect x="150" y="210" width="35" height="70" fill="%23D2B48C"/><circle cx="65" cy="180" r="8" fill="%23FF6B35"/><circle cx="112" cy="170" r="6" fill="%23FF6B35"/><circle cx="167" cy="190" r="7" fill="%23FF6B35"/></g></pattern></defs><rect width="400" height="300" fill="url(%23market)"/></svg>');
    opacity: 0.4;
    z-index: 1;
}

.palmwine-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.palmwine-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-orange);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    margin-bottom: 20px;
}

.palmwine-text h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.palmwine-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.9;
}

.palmwine-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature i {
    color: var(--primary-orange);
    font-size: 1.2rem;
}

.palmwine-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-orange);
}

.palmwine-image {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.palmwine-placeholder {
    width: 200px;
    height: 300px;
    background: linear-gradient(135deg, var(--light-brown) 0%, var(--dark-brown) 100%);
    border-radius: 20px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.palmwine-image-img {
    width: 200px;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.palmwine-placeholder::before {
    content: '🍷';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
}

.palmwine-decoration {
    position: absolute;
    top: 20px;
    right: 20px;
    color: var(--primary-orange);
    font-size: 2rem;
    opacity: 0.7;
}

.palmwine-image:hover .palmwine-image-img {
    transform: scale(1.05);
}

/* About Section with Cultural Background */
.about-section {
    padding: var(--section-padding);
    background: 
        /* Traditional Igbo compound pattern */
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300"><defs><pattern id="compound" width="300" height="300" patternUnits="userSpaceOnUse"><g opacity="0.04"><rect x="50" y="50" width="200" height="200" fill="none" stroke="%23D2B48C" stroke-width="2"/><rect x="100" y="100" width="100" height="100" fill="none" stroke="%23FF6B35" stroke-width="1"/><circle cx="150" cy="150" r="20" fill="none" stroke="%23228B22" stroke-width="1"/><path d="M150,130 Q160,140 150,150 Q140,140 150,130" fill="%23FF6B35" opacity="0.3"/></g></pattern></defs><rect width="300" height="300" fill="url(%23compound)"/></svg>'),
        /* Thatch roof texture */
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="thatch" width="100" height="100" patternUnits="userSpaceOnUse"><g opacity="0.03"><path d="M0,50 Q25,30 50,50 Q75,30 100,50 Q75,70 50,50 Q25,70 0,50" fill="%23D2B48C"/><path d="M0,30 Q25,10 50,30 Q75,10 100,30 Q75,50 50,30 Q25,50 0,30" fill="%23D2B48C"/></g></pattern></defs><rect width="100" height="100" fill="url(%23thatch)"/></svg>'),
        /* Main background */
        linear-gradient(135deg, #FFFFFF 0%, #FAFAFA 50%, #F5F5F5 100%);
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--black);
    margin-bottom: 20px;
}

.about-description,
.about-story {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 20px;
}

.about-values {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
}

.value {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: var(--light-gray);
    border-radius: 15px;
    border-left: 4px solid var(--primary-orange);
}

.value i {
    color: var(--primary-orange);
    font-size: 1.5rem;
    margin-top: 5px;
}

.value h4 {
    font-family: var(--font-heading);
    color: var(--black);
    margin-bottom: 5px;
}

.value p {
    color: var(--gray);
    font-size: 0.9rem;
}

.about-image {
    position: relative;
    height: 400px;
}

.about-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--cream) 0%, var(--light-brown) 100%);
    border-radius: 20px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-image-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-placeholder::before {
    content: '🏠';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    opacity: 0.8;
}

.cultural-pattern {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="%23FF6B35" stroke-width="2" opacity="0.3"/><circle cx="50" cy="50" r="25" fill="none" stroke="%23FF6B35" stroke-width="2" opacity="0.3"/><circle cx="50" cy="50" r="10" fill="%23FF6B35" opacity="0.3"/></svg>');
    background-size: contain;
}

.about-image:hover .about-image-img {
    transform: scale(1.05);
}

/* Contact Section with Cultural Background */
.contact-section {
    padding: var(--section-padding);
    background: 
        /* Igbo welcome pattern */
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><pattern id="welcome" width="200" height="200" patternUnits="userSpaceOnUse"><g opacity="0.03"><path d="M100,20 Q120,40 100,60 Q80,40 100,20" fill="%23FF6B35"/><path d="M100,60 Q120,80 100,100 Q80,80 100,60" fill="%23FF6B35"/><path d="M100,100 Q120,120 100,140 Q80,120 100,100" fill="%23FF6B35"/><circle cx="100" cy="100" r="15" fill="%23D2B48C"/></g></pattern></defs><rect width="200" height="200" fill="url(%23welcome)"/></svg>'),
        /* Community gathering pattern */
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 150 150"><defs><pattern id="gathering" width="150" height="150" patternUnits="userSpaceOnUse"><g opacity="0.04"><circle cx="75" cy="75" r="30" fill="none" stroke="%23D2B48C" stroke-width="2"/><circle cx="50" cy="50" r="8" fill="%23FF6B35"/><circle cx="100" cy="50" r="8" fill="%23FF6B35"/><circle cx="50" cy="100" r="8" fill="%23FF6B35"/><circle cx="100" cy="100" r="8" fill="%23FF6B35"/><circle cx="75" cy="75" r="5" fill="%23228B22"/></g></pattern></defs><rect width="150" height="150" fill="url(%23gathering)"/></svg>'),
        /* Main background */
        linear-gradient(135deg, #F8F8F8 0%, #F0F0F0 50%, #E8E8E8 100%);
    position: relative;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-item i {
    color: var(--primary-orange);
    font-size: 1.5rem;
    margin-top: 5px;
}

.contact-item h4 {
    font-family: var(--font-heading);
    color: var(--black);
    margin-bottom: 5px;
}

.contact-item p {
    color: var(--gray);
}

.contact-form-container {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--black);
    margin-bottom: 30px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Locate Us Section */
.locate-section {
    padding: var(--section-padding);
    background: 
        /* Location pattern */
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><pattern id="location" width="200" height="200" patternUnits="userSpaceOnUse"><g opacity="0.04"><circle cx="100" cy="100" r="30" fill="none" stroke="%23FF6B35" stroke-width="2"/><circle cx="100" cy="100" r="15" fill="%23FF6B35" opacity="0.3"/><path d="M100,70 L110,90 L100,110 L90,90 Z" fill="%23FF6B35" opacity="0.5"/></g></pattern></defs><rect width="200" height="200" fill="url(%23location)"/></svg>'),
        linear-gradient(135deg, #F8F8F8 0%, #F0F0F0 100%);
    position: relative;
}

.locate-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.info-card {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    border-left: 5px solid var(--primary-orange);
}

.info-icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

.info-content h4 {
    font-family: var(--font-heading);
    color: var(--black);
    margin-bottom: 20px;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--light-gray);
}

.hours-item:last-child {
    border-bottom: none;
}

.day {
    font-weight: 600;
    color: var(--black);
}

.time {
    color: var(--primary-orange);
    font-weight: 500;
}

.address {
    color: var(--gray);
    line-height: 1.6;
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-gold {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: var(--black);
    border: none;
    font-weight: 600;
}

.btn-gold:hover {
    background: linear-gradient(45deg, #FFA500, #FF8C00);
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.map-container {
    position: relative;
}

.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 3px solid var(--primary-orange);
}

/* Market Days Section */
.market-section {
    padding: var(--section-padding);
    background: 
        /* Market pattern */
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300"><defs><pattern id="market-pattern" width="300" height="300" patternUnits="userSpaceOnUse"><g opacity="0.05"><rect x="50" y="50" width="200" height="200" fill="none" stroke="%23FF6B35" stroke-width="2"/><circle cx="150" cy="150" r="30" fill="%23FF6B35" opacity="0.2"/><path d="M150,120 Q170,140 150,160 Q130,140 150,120" fill="%23D2B48C" opacity="0.3"/></g></pattern></defs><rect width="300" height="300" fill="url(%23market-pattern)"/></svg>'),
        linear-gradient(135deg, var(--black) 0%, var(--dark-brown) 50%, #2C1810 100%);
    color: var(--white);
    position: relative;
}

.market-content {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.today-market {
    text-align: center;
}

.market-day-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid rgba(255, 107, 53, 0.3);
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 600px;
    margin: 0 auto;
}

.market-day-card.today {
    background: rgba(255, 107, 53, 0.2);
    border-color: var(--primary-orange);
}

.market-icon {
    font-size: 3rem;
    color: var(--primary-orange);
}

.market-info h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 10px;
}

.market-info p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 15px;
}

.significance-badge {
    background: var(--primary-orange);
    color: var(--black);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.all-market-days h4 {
    font-family: var(--font-heading);
    text-align: center;
    margin-bottom: 30px;
    color: var(--white);
}

.market-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.market-day-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.market-day-item:hover {
    background: rgba(255, 107, 53, 0.2);
    border-color: var(--primary-orange);
    transform: translateY(-5px);
}

.market-day-item.active {
    background: rgba(255, 107, 53, 0.3);
    border-color: var(--primary-orange);
}

.day-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.market-day-item h5 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--white);
}

.market-day-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.cultural-proverb {
    text-align: center;
}

.proverb-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    max-width: 800px;
    margin: 0 auto;
}

.proverb-icon {
    font-size: 2rem;
    color: #FFD700;
    margin-bottom: 20px;
}

.proverb-card blockquote {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.4;
}

.proverb-card cite {
    display: block;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 10px;
}

.proverb-meaning p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-orange);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10000;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--deep-orange);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* Footer with Cultural Background */
.footer {
    background: 
        /* Traditional Igbo border pattern */
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="border" width="100" height="100" patternUnits="userSpaceOnUse"><g opacity="0.05"><path d="M0,50 Q25,25 50,50 Q75,75 100,50" stroke="%23FF6B35" stroke-width="2" fill="none"/><path d="M0,25 Q25,50 50,25 Q75,0 100,25" stroke="%23FF6B35" stroke-width="1" fill="none"/><path d="M0,75 Q25,50 50,75 Q75,100 100,75" stroke="%23FF6B35" stroke-width="1" fill="none"/></g></pattern></defs><rect width="100" height="100" fill="url(%23border)"/></svg>'),
        /* Main background */
        linear-gradient(135deg, var(--black) 0%, #1A1A1A 50%, var(--black) 100%);
    color: var(--white);
    padding: 40px 0 20px;
    position: relative;
}

.footer-content {
    text-align: center;
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 15px;
}

.footer-text {
    color: var(--gray);
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-orange);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--deep-orange);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--gray);
    color: var(--gray);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-badge .badge {
        font-size: 0.65rem !important;
        padding: 5px 10px !important;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .palmwine-content,
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .palmwine-text h2,
    .about-text h2 {
        font-size: 2rem;
    }
    
    .contact-form-container {
        padding: 30px 20px;
    }
    
    .about-values {
        grid-template-columns: 1fr;
    }
    
    /* Reduce floating elements on mobile */
    .floating-pattern {
        font-size: 1.5rem;
        opacity: 0.1;
    }
    
    .pattern-5, .pattern-6, .pattern-7, .pattern-8 {
        display: none;
    }
    
    /* Simplify backgrounds on mobile for performance */
    .hero-section {
        background: 
            url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="mobile-uli" width="100" height="100" patternUnits="userSpaceOnUse"><g opacity="0.08"><circle cx="25" cy="25" r="6" fill="none" stroke="%23FF6B35" stroke-width="1"/><circle cx="75" cy="75" r="6" fill="none" stroke="%23FF6B35" stroke-width="1"/></g></pattern></defs><rect width="100" height="100" fill="url(%23mobile-uli)"/></svg>'),
            linear-gradient(135deg, var(--black) 0%, var(--dark-brown) 50%, var(--black) 100%);
    }
    
    .menu-section {
        background: 
            url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="mobile-ankara" width="100" height="100" patternUnits="userSpaceOnUse"><g opacity="0.05"><rect x="0" y="0" width="50" height="50" fill="%23FF6B35"/><rect x="50" y="50" width="50" height="50" fill="%23FF6B35"/></g></pattern></defs><rect width="100" height="100" fill="url(%23mobile-ankara)"/></svg>'),
            linear-gradient(135deg, #F8F8F8 0%, #F0F0F0 100%);
    }
    
    /* New sections responsive design */
    .locate-content,
    .order-content {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 100%;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .order-form-container {
        padding: 20px;
    }
    
    .info-panel {
        padding: 15px;
    }
    
    .market-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .market-day-card {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .action-buttons {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-badge .badge {
        font-size: 0.6rem !important;
        padding: 4px 8px !important;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .menu-card {
        margin: 0 10px;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.menu-card,
.contact-item,
.value {
    animation: fadeInUp 0.6s ease-out;
}

/* Cultural Pattern Overlays */
.menu-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="uli" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M10,0 Q15,5 10,10 Q5,5 10,0" fill="%23FF6B35" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23uli)"/></svg>');
    pointer-events: none;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="calabash" width="30" height="30" patternUnits="userSpaceOnUse"><ellipse cx="15" cy="15" rx="8" ry="12" fill="none" stroke="%23FF6B35" stroke-width="1" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23calabash)"/></svg>');
    pointer-events: none;
}

/* Order Now Card Styles */
.order-now-card-inner {
    background: linear-gradient(135deg, #fffbe6 0%, #ffe5b4 100%);
    border-radius: 2rem;
    box-shadow: 0 8px 32px rgba(255, 107, 53, 0.10), 0 1.5px 8px rgba(37, 211, 102, 0.08);
    padding: 2.5rem 2rem;
    transition: transform 0.2s, box-shadow 0.2s;
}
.order-now-card-inner:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 16px 48px rgba(255, 107, 53, 0.18), 0 3px 16px rgba(37, 211, 102, 0.12);
}
.order-now-icon {
    background: linear-gradient(45deg, #25D366, #FF6B35);
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(255,107,53,0.15);
    margin: 0 auto 1rem auto;
}
.order-now-btn {
    background: linear-gradient(45deg, #25D366, #128C7E);
    color: #fff;
    border: none;
    border-radius: 2rem;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 6px 24px rgba(37,211,102,0.18);
    transition: background 0.3s, transform 0.2s, box-shadow 0.2s;
}
.order-now-btn:hover, .order-now-btn:focus {
    background: linear-gradient(45deg, #128C7E, #25D366);
    color: #fff;
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 12px 36px rgba(37,211,102,0.22);
}
