@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@400;600;700;800&family=Nunito:wght@400;600;700&display=swap');

:root {
    --bg-color: #FCF5F0; /* Light cream background */
    --accent-color: #D16B44; /* Burnt orange/terracotta */
    --accent-hover: #b85b39;
    --text-dark: #5A3D2B; /* Dark brown for text readability */
    --grid-color: rgba(209, 107, 68, 0.15); /* Faint orange for grid */
    --white: #ffffff;
    
    --font-heading: 'Baloo 2', cursive;
    --font-body: 'Nunito', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-dark);
    line-height: 1.6;
    
    /* Background Grid Pattern inspired by the business card */
    background-image: 
        linear-gradient(var(--grid-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
    background-size: 60px 60px;
    background-position: center top;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--accent-color);
    font-weight: 700;
    letter-spacing: 1px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

header.scrolled {
    background: rgba(252, 245, 240, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    padding: 10px 5%;
}

.logo {
    display: flex;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--accent-color);
    text-shadow: 2px 2px 0px rgba(209, 107, 68, 0.2);
}

.logo img {
    height: 95px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15));
    border-radius: 20px;
    transition: height 0.3s ease;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    z-index: 1001;
}

.menu-toggle .bar {
    width: 30px;
    height: 3px;
    background-color: var(--accent-color);
    transition: all 0.3s ease;
    border-radius: 3px;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-dark);
    position: relative;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
    border-radius: 2px;
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 5% 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    z-index: 2;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-shadow: 3px 3px 0px rgba(209, 107, 68, 0.2);
    line-height: 1.1;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    font-weight: 600;
}

.btn {
    display: inline-block;
    padding: 14px 35px;
    background-color: var(--accent-color);
    color: var(--white);
    border-radius: 8px; /* Slightly rounded edges instead of full pill */
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(193, 154, 107, 0.2);
}
.btn:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(193, 154, 107, 0.3);
    color: var(--white);
}

/* Hero Entrance Animation */
.hero-entrance {
    animation: heroReveal 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    opacity: 0;
    transform: translateY(40px) scale(0.95);
}

@keyframes heroReveal {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-subtitle {
    display: inline-block;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-color);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
    background: rgba(209, 107, 68, 0.1);
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid rgba(209, 107, 68, 0.2);
    animation: fadeInDown 1s ease 0.3s forwards;
    opacity: 0;
    transform: translateY(-20px);
}

.hero-title {
    font-size: 4.5rem !important;
    line-height: 1.1 !important;
    margin-bottom: 20px !important;
    background: linear-gradient(135deg, var(--text-dark), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none !important;
    animation: letterSpacingIn 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) 0.1s forwards;
    opacity: 0;
}

@keyframes letterSpacingIn {
    0% { opacity: 0; transform: scale(1.05); letter-spacing: -5px; filter: blur(10px); }
    100% { opacity: 1; transform: scale(1); letter-spacing: 1px; filter: blur(0); }
}

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

.hero-desc {
    font-size: 1.3rem !important;
    color: #666;
    max-width: 600px;
    margin: 0 auto 35px !important;
    animation: fadeInUp 1s ease 0.6s forwards;
    opacity: 0;
    transform: translateY(20px);
}

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

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 1s ease 0.8s forwards;
    opacity: 0;
    transform: translateY(20px);
}

.btn-glow {
    position: relative;
    z-index: 1;
    background-color: var(--accent-color);
    color: var(--white);
    border: 2px solid transparent;
}

.btn-glow::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--accent-color);
    border-radius: inherit;
    z-index: -1;
    filter: blur(15px);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.btn-glow:hover::after {
    filter: blur(25px);
    opacity: 0.8;
}

.btn-outline {
    background-color: transparent;
    color: var(--text-dark);
    border: 2px solid var(--text-dark);
    box-shadow: none;
}

.btn-outline:hover {
    border-color: var(--accent-color);
    background-color: rgba(209, 107, 68, 0.05);
    color: var(--accent-color);
    box-shadow: none;
    transform: translateY(-2px);
}

/* Floating Shapes & Background Blobs */
.hero-bg-shapes {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.floating-shape {
    position: absolute;
    opacity: 0.15;
}

.shape-1 { width: 180px; top: 15%; left: 10%; animation: floatSlow 8s ease-in-out infinite; }
.shape-2 { width: 120px; bottom: 20%; right: 15%; animation: floatSlow 6s ease-in-out infinite reverse; }
.shape-3 { width: 80px; top: 30%; right: 10%; animation: floatRotate 10s linear infinite; }
.shape-4 { width: 140px; bottom: 15%; left: 20%; animation: floatRotate 12s linear infinite reverse; }

@keyframes floatSlow {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(-30px) translateX(15px); }
}

@keyframes floatRotate {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-40px) rotate(180deg); }
    100% { transform: translateY(0) rotate(360deg); }
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    z-index: -1;
    animation: blobPulse 10s alternate infinite ease-in-out;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: var(--accent-color);
    top: -100px;
    left: -100px;
}

.blob-2 {
    width: 350px;
    height: 350px;
    background: #E8A87C;
    bottom: -50px;
    right: -100px;
    animation-delay: -5s;
}

@keyframes blobPulse {
    0% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.2); opacity: 0.5; }
    100% { transform: scale(0.9); opacity: 0.3; }
}

/* Sections */
section {
    padding: 80px 5%;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

/* Products Highlights */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.product-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 2px solid var(--grid-color);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
}

.product-icon {
    font-size: 4rem;
    margin-bottom: 15px;
}

.product-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

/* Footer */
footer {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 60px 5% 20px;
    margin-top: 50px;
}
.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-section {
    flex: 1;
    min-width: 200px;
}
.footer-section h3 {
    color: var(--accent-color);
    margin-bottom: 20px;
}
.footer-section p, .footer-section a {
    margin-bottom: 10px;
    display: block;
    color: #ddd;
}
.footer-section a:hover {
    color: var(--accent-color);
}
.social-icons a {
    display: inline-block;
    margin-right: 15px;
    color: var(--white);
    background-color: rgba(255,255,255,0.1);
    padding: 10px;
    border-radius: 50%;
    transition: all 0.3s ease;
}
.social-icons a:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
}
.delivery-apps {
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
    align-items: center;
}

.delivery-apps img {
    height: 30px; /* Placeholder for logos */
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.copyright {
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.appear {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .logo img {
        height: 60px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background-color: var(--bg-color);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        z-index: 1000;
        gap: 40px;
    }

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

    .menu-toggle.is-active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .menu-toggle.is-active .bar:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.is-active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .hero-title {
        font-size: 2.5rem !important;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }

    .hero-desc {
        font-size: 1.1rem !important;
        margin-bottom: 25px !important;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 250px;
    }
    
    /* Mobile Menu Page App-like Layout */
    .menu-filter-buttons {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
        gap: 10px;
        scroll-snap-type: x mandatory;
        margin-bottom: 20px;
    }
    .menu-filter-buttons::-webkit-scrollbar {
        display: none;
    }
    .menu-btn {
        flex: 0 0 auto;
        scroll-snap-align: start;
        white-space: nowrap;
        padding: 8px 18px;
    }
    
    .menu-container {
        padding: 10px;
    }

    .menu-category {
        padding: 0;
        border: none;
        box-shadow: none;
        background: transparent;
        margin-bottom: 30px;
        grid-template-columns: 1fr;
    }
    
    .menu-category h3 {
        font-size: 1.4rem;
        text-align: left;
        margin-bottom: 15px;
        padding-bottom: 5px;
        border-bottom: 2px solid rgba(209, 107, 68, 0.2);
    }
    
    .menu-item {
        flex-direction: row;
        background: var(--white);
        border-radius: 16px;
        padding: 12px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.04);
        margin-bottom: 12px;
        border: 1px solid rgba(0,0,0,0.03);
        align-items: center;
        gap: 12px;
    }
    
    .menu-item:last-child {
        margin-bottom: 0;
        border-bottom: 1px solid rgba(0,0,0,0.03);
    }
    
    .menu-item-image-placeholder {
        width: 85px;
        height: 85px;
        border-radius: 12px;
        background: #fffaf7;
        border: 1px dashed rgba(209, 107, 68, 0.4);
        font-size: 0.7rem;
        flex-shrink: 0;
        padding: 5px;
    }
    
    .menu-item-details {
        display: flex;
        flex-direction: column;
        justify-content: center;
        flex: 1;
        min-width: 0;
    }
    
    .menu-item-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
    }
    
    .menu-item-title {
        font-size: 1.1rem;
        line-height: 1.2;
    }
    
    .menu-item-price {
        font-size: 1.15rem;
        color: var(--accent-color);
        margin-top: 2px;
    }
    
    .menu-item-desc {
        font-size: 0.85rem;
        color: #777;
        margin-top: 4px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    /* Simple lists on mobile */
    .menu-simple-list .menu-item {
        padding: 15px;
        margin-bottom: 10px;
    }

    .contact-wrapper {
        flex-direction: column;
        padding: 20px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .delivery-apps {
        justify-content: center;
    }
    
    .menu-filter-buttons {
        gap: 8px;
    }
    
    .menu-btn {
        padding: 6px 15px;
        font-size: 1rem;
    }
}

/* Full Menu Styles */
.menu-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}
.menu-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
    text-align: left;
}
.menu-category {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid var(--grid-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    align-items: start;
}
.menu-category h3 {
    grid-column: 1 / -1;
    font-size: 2rem;
    margin-bottom: 10px;
    text-align: center;
    border-bottom: 2px solid var(--grid-color);
    padding-bottom: 15px;
    color: var(--accent-color);
}
.menu-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    padding-bottom: 20px;
    border-bottom: 1px dashed var(--grid-color);
    height: 100%;
}
.menu-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.menu-item-image-placeholder {
    width: 110px;
    height: 110px;
    flex-shrink: 0;
    background-color: var(--bg-color);
    border: 2px dashed var(--accent-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 0.9rem;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}
.menu-item-image-placeholder:hover {
    opacity: 1;
    cursor: pointer;
}
.menu-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
}
.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 10px;
}
.menu-item-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    white-space: normal;
    word-break: break-word;
    line-height: 1.2;
}
.menu-item-price {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent-color);
    white-space: nowrap;
    flex-shrink: 0;
}
.menu-item-desc {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

/* For simple lists like Drinks and Extras */
.menu-simple-list .menu-item {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
}
.menu-simple-list .menu-item-title {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
}
.menu-simple-list .menu-item-price {
    font-size: 1.2rem;
}

/* Category Filter Buttons */
.menu-filter-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}
.menu-btn {
    background-color: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}
.menu-btn:hover, .menu-btn.active {
    background-color: var(--accent-color);
    color: var(--white);
}

/* Footer */
footer {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 80px 5% 20px;
    margin-top: 50px;
    border-top: 5px solid var(--accent-color);
    box-shadow: 0 -10px 30px rgba(0,0,0,0.05);
}
.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-section {
    flex: 1;
    min-width: 200px;
}
.footer-section h3 {
    color: var(--accent-color);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    font-size: 1.4rem;
}
.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background-color: var(--accent-color);
    border-radius: 5px;
}
.footer-section p, .footer-section a {
    margin-bottom: 10px;
    display: block;
    color: #ddd;
}
.footer-section a:hover {
    color: var(--accent-color);
}
.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--white);
    background-color: rgba(255,255,255,0.08);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
}
.social-icons a:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
}
.delivery-apps {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.delivery-apps span {
    font-weight: 600;
    background: rgba(255,255,255,0.08);
    padding: 8px 15px;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}
.delivery-apps span:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}
.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #aaa;
    font-size: 0.9rem;
}

/* -----------------------------
   Contact Page Styles
----------------------------- */
.contact-page {
    padding-bottom: 80px;
}
.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    padding: 40px;
    margin-top: 20px;
}
.contact-info-card {
    flex: 1;
    min-width: 300px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    padding: 50px 40px;
    border-radius: 15px;
    color: var(--white);
    box-shadow: 0 15px 30px rgba(209, 107, 68, 0.2);
    position: relative;
    overflow: hidden;
}
/* Decorative background element */
.contact-info-card::before {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 250px;
    height: 250px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
}
.contact-info-card h2 {
    color: var(--white);
    margin-bottom: 15px;
    font-size: 2rem;
    position: relative;
}
.contact-info-card > p {
    margin-bottom: 40px;
    color: rgba(255,255,255,0.9);
    position: relative;
}
.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    gap: 20px;
    position: relative;
}
.info-item .icon {
    font-size: 1.3rem;
    background: rgba(255,255,255,0.2);
    color: var(--white);
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: none;
    flex-shrink: 0;
}
.info-item .text strong {
    display: block;
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 3px;
    font-family: var(--font-heading);
}
.info-item .text p {
    margin: 0;
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
}

.contact-form-container {
    flex: 1.5;
    min-width: 300px;
    padding: 20px 10px;
}
.contact-form-container h2 {
    margin-bottom: 25px;
}
.form-group {
    margin-bottom: 25px;
    position: relative;
}
.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
}
.form-group input, .form-group textarea {
    width: 100%;
    padding: 18px 20px;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fcfcfc;
    box-shadow: inset 0 2px 5px rgba(0,0,0,0.01);
}
.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(209, 107, 68, 0.1);
}
.submit-btn {
    width: 100%;
    font-size: 1.1rem;
    padding: 18px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    border-radius: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 10px 20px rgba(209, 107, 68, 0.25);
    border: none;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}
.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(209, 107, 68, 0.4);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    animation: slideInLeft 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
.slide-in-right {
    animation: slideInRight 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    gap: 20px;
    position: relative;
    opacity: 0;
    animation: fadeUp 0.6s forwards;
}
.info-item:nth-child(1) { animation-delay: 0.2s; }
.info-item:nth-child(2) { animation-delay: 0.4s; }
.info-item:nth-child(3) { animation-delay: 0.6s; }
.info-item:nth-child(4) { animation-delay: 0.8s; }

@keyframes slideInLeft {
    0% { opacity: 0; transform: translateX(-50px); }
    100% { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
    0% { opacity: 0; transform: translateX(50px); }
    100% { opacity: 1; transform: translateX(0); }
}
@keyframes fadeUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}
@keyframes fadeOut {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(-10px); }
}
