/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
    --primary: #F15A24;
    --secondary: #F9C74F;
    --accent: #577590;
    --dark: #1a1a1a;
    --gray: #666666;
    --light-gray: #f5f5f5;
    --white: #FFFFFF;
    --success: #28a745;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --radius: 8px;
    --radius-lg: 16px;
    --radius-full: 50px;
    --transition: all 0.3s ease;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--white); color: var(--dark); line-height: 1.6; overflow-x: hidden; padding-top: 125px; }

.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: var(--dark);
    color: var(--white);
    padding: 8px 0;
    font-size: 0.85rem;
    height: 45px;
}

.page-hero {
    position: relative;
    padding: 120px 20px;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.75) 0%, rgba(87, 117, 144, 0.7) 100%);
    z-index: 1;
}
.page-hero .container { 
    position: relative; 
    z-index: 2; 
}
.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}
.top-bar-left {
    display: flex;
    align-items: center;
    gap: clamp(16px, 3vw, 32px);
    flex-wrap: wrap;
}
.top-bar-left a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}
.top-bar-left a:hover { color: var(--primary); }
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 12px;
}
.top-bar-right a {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}
.top-bar-right a:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

/* ============================================
   LAYOUT
   ============================================ */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 clamp(16px, 4vw, 32px); }
.section { padding: clamp(60px, 10vw, 100px) 0; }
.section-title { text-align: center; margin-bottom: clamp(40px, 6vw, 64px); }
.section-title h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); margin-bottom: 16px; }
.section-title p { font-size: clamp(1rem, 2vw, 1.1rem); color: var(--gray); max-width: 600px; margin: 0 auto; }

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
    position: fixed;
    top: 45px;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0;
    transition: all 0.3s ease;
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}
.header.scrolled {
    top: 45px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 0;
}
.nav-logo img { 
    height: 90px; 
    width: auto; 
    border-radius: var(--radius); 
}
.nav-menu { display: flex; align-items: center; gap: clamp(20px, 3vw, 40px); }
.nav-menu li a {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: clamp(1rem, 1.5vw, 1.1rem);
    color: var(--dark);
    padding: 8px 4px;
    text-decoration: none;
}
.nav-menu li a:hover,
.nav-menu li a.active { color: var(--primary); }

.nav-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #25D366;
    color: var(--white);
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
}
.nav-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    background: none;
    cursor: pointer;
    border: none;
}
.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    border-radius: 3px;
    transition: var(--transition);
}

/* ============================================
   FLOATING BUTTONS
   ============================================ */
.floating-buttons {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}
.floating-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}
.floating-btn:hover {
    transform: scale(1.1);
}
.floating-btn.whatsapp {
    background: #25D366;
}
.floating-btn.whatsapp:hover {
    background: #128C7E;
}
.floating-btn.email {
    background: var(--primary);
}
.floating-btn.email:hover {
    background: #d94e1a;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: clamp(10px, 2vw, 12px) clamp(20px, 3vw, 32px);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    border-radius: var(--radius);
    transition: var(--transition);
    min-height: 44px;
    cursor: pointer;
    border: none;
}
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: #d94e1a; transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-secondary { background: var(--accent); color: var(--white); }
.btn-secondary:hover { background: #4a6580; transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); }
.btn-whatsapp { background: #25D366; color: var(--white); }
.btn-whatsapp:hover { background: #128C7E; transform: translateY(-2px); }
.btn-white { background: var(--white); color: var(--primary); }
.btn-white:hover { background: var(--secondary); color: var(--dark); }
.btn-white-outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-white-outline:hover { background: var(--white); color: var(--primary); }

/* ============================================
   HERO SECTION (Home)
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #fff5f0 0%, #fff9e6 100%);
    overflow: hidden;
    padding-top: 120px;
}
.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 60%;
    height: 120%;
    background: radial-gradient(circle, rgba(241, 90, 36, 0.1) 0%, transparent 70%);
    animation: heroFloat 8s ease-in-out infinite;
}
@keyframes heroFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 6vw, 64px);
    align-items: center;
    position: relative;
    z-index: 2;
}
.hero-badge {
    display: inline-block;
    background: var(--secondary);
    color: var(--dark);
    padding: 8px 24px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
}
.hero h1 {
    font-size: clamp(2rem, 6vw, 4rem);
    margin-bottom: 24px;
    line-height: 1.1;
}
.hero h1 span { color: var(--primary); }
.hero-text {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--gray);
    margin-bottom: clamp(24px, 4vw, 40px);
    max-width: 500px;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.hero-image {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    animation: heroBounce 6s ease-in-out infinite;
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; }
@keyframes heroBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}
.hero-float {
    position: absolute;
    background: var(--white);
    padding: clamp(12px, 2vw, 16px) clamp(16px, 2vw, 20px);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}
.hero-float-1 { top: 10%; right: 0; animation: float1 5s ease-in-out infinite; }
.hero-float-2 { bottom: 15%; left: 0; animation: float2 5s ease-in-out infinite; }
@keyframes float1 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
@keyframes float2 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* ============================================
   PAGE HERO (Inner Pages)
   ============================================ */
.page-hero {
    position: relative;
    padding: 80px 0 80px;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(87, 117, 144, 0.5) 0%, rgba(61, 90, 122, 0.5) 100%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 16px;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.page-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ============================================
   STATS
   ============================================ */
.stats { background: var(--accent); padding: clamp(40px, 6vw, 64px) 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 3vw, 32px); }
.stat-item { text-align: center; color: var(--white); padding: clamp(16px, 2vw, 24px); }
.stat-icon {
    width: clamp(50px, 8vw, 60px);
    height: clamp(50px, 8vw, 60px);
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.5rem;
}
.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--secondary);
}
.stat-label { font-size: clamp(0.85rem, 1.5vw, 0.95rem); opacity: 0.9; }

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 64px); align-items: center; }
.about-image { position: relative; }
.about-image img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--secondary);
    color: var(--dark);
    padding: clamp(16px, 2vw, 20px);
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
}
.about-badge span { display: block; font-family: var(--font-heading); font-weight: 700; font-size: clamp(1.5rem, 3vw, 2rem); }
.about-badge small { font-size: 0.85rem; }
.about-content h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); margin-bottom: clamp(16px, 2vw, 24px); }
.about-content h2 span { color: var(--primary); }
.about-content p { color: var(--gray); margin-bottom: clamp(12px, 2vw, 16px); }
.about-steps { margin-top: clamp(24px, 4vw, 40px); }
.about-step { display: flex; gap: clamp(12px, 2vw, 16px); margin-bottom: clamp(16px, 2vw, 24px); }
.about-step-num {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}
.about-step h4 { font-size: clamp(1rem, 2vw, 1.1rem); margin-bottom: 4px; }
.about-step p { font-size: clamp(0.85rem, 1.5vw, 0.95rem); color: var(--gray); margin: 0; }

/* ============================================
   PRODUCTS / MENU
   ============================================ */
.products { background: var(--light-gray); }
.products-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: clamp(20px, 3vw, 32px); }
.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow);
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.product-image { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.product-card:hover .product-image img { transform: scale(1.1); }
.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary);
    color: var(--white);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}
.product-content { padding: clamp(16px, 2vw, 24px); }
.product-category { font-size: 0.85rem; color: var(--primary); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.product-content h3 { font-size: clamp(1.2rem, 2vw, 1.4rem); margin: 8px 0; }
.product-content p { color: var(--gray); font-size: clamp(0.95rem, 1.5vw, 1rem); margin-bottom: 16px; }
.product-price { margin-bottom: 16px; }
.price-usd { font-family: var(--font-heading); font-size: clamp(1.2rem, 2vw, 1.4rem); font-weight: 700; color: var(--primary); }
.price-tsh { display: block; font-size: clamp(0.9rem, 1.5vw, 1rem); color: var(--gray); font-weight: 500; }

.menu-filters { display: flex; gap: clamp(8px, 2vw, 16px); justify-content: center; margin-bottom: clamp(32px, 5vw, 48px); flex-wrap: wrap; }
.filter-btn {
    padding: 12px 28px;
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active { background: var(--primary); color: var(--white); border-color: var(--primary); }

/* ============================================
   FEATURES
   ============================================ */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: clamp(20px, 3vw, 32px); }
.feature-card {
    background: var(--light-gray);
    padding: clamp(24px, 3vw, 32px);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
}
.feature-card:hover { background: var(--white); box-shadow: var(--shadow); transform: translateY(-5px); }
.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.8rem;
    color: var(--white);
}
.feature-card h3 { font-size: clamp(1rem, 2vw, 1.15rem); margin-bottom: 8px; }
.feature-card p { color: var(--gray); font-size: clamp(0.85rem, 1.5vw, 0.95rem); }

/* ============================================
   GALLERY
   ============================================ */
.gallery-section { padding: clamp(60px, 10vw, 80px) 0; background: var(--white); }
.gallery-filters { display: flex; gap: clamp(8px, 2vw, 12px); justify-content: center; margin-bottom: clamp(32px, 5vw, 48px); flex-wrap: wrap; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: clamp(16px, 3vw, 24px); }
.gallery-item {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: clamp(16px, 3vw, 24px);
    opacity: 0;
    transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay h3 { color: var(--white); font-size: clamp(1rem, 2vw, 1.2rem); margin-bottom: 8px; }
.gallery-overlay p { color: rgba(255, 255, 255, 0.9); font-size: clamp(0.8rem, 1.5vw, 0.9rem); margin-bottom: 8px; }
.gallery-price {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 6px 12px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: clamp(0.75rem, 1.3vw, 0.85rem);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, var(--primary), #d94e1a);
    padding: clamp(60px, 10vw, 80px) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 50%);
    animation: ctaPulse 15s linear infinite;
}
@keyframes ctaPulse { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
.cta-content { position: relative; z-index: 2; }
.cta-content h2 { color: var(--white); font-size: clamp(1.8rem, 4vw, 2.5rem); margin-bottom: 16px; }
.cta-content > p { color: rgba(255, 255, 255, 0.9); font-size: clamp(1rem, 2vw, 1.1rem); margin-bottom: clamp(24px, 4vw, 32px); max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; gap: clamp(12px, 2vw, 16px); justify-content: center; flex-wrap: wrap; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: clamp(20px, 3vw, 32px); }
.testimonial-card { background: var(--light-gray); padding: clamp(24px, 3vw, 32px); border-radius: var(--radius-lg); position: relative; }
.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: clamp(3rem, 6vw, 5rem);
    color: var(--primary);
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}
.testimonial-stars { color: var(--secondary); margin-bottom: 16px; font-size: 0.9rem; }
.testimonial-text { font-size: clamp(0.95rem, 1.8vw, 1.05rem); color: var(--gray); margin-bottom: 24px; font-style: italic; line-height: 1.7; }
.testimonial-author { display: flex; align-items: center; gap: clamp(12px, 2vw, 16px); }
.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
}
.testimonial-name { font-weight: 600; font-family: var(--font-heading); }
.testimonial-role { font-size: 0.85rem; color: var(--gray); }

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section { padding: clamp(60px, 10vw, 80px) 0; background: var(--light-gray); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: clamp(32px, 5vw, 48px); }
.contact-info { display: flex; flex-direction: column; gap: clamp(16px, 3vw, 24px); }
.contact-card { background: var(--white); padding: clamp(20px, 3vw, 24px); border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.contact-icon {
    width: clamp(48px, 7vw, 56px);
    height: clamp(48px, 7vw, 56px);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--white);
}
.contact-card h3 { font-size: clamp(1rem, 2vw, 1.1rem); margin-bottom: 8px; }
.contact-card p { color: var(--gray); font-size: clamp(0.85rem, 1.5vw, 0.95rem); margin-bottom: 4px; }
.contact-note { font-size: 0.85rem; color: var(--accent); }

.whatsapp-card { background: linear-gradient(135deg, #25D366, #128C7E); color: var(--white); }
.whatsapp-card .contact-icon { background: var(--white); color: #25D366; }
.whatsapp-card p { color: rgba(255, 255, 255, 0.9); }
.whatsapp-card .btn-whatsapp { margin-top: 12px; background: var(--white); color: #25D366; }
.whatsapp-card .btn-whatsapp:hover { background: var(--secondary); color: var(--dark); }

.contact-form-wrapper { background: var(--white); padding: clamp(24px, 4vw, 40px); border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.contact-form-wrapper h2 { font-size: clamp(1.3rem, 2.5vw, 1.5rem); margin-bottom: clamp(24px, 4vw, 32px); text-align: center; }
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(12px, 2vw, 16px); }
.form-group { margin-bottom: clamp(16px, 2.5vw, 20px); }
.form-group label { display: block; margin-bottom: 8px; font-weight: 600; font-size: 0.95rem; color: var(--dark); }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: clamp(12px, 2vw, 14px) clamp(14px, 2vw, 16px);
    border: 2px solid #e0e0e0;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    transition: var(--transition);
    background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(241, 90, 36, 0.1);
}
.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23666666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 18px;
    padding-right: 40px;
}
.btn-submit { width: 100%; padding: clamp(14px, 2vw, 16px) clamp(24px, 3vw, 32px); font-size: clamp(0.9rem, 1.5vw, 1rem); }
.form-success { display: none; text-align: center; padding: clamp(24px, 4vw, 40px); }
.form-success svg { color: var(--success); margin-bottom: 24px; }
.form-success h3 { font-size: clamp(1.3rem, 2.5vw, 1.5rem); margin-bottom: 12px; color: var(--success); }
.form-success p { color: var(--gray); }

/* ============================================
   MAP SECTION
   ============================================ */
.map-section { padding: clamp(60px, 10vw, 80px) 0; background: var(--white); }
.map-section h2 { text-align: center; font-size: clamp(1.8rem, 4vw, 2.5rem); margin-bottom: 16px; }
.map-subtitle { text-align: center; color: var(--gray); margin-bottom: clamp(32px, 5vw, 48px); }
.map-wrapper { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section { padding: clamp(60px, 10vw, 80px) 0; background: var(--light-gray); }
.faq-section h2 { text-align: center; font-size: clamp(1.8rem, 4vw, 2.5rem); margin-bottom: clamp(32px, 5vw, 48px); }
.faq-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: clamp(16px, 3vw, 24px); }
.faq-item { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow); overflow: hidden; transition: var(--transition); }
.faq-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.faq-question { display: flex; justify-content: space-between; align-items: center; padding: clamp(20px, 3vw, 28px); cursor: pointer; }
.faq-question h3 { font-size: clamp(0.95rem, 2vw, 1.05rem); margin: 0; color: var(--primary); flex: 1; }
.faq-icon { font-size: 1.5rem; font-weight: 700; color: var(--primary); transition: var(--transition); margin-left: 12px; }
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; }
.faq-answer p { color: var(--gray); font-size: clamp(0.85rem, 1.5vw, 0.95rem); line-height: 1.7; padding: 0 clamp(20px, 3vw, 28px) clamp(20px, 3vw, 28px); margin: 0; }
.faq-item.active .faq-answer { max-height: 300px; }

/* ============================================
   NEWSLETTER SECTION
   ============================================ */
.newsletter-section { background: linear-gradient(135deg, var(--accent), #3d5a80); padding: clamp(60px, 10vw, 80px) 0; }
.newsletter-content { text-align: center; max-width: 600px; margin: 0 auto; }
.newsletter-content h2 { color: var(--white); font-size: clamp(1.8rem, 4vw, 2.5rem); margin-bottom: 16px; }
.newsletter-content p { color: rgba(255, 255, 255, 0.9); margin-bottom: clamp(24px, 4vw, 32px); }
.newsletter-form { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.newsletter-form input { flex: 1; min-width: 250px; padding: clamp(12px, 2vw, 16px) clamp(16px, 2vw, 20px); border: none; border-radius: var(--radius); font-size: clamp(0.9rem, 1.5vw, 1rem); }
.newsletter-form button { padding: clamp(12px, 2vw, 16px) clamp(24px, 3vw, 32px); background: var(--primary); color: var(--white); border: none; border-radius: var(--radius); font-family: var(--font-heading); font-weight: 600; font-size: clamp(0.9rem, 1.5vw, 1rem); cursor: pointer; transition: var(--transition); }
.newsletter-form button:hover { background: #d94e1a; transform: translateY(-2px); }
.newsletter-success { display: none; color: var(--secondary); font-weight: 600; margin-top: 16px; }

/* ============================================
   CART SYSTEM
   ============================================ */
.cart-icon { position: relative; cursor: pointer; }
.cart-count { position: absolute; top: -8px; right: -8px; background: var(--primary); color: var(--white); font-size: 0.7rem; font-weight: 700; width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.cart-count.hidden { display: none; }
.cart-sidebar { position: fixed; top: 0; right: -400px; width: 400px; max-width: 90vw; height: 100vh; background: var(--white); box-shadow: -5px 0 30px rgba(0,0,0,0.2); z-index: 2000; transition: right 0.3s ease; display: flex; flex-direction: column; }
.cart-sidebar.open { right: 0; }
.cart-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 1999; opacity: 0; visibility: hidden; transition: var(--transition); }
.cart-overlay.open { opacity: 1; visibility: visible; }
.cart-header { padding: 20px; border-bottom: 1px solid var(--light-gray); display: flex; justify-content: space-between; align-items: center; }
.cart-header h3 { font-size: 1.2rem; }
.cart-close { background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--gray); }
.cart-items { flex: 1; overflow-y: auto; padding: 20px; }
.cart-item { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--light-gray); }
.cart-item-image { width: 60px; height: 60px; border-radius: var(--radius); overflow: hidden; flex-shrink: 0; }
.cart-item-image img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-details { flex: 1; }
.cart-item-details h4 { font-size: 0.95rem; margin-bottom: 4px; }
.cart-item-details .cart-item-price { color: var(--primary); font-weight: 600; }
.cart-item-qty { display: flex; align-items: center; gap: 8px; margin-top: 8px; }
.cart-item-qty button { width: 28px; height: 28px; border: 1px solid var(--light-gray); background: var(--white); border-radius: 4px; cursor: pointer; font-weight: 600; }
.cart-item-qty span { min-width: 24px; text-align: center; }
.cart-item-remove { background: none; border: none; color: var(--primary); cursor: pointer; font-size: 0.85rem; margin-top: 8px; }
.cart-footer { padding: 20px; border-top: 1px solid var(--light-gray); background: var(--light-gray); }
.cart-total { display: flex; justify-content: space-between; font-size: 1.1rem; font-weight: 700; margin-bottom: 16px; }
.cart-total-amount { color: var(--primary); }
.btn-checkout { width: 100%; padding: 14px; background: #25D366; color: var(--white); border: none; border-radius: var(--radius); font-family: var(--font-heading); font-weight: 600; font-size: 1rem; cursor: pointer; transition: var(--transition); display: flex; align-items: center; justify-content: center; gap: 8px; }
.btn-checkout:hover { background: #128C7E; }
.btn-clear-cart { width: 100%; padding: 12px; background: var(--white); color: var(--primary); border: 2px solid var(--primary); border-radius: var(--radius); font-family: var(--font-heading); font-weight: 600; cursor: pointer; transition: var(--transition); margin-top: 8px; }
.btn-clear-cart:hover { background: var(--primary); color: var(--white); }
.cart-empty { text-align: center; padding: 40px 20px; color: var(--gray); }
.cart-empty svg { margin-bottom: 16px; opacity: 0.5; }

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,0.95); z-index: 3000; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: var(--transition); }
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox-content { max-width: 90vw; max-height: 90vh; }
.lightbox-content img { max-width: 100%; max-height: 85vh; border-radius: var(--radius); }
.lightbox-close { position: absolute; top: 20px; right: 20px; background: none; border: none; color: var(--white); font-size: 2rem; cursor: pointer; }
.lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.2); border: none; color: var(--white); width: 50px; height: 50px; border-radius: 50%; cursor: pointer; font-size: 1.5rem; transition: var(--transition); }
.lightbox-nav:hover { background: var(--primary); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-caption { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); color: var(--white); text-align: center; }
.lightbox-caption h4 { font-size: 1.2rem; margin-bottom: 4px; }
.lightbox-caption p { opacity: 0.8; }

/* ============================================
   ABOUT PAGE SPECIFIC
   ============================================ */
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 64px); align-items: center; }
.story-image img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.story-content h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: clamp(16px, 2vw, 24px); }
.story-content p { color: var(--gray); margin-bottom: clamp(12px, 2vw, 16px); line-height: 1.8; }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 32px); }
.value-card {
    background: var(--white);
    padding: clamp(32px, 4vw, 40px) clamp(24px, 3vw, 32px);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.value-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2rem;
    color: var(--white);
}
.value-card h3 { font-size: clamp(1rem, 2vw, 1.2rem); margin-bottom: 12px; }
.value-card p { color: var(--gray); font-size: clamp(0.85rem, 1.5vw, 0.95rem); }

.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: clamp(20px, 3vw, 32px); }
.team-card { text-align: center; }
.team-image { width: 200px; height: 200px; border-radius: 50%; overflow: hidden; margin: 0 auto 20px; box-shadow: var(--shadow); }
.team-image img { width: 100%; height: 100%; object-fit: cover; }
.team-card h3 { font-size: clamp(1rem, 2vw, 1.2rem); margin-bottom: 4px; }
.team-card p { color: var(--primary); font-weight: 500; }

.timeline { position: relative; max-width: 800px; margin: 0 auto; }
.timeline::before { content: ''; position: absolute; left: 50%; transform: translateX(-50%); width: 2px; height: 100%; background: var(--primary); }
.timeline-item { position: relative; margin-bottom: 48px; display: flex; }
.timeline-item:nth-child(odd) { flex-direction: row-reverse; }
.timeline-content {
    width: 45%;
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}
.timeline-year {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-weight: 700;
}

/* ============================================
   FOOTER
   ============================================ */
.footer { background: var(--dark); color: var(--white); padding-top: clamp(60px, 8vw, 80px); }
.footer-content { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: clamp(24px, 4vw, 48px); padding-bottom: clamp(40px, 6vw, 64px); }
.footer-brand img { height: 60px; margin-bottom: 16px; }
.footer-brand p { color: rgba(255, 255, 255, 0.7); margin-bottom: 24px; line-height: 1.7; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--white);
}
.footer-social a:hover { background: var(--primary); transform: translateY(-3px); }
.footer-column h4 { color: var(--white); font-size: clamp(1rem, 2vw, 1.1rem); margin-bottom: clamp(16px, 2vw, 24px); }
.footer-column ul li { margin-bottom: clamp(10px, 1.5vw, 12px); }
.footer-column ul li a { color: rgba(255, 255, 255, 0.7); font-size: clamp(0.85rem, 1.5vw, 0.95rem); text-decoration: none; }
.footer-column ul li a:hover { color: var(--primary); }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); padding: 24px 0; text-align: center; }
.footer-bottom p { color: rgba(255, 255, 255, 0.5); font-size: clamp(0.8rem, 1.5vw, 0.9rem); }

/* ============================================
   ANIMATIONS
   ============================================ */
.animate { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.animate.visible { opacity: 1; transform: translateY(0); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
    .top-bar-content { flex-direction: column; text-align: center; }
    .top-bar-left { justify-content: center; }
    .top-bar-right { justify-content: center; }
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-text { margin: 0 auto 40px; }
    .hero-buttons { justify-content: center; }
    .hero-visual { display: none; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; }
    .about-badge { bottom: 10px; right: 10px; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr 1fr; }
    .story-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .timeline::before { left: 20px; }
    .timeline-item { flex-direction: column !important; }
    .timeline-content { width: calc(100% - 50px); margin-left: 50px; }
    .timeline-year { left: 20px; transform: translateX(-50%); }
    
    .nav-toggle { display: flex; }
    .nav-menu { 
        display: none; 
        position: fixed; 
        top: 0; 
        right: -100%; 
        width: 80%; 
        max-width: 320px; 
        height: 100vh; 
        background: var(--white); 
        flex-direction: column; 
        padding: 100px 32px; 
        gap: 8px; 
        box-shadow: var(--shadow-lg); 
        transition: var(--transition);
        z-index: 1001;
    }
    .nav-menu.active { right: 0; display: flex; }
    .nav-menu li a { font-size: 1.1rem; display: block; padding: 12px 0; border-bottom: 1px solid var(--light-gray); }
    .nav-whatsapp { display: none; }
    
    .floating-buttons { bottom: 16px; right: 16px; }
    .floating-btn { width: 50px; height: 50px; }
}

@media (max-width: 768px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .values-grid { grid-template-columns: 1fr; }
}

@media (max-width: 576px) {
    .stats-grid { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr; text-align: center; }
    .footer-social { justify-content: center; }
    .products-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .contact-form .form-row { grid-template-columns: 1fr; }
    .hero { min-height: auto; padding: 120px 0 60px; }
}
