/* ===== CSS VARIABLES ===== */
:root {
    --primary-color: #2d6a4f;
    --primary-light: #52b788;
    --primary-dark: #1b4332;
    --secondary-color: #d4a373;
    --accent-color: #e9c46a;
    --paan-color: #40916c;
    --kesar-color: #e9c46a;
    --gulkand-color: #e76f51;
    --text-dark: #2b2d42;
    --text-light: #8d99ae;
    --bg-light: #f8f9fa;
    --bg-cream: #fefae0;
    --white: #ffffff;
    --shadow: 0 10px 40px rgba(0,0,0,0.1);
    --shadow-hover: 0 20px 60px rgba(0,0,0,0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--white);
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    font-family: 'Playfair Display', serif;
}

.navbar.scrolled .logo { color: var(--primary-color); }

.logo i {
    font-size: 2rem;
    color: var(--accent-color);
}

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

.nav-links a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.navbar.scrolled .nav-links a { color: var(--text-dark); }

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

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

.btn-order {
    background: var(--accent-color);
    color: var(--text-dark) !important;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600 !important;
    transition: var(--transition);
}

.btn-order:hover {
    background: var(--secondary-color);
    color: var(--white) !important;
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

.navbar.scrolled .hamburger span { background: var(--text-dark); }

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.floating-scoops {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.scoop {
    position: absolute;
    font-size: 3rem;
    opacity: 0.1;
    animation: float 15s infinite;
    animation-delay: calc(var(--i) * 2s);
}

.scoop:nth-child(1) { top: 10%; left: 10%; }
.scoop:nth-child(2) { top: 20%; right: 10%; }
.scoop:nth-child(3) { bottom: 20%; left: 5%; }
.scoop:nth-child(4) { bottom: 30%; right: 15%; }
.scoop:nth-child(5) { top: 60%; left: 20%; }

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(10deg); }
}

.hero-content {
    flex: 1;
    padding: 0 100px;
    z-index: 2;
    animation: fadeInUp 1s ease;
}

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

.hero h1 {
    font-size: 4rem;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero h1 .highlight {
    color: var(--accent-color);
    display: block;
}

.tagline {
    font-size: 1.5rem;
    color: var(--primary-light);
    font-style: italic;
    margin-bottom: 15px;
}

.subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    max-width: 500px;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

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

.btn-primary:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(233, 196, 106, 0.3);
}

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

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.ice-cream-cone {
    position: relative;
    animation: bounce 3s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.cone {
    top: 80px;
    width: 0;
    height: 0;
    border-left: 65px solid transparent;
    border-right: 65px solid transparent;
    border-top: 230px solid var(--secondary-color);
    position: relative;
}

.scoop-top {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--paan-color), var(--primary-light));
    border-radius: 50%;
    position: absolute;
    left: 5px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.drip {
    position: absolute;
    width: 10px;
    height: 25px;
    background: var(--paan-color);
    border-radius: 0 0 10px 10px;
    top: 80px;
    left: 50px;
    animation: drip 2s infinite;
}

@keyframes drip {
    0%, 100% { height: 90px; }
    50% { height: 35px; }
}

.drip_two {
    position: absolute;
    width: 15px;
    height: 25px;
    background: var(--paan-color);
    border-radius: 0 0 10px 10px;
    top: 0px;
    left: -20px;
    animation: drip_two 2s infinite;
}

@keyframes drip_two {
    0%, 100% { height: 25px; }
    50% { height: 35px; }
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    text-align: center;
    animation: fadeInUp 1s ease 0.5s both;
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid var(--white);
    border-radius: 12px;
    margin: 0 auto 10px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--white);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(15px); }
}

/* ===== SECTION COMMON ===== */
section { padding: 80px 0; position: relative; }

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

.section-header.light { color: var(--white); }

.section-tag {
    display: inline-block;
    padding: 5px 20px;
    background: rgba(45, 106, 79, 0.1);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header.light .section-tag {
    background: rgba(255,255,255,0.2);
    color: var(--accent-color);
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.section-header.light h2 { color: var(--white); }

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* ===== ABOUT SECTION ===== */
.about { background: var(--bg-light); }

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

.about-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.about-card:nth-child(1) { animation-delay: 0.1s; }
.about-card:nth-child(2) { animation-delay: 0.2s; }
.about-card:nth-child(3) { animation-delay: 0.3s; }

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--white);
    transition: var(--transition);
}

.about-card:hover .icon { transform: rotateY(360deg); }

.about-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.about-card p { color: var(--text-light); }

/* ===== FLAVORS SECTION ===== */
.flavors {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.05) 0%, transparent 50%),
                      radial-gradient(circle at 80% 80%, rgba(255,255,255,0.05) 0%, transparent 50%);
    pointer-events: none;
}

.flavors-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.flavor-card {
    background: var(--white);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.flavor-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

.flavor-card.featured {
    transform: scale(1.05);
    border: 3px solid var(--accent-color);
}

.flavor-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 10;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.flavor-image {
    height: 250px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.flavor-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    animation: float 3s ease-in-out infinite;
}

.paan-bg { background: linear-gradient(135deg, var(--paan-color), #74c69d); }
.kesar-bg { background: linear-gradient(135deg, var(--kesar-color), #f4a261); }
.gulkand-bg { background: linear-gradient(135deg, var(--gulkand-color), #f4a261); }

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-elements span {
    position: absolute;
    font-size: 1.5rem;
    opacity: 0.6;
    animation: floatAround 10s infinite;
}

.leaf:nth-child(1) { top: 20%; left: 20%; animation-delay: 0s; }
.leaf:nth-child(2) { top: 60%; right: 20%; animation-delay: 2s; }
.leaf:nth-child(3) { bottom: 20%; left: 30%; animation-delay: 4s; }

.saffron:nth-child(1) { top: 30%; left: 15%; animation-delay: 1s; }
.saffron:nth-child(2) { top: 20%; right: 25%; animation-delay: 3s; }
.saffron:nth-child(3) { bottom: 30%; left: 20%; animation-delay: 5s; }

.rose:nth-child(1) { top: 25%; left: 25%; animation-delay: 0.5s; }
.rose:nth-child(2) { top: 65%; right: 15%; animation-delay: 2.5s; }
.rose:nth-child(3) { bottom: 25%; left: 35%; animation-delay: 4.5s; }

@keyframes floatAround {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(10px, -10px) rotate(5deg); }
    50% { transform: translate(-5px, 5px) rotate(-5deg); }
    75% { transform: translate(5px, 10px) rotate(3deg); }
}

.flavor-content { padding: 30px; }

.flavor-content h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.flavor-desc {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.flavor-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.tag {
    padding: 5px 12px;
    background: var(--bg-light);
    border-radius: 15px;
    font-size: 0.8rem;
    color: var(--text-dark);
    font-weight: 500;
}

.flavor-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.btn-flavor {
    padding: 10px 25px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-flavor:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

/* ===== PROCESS SECTION ===== */
.process { background: var(--bg-cream); }

.process-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    border-radius: 2px;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 2;
    flex: 1;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin: 0 auto 20px;
    box-shadow: var(--shadow);
    border: 4px solid var(--primary-light);
    transition: var(--transition);
}

.process-step:hover .step-icon {
    transform: scale(1.1) rotate(360deg);
    background: var(--primary-color);
    color: var(--white);
}

.process-step h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.process-step p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ===== GALLERY SECTION ===== */
.gallery { background: var(--white); }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item.wide { grid-column: span 2; }

.gallery-img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.gallery-icon {
    font-size: 4rem;
    opacity: 0.8;
    transition: var(--transition);
}

.gallery-item:hover .gallery-img { transform: scale(1.1); }
.gallery-item:hover .gallery-icon {
    transform: scale(1.2);
    opacity: 1;
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: var(--white);
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .overlay { transform: translateY(0); }

/* ===== TESTIMONIALS ===== */
.testimonials {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: var(--white);
}

.testimonial-slider {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.testimonial-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    display: none;
    animation: fadeIn 0.5s ease;
}

.testimonial-card.active { display: block; }

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

.stars {
    color: var(--accent-color);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.testimonial-card p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 30px;
    line-height: 1.8;
}

.customer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.customer-avatar {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.customer-info { text-align: left; }

.customer-info h4 { margin-bottom: 2px; }

.customer-info span {
    font-size: 0.9rem;
    opacity: 0.8;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--accent-color);
    transform: scale(1.2);
}

/* ===== CTA SECTION ===== */
.cta {
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--white) 100%);
    padding: 100px 0;
}

.cta .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.cta-content { flex: 1; }

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.cta-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 500px;
}

.btn-large {
    padding: 18px 45px;
    font-size: 1.1rem;
    background: var(--primary-color);
    color: var(--white);
}

.btn-large:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(45, 106, 79, 0.3);
}

.cta-decoration {
    flex: 0.5;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.floating-cone {
    font-size: 4rem;
    animation: float 3s ease-in-out infinite;
}

.floating-cone:nth-child(2) { animation-delay: 0.5s; }
.floating-cone:nth-child(3) { animation-delay: 1s; }

/* ===== FOOTER ===== */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 0 20px;
}

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

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent-color);
    color: var(--text-dark);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4,
.footer-hours h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.footer-links ul { list-style: none; }

.footer-links li { margin-bottom: 10px; }

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-contact p,
.footer-hours p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
}

/* ===== ORDER PAGE ===== */
.order-page {
    background: var(--bg-light);
    padding-top: 80px;
}

.order-section {
    padding: 60px 0;
    min-height: calc(100vh - 200px);
}

.order-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: start;
}

.order-info h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.order-desc {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.flavor-selection-preview {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
}

.flavor-selection-preview h3 {
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.mini-flavors {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mini-flavor {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px;
    border-radius: 10px;
    background: var(--bg-light);
}

.mini-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.mini-flavor span:nth-child(2) {
    flex: 1;
    font-weight: 600;
}

.mini-price {
    color: var(--primary-color);
    font-weight: 700;
}

.contact-info-box {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
}

.contact-info-box h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info-box ul { list-style: none; }

.contact-info-box li {
    padding: 8px 0;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info-box li i { color: var(--primary-color); }

.support-contact {
    background: var(--primary-color);
    color: var(--white);
    padding: 25px;
    border-radius: 15px;
}

.support-contact p { margin-bottom: 15px; }

.support-contact a {
    display: block;
    color: var(--accent-color);
    text-decoration: none;
    margin-bottom: 10px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.form-card h2 {
    margin-bottom: 30px;
    color: var(--text-dark);
}

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-section {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 25px;
}

.form-section h3 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.flavor-order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: var(--white);
    border-radius: 10px;
    margin-bottom: 10px;
}

.flavor-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.flavor-emoji {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.flavor-info div strong {
    display: block;
    color: var(--text-dark);
}

.flavor-info div span {
    font-size: 0.9rem;
    color: var(--text-light);
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 10px;
}

.qty-btn {
    width: 30px;
    height: 30px;
    border: none;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
}

.qty-btn:hover { background: var(--primary-dark); }

.quantity-selector input {
    width: 50px;
    text-align: center;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    padding: 5px;
}

.order-total {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 25px;
}

.total-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    color: var(--text-light);
}

.total-row.grand {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    border-top: 2px solid #ddd;
    padding-top: 10px;
    margin-top: 10px;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    font-size: 1.1rem;
    justify-content: center;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(45, 106, 79, 0.3);
}

.form-note {
    text-align: center;
    margin-top: 15px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.form-note i {
    color: var(--primary-color);
    margin-right: 5px;
}

.order-bg-decoration {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.floating-icon {
    position: absolute;
    font-size: 3rem;
    opacity: 0.1;
    animation: float 20s infinite;
}

.floating-icon:nth-child(1) { top: 10%; left: 5%; animation-delay: 0s; }
.floating-icon:nth-child(2) { top: 30%; right: 5%; animation-delay: 5s; }
.floating-icon:nth-child(3) { bottom: 30%; left: 10%; animation-delay: 10s; }
.floating-icon:nth-child(4) { bottom: 10%; right: 10%; animation-delay: 15s; }

.footer-simple {
    background: var(--text-dark);
    color: rgba(255,255,255,0.7);
    padding: 20px 0;
}

.footer-simple .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.back-link {
    color: var(--accent-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.back-link:hover { color: var(--white); }

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 120px;
    }
    .hero-content { margin-bottom: 50px; }
    .hero h1 { font-size: 2.5rem; }
    .subtitle { margin: 0 auto 30px; }
    .hero-buttons { justify-content: center; }
    .hamburger { display: flex; }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        box-shadow: var(--shadow);
        transform: translateY(-150%);
        transition: var(--transition);
    }

    .nav-links.active { transform: translateY(0); }
    .nav-links a { color: var(--text-dark) !important; }
    .flavors-container { grid-template-columns: 1fr; }
    .flavor-card.featured { transform: scale(1); }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 200px);
    }

    .gallery-item.large {
        grid-column: span 2;
        grid-row: span 1;
    }

    .cta .container {
        flex-direction: column;
        text-align: center;
    }

    .footer-grid { grid-template-columns: 1fr 1fr; }
    .order-grid { grid-template-columns: 1fr; }

    .process-timeline {
        flex-direction: column;
        gap: 30px;
    }

    .timeline-line { display: none; }
}

@media (max-width: 600px) {
    .hero h1 { font-size: 2rem; }
    .section-header h2 { font-size: 1.8rem; }
    .about-grid { grid-template-columns: 1fr; }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 200px);
    }

    .gallery-item.large,
    .gallery-item.wide {
        grid-column: span 1;
        grid-row: span 1;
    }

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

    .flavor-order-item {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-simple .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}
