/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: #1a1a2e; background: #fff; line-height: 1.6; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ===== VARIABLES ===== */
:root {
    --primary: #e63946;
    --primary-dark: #c1121f;
    --secondary: #1a1a2e;
    --accent: #f4a261;
    --light: #f8f9fa;
    --gray: #6c757d;
    --border: #e9ecef;
    --shadow: 0 4px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 48px rgba(0,0,0,0.14);
    --radius: 12px;
    --radius-lg: 20px;
}

/* ===== UTILITIES ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 90px 0; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; color: var(--secondary); margin-bottom: 12px; }
.section-header p { font-size: 1.1rem; color: var(--gray); max-width: 560px; margin: 0 auto; }
.tag { display: inline-block; background: rgba(230,57,70,0.1); color: var(--primary); font-size: 0.8rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; padding: 6px 16px; border-radius: 50px; margin-bottom: 14px; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; border-radius: 50px; font-weight: 600; font-size: 0.95rem; cursor: pointer; border: none; transition: all 0.3s ease; }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(230,57,70,0.35); }
.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }
.btn-white { background: #fff; color: var(--primary); }
.btn-white:hover { background: var(--light); transform: translateY(-2px); }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ===== NAVBAR ===== */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 18px 0; transition: all 0.3s ease; }
.navbar.scrolled { background: #fff; box-shadow: 0 2px 20px rgba(0,0,0,0.1); padding: 12px 0; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.logo { font-size: 1.6rem; font-weight: 800; color: #fff; transition: color 0.3s; }
.navbar.scrolled .logo { color: var(--secondary); }
.logo-x { color: var(--primary); }
.logo-tag { color: var(--accent); }
.navbar.scrolled .logo-tag { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links a { padding: 8px 16px; border-radius: 50px; font-weight: 500; font-size: 0.95rem; color: rgba(255,255,255,0.9); transition: all 0.3s; }
.navbar.scrolled .nav-links a { color: var(--secondary); }
.nav-links a:hover, .nav-links a.active { color: var(--primary); background: rgba(230,57,70,0.08); }
.nav-cta { background: var(--primary) !important; color: #fff !important; padding: 10px 24px !important; }
.nav-cta:hover { background: var(--primary-dark) !important; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s; }
.navbar.scrolled .nav-toggle span { background: var(--secondary); }

/* ===== HERO ===== */
.hero { min-height: 100vh; background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%); display: flex; align-items: center; position: relative; overflow: hidden; padding-top: 80px; }
.hero::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.hero-blob { position: absolute; width: 600px; height: 600px; background: radial-gradient(circle, rgba(230,57,70,0.15) 0%, transparent 70%); right: -100px; top: 50%; transform: translateY(-50%); border-radius: 50%; }
.hero-content { position: relative; z-index: 1; max-width: 680px; }
.hero-content .tag { background: rgba(230,57,70,0.2); color: #ff8fa3; }
.hero h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; color: #fff; line-height: 1.15; margin-bottom: 20px; }
.hero h1 span { color: var(--primary); }
.hero p { font-size: 1.15rem; color: rgba(255,255,255,0.75); margin-bottom: 36px; max-width: 520px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 48px; margin-top: 60px; }
.stat h3 { font-size: 2rem; font-weight: 800; color: #fff; }
.stat h3 span { color: var(--primary); }
.stat p { font-size: 0.85rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 1px; }

/* ===== MARQUEE ===== */
.marquee-section { background: var(--primary); padding: 16px 0; overflow: hidden; }
.marquee-track { display: flex; gap: 48px; animation: marquee 20s linear infinite; white-space: nowrap; }
.marquee-track span { color: #fff; font-weight: 600; font-size: 0.9rem; letter-spacing: 1px; text-transform: uppercase; display: flex; align-items: center; gap: 12px; }
.marquee-track span::after { content: '✦'; opacity: 0.6; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== SERVICES ===== */
.services { background: var(--light); }
.service-card { background: #fff; border-radius: var(--radius-lg); padding: 36px 28px; text-align: center; box-shadow: var(--shadow); transition: all 0.3s ease; border: 1px solid var(--border); }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--primary); }
.service-icon { width: 72px; height: 72px; background: linear-gradient(135deg, rgba(230,57,70,0.1), rgba(244,162,97,0.1)); border-radius: 20px; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 1.8rem; color: var(--primary); transition: all 0.3s; }
.service-card:hover .service-icon { background: var(--primary); color: #fff; }
.service-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; }
.service-card p { color: var(--gray); font-size: 0.9rem; }

/* ===== PRODUCTS ===== */
.product-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: all 0.3s ease; border: 1px solid var(--border); }
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-img { height: 200px; background: linear-gradient(135deg, #f0f4ff, #e8f0fe); display: flex; align-items: center; justify-content: center; font-size: 3.5rem; position: relative; overflow: hidden; }
.product-badge { position: absolute; top: 12px; left: 12px; background: var(--primary); color: #fff; font-size: 0.72rem; font-weight: 700; padding: 4px 10px; border-radius: 50px; text-transform: uppercase; }
.product-info { padding: 20px; }
.product-info h3 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.product-info p { color: var(--gray); font-size: 0.85rem; margin-bottom: 14px; }
.product-footer { display: flex; align-items: center; justify-content: space-between; }
.price { font-size: 1.1rem; font-weight: 700; color: var(--primary); }
.price span { font-size: 0.75rem; color: var(--gray); font-weight: 400; }
.btn-sm { padding: 8px 18px; font-size: 0.82rem; border-radius: 50px; background: var(--primary); color: #fff; font-weight: 600; border: none; cursor: pointer; transition: all 0.3s; }
.btn-sm:hover { background: var(--primary-dark); }

/* ===== WHY US ===== */
.why-us { background: var(--secondary); }
.why-us .section-header h2 { color: #fff; }
.why-us .section-header p { color: rgba(255,255,255,0.6); }
.why-card { text-align: center; padding: 32px 20px; }
.why-icon { width: 64px; height: 64px; background: rgba(230,57,70,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-size: 1.5rem; color: var(--primary); }
.why-card h3 { color: #fff; font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.why-card p { color: rgba(255,255,255,0.55); font-size: 0.88rem; }

/* ===== CORPORATE GIFTING ===== */
.corporate-hero { background: linear-gradient(135deg, #1a1a2e, #0f3460); padding: 140px 0 90px; }
.corporate-hero h1 { color: #fff; font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800; margin-bottom: 16px; }
.corporate-hero p { color: rgba(255,255,255,0.7); font-size: 1.1rem; max-width: 560px; }
.gift-category { background: #fff; border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow); border-left: 4px solid var(--primary); margin-bottom: 24px; display: flex; gap: 24px; align-items: flex-start; transition: all 0.3s; }
.gift-category:hover { transform: translateX(6px); box-shadow: var(--shadow-lg); }
.gift-cat-icon { font-size: 2.5rem; flex-shrink: 0; }
.gift-category h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; }
.gift-category p { color: var(--gray); font-size: 0.9rem; }
.gift-items { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.gift-tag { background: var(--light); color: var(--secondary); font-size: 0.78rem; padding: 4px 12px; border-radius: 50px; font-weight: 500; }
.process-step { text-align: center; padding: 24px; position: relative; }
.step-num { width: 52px; height: 52px; background: var(--primary); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; font-weight: 800; margin: 0 auto 16px; }
.process-step h3 { font-weight: 700; margin-bottom: 8px; }
.process-step p { color: var(--gray); font-size: 0.88rem; }

/* ===== ABOUT ===== */
.about-hero { background: linear-gradient(135deg, #1a1a2e, #0f3460); padding: 140px 0 90px; text-align: center; }
.about-hero h1 { color: #fff; font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800; margin-bottom: 16px; }
.about-hero p { color: rgba(255,255,255,0.7); font-size: 1.1rem; max-width: 560px; margin: 0 auto; }
.about-story { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-visual { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); border-radius: var(--radius-lg); padding: 60px 40px; text-align: center; color: #fff; }
.about-visual .big-num { font-size: 5rem; font-weight: 800; line-height: 1; }
.about-visual p { font-size: 1rem; opacity: 0.85; margin-top: 8px; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 24px; }
.about-stat { background: rgba(255,255,255,0.15); border-radius: var(--radius); padding: 20px; }
.about-stat h4 { font-size: 1.8rem; font-weight: 800; }
.about-stat p { font-size: 0.8rem; opacity: 0.8; }
.about-text h2 { font-size: 2rem; font-weight: 800; margin-bottom: 16px; }
.about-text p { color: var(--gray); margin-bottom: 16px; }
.value-item { display: flex; gap: 16px; margin-bottom: 20px; align-items: flex-start; }
.value-icon { width: 44px; height: 44px; background: rgba(230,57,70,0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 1.1rem; flex-shrink: 0; }
.value-item h4 { font-weight: 700; margin-bottom: 4px; }
.value-item p { color: var(--gray); font-size: 0.88rem; }
.team-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); text-align: center; transition: all 0.3s; }
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.team-avatar { height: 180px; display: flex; align-items: center; justify-content: center; font-size: 4rem; background: linear-gradient(135deg, #f0f4ff, #e8f0fe); }
.team-card h3 { font-weight: 700; padding: 16px 16px 4px; }
.team-card p { color: var(--primary); font-size: 0.85rem; font-weight: 600; padding-bottom: 16px; }

/* ===== CONTACT ===== */
.contact-hero { background: linear-gradient(135deg, #1a1a2e, #0f3460); padding: 140px 0 90px; text-align: center; }
.contact-hero h1 { color: #fff; font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800; margin-bottom: 16px; }
.contact-hero p { color: rgba(255,255,255,0.7); font-size: 1.1rem; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 48px; align-items: start; }
.contact-info-card { background: var(--secondary); border-radius: var(--radius-lg); padding: 40px; color: #fff; }
.contact-info-card h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 8px; }
.contact-info-card > p { color: rgba(255,255,255,0.6); margin-bottom: 32px; font-size: 0.9rem; }
.info-item { display: flex; gap: 16px; margin-bottom: 24px; align-items: flex-start; }
.info-icon { width: 44px; height: 44px; background: rgba(230,57,70,0.2); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 1rem; flex-shrink: 0; }
.info-item h4 { font-size: 0.8rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.info-item p, .info-item a { color: #fff; font-size: 0.95rem; }
.contact-form-card { background: #fff; border-radius: var(--radius-lg); padding: 48px; box-shadow: var(--shadow-lg); border: 1px solid var(--border); }
.contact-form-card h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--secondary); margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 16px; border: 1.5px solid var(--border); border-radius: var(--radius); font-family: inherit; font-size: 0.95rem; color: var(--secondary); transition: border-color 0.3s; outline: none; background: #fff; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(230,57,70,0.08); }
.form-group textarea { resize: vertical; min-height: 120px; }
.alert { padding: 14px 20px; border-radius: var(--radius); margin-bottom: 20px; font-size: 0.9rem; font-weight: 500; }
.alert-success { background: #d1fae5; color: #065f46; border: 1px solid #a7f3d0; }
.alert-error { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }

/* ===== SERVICES PAGE ===== */
.services-hero { background: linear-gradient(135deg, #1a1a2e, #0f3460); padding: 140px 0 90px; text-align: center; }
.services-hero h1 { color: #fff; font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800; margin-bottom: 16px; }
.services-hero p { color: rgba(255,255,255,0.7); font-size: 1.1rem; }
.service-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; margin-bottom: 80px; padding-bottom: 80px; border-bottom: 1px solid var(--border); }
.service-detail:last-child { border-bottom: none; margin-bottom: 0; }
.service-detail.reverse { direction: rtl; }
.service-detail.reverse > * { direction: ltr; }
.service-visual { background: linear-gradient(135deg, #f0f4ff, #e8f0fe); border-radius: var(--radius-lg); height: 320px; display: flex; align-items: center; justify-content: center; font-size: 6rem; }
.service-detail-text h2 { font-size: 1.8rem; font-weight: 800; margin-bottom: 12px; }
.service-detail-text p { color: var(--gray); margin-bottom: 20px; }
.feature-list { list-style: none; margin-bottom: 24px; }
.feature-list li { display: flex; align-items: center; gap: 10px; padding: 6px 0; font-size: 0.9rem; color: var(--secondary); }
.feature-list li::before { content: '✓'; color: var(--primary); font-weight: 700; }

/* ===== CTA SECTION ===== */
.cta-section { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); padding: 80px 0; text-align: center; }
.cta-section h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 800; color: #fff; margin-bottom: 12px; }
.cta-section p { color: rgba(255,255,255,0.8); font-size: 1.05rem; margin-bottom: 32px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--light); }
.testimonial-card { background: #fff; border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow); border: 1px solid var(--border); }
.stars { color: #f59e0b; font-size: 0.9rem; margin-bottom: 14px; }
.testimonial-card p { color: var(--gray); font-size: 0.92rem; line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 44px; height: 44px; background: linear-gradient(135deg, var(--primary), var(--accent)); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 1rem; }
.author-info h4 { font-weight: 700; font-size: 0.9rem; }
.author-info p { color: var(--gray); font-size: 0.8rem; }

/* ===== FOOTER ===== */
.footer { background: #0d0d1a; padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; padding-bottom: 48px; }
.footer-brand .logo { color: #fff; font-size: 1.5rem; display: inline-block; margin-bottom: 16px; }
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.88rem; line-height: 1.7; margin-bottom: 20px; }
.social-links { display: flex; gap: 10px; }
.social-links a { width: 38px; height: 38px; background: rgba(255,255,255,0.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); font-size: 0.85rem; transition: all 0.3s; }
.social-links a:hover { background: var(--primary); color: #fff; }
.footer-links h4, .footer-contact h4 { color: #fff; font-size: 0.95rem; font-weight: 700; margin-bottom: 20px; }
.footer-links ul li { margin-bottom: 10px; }
.footer-links ul li a { color: rgba(255,255,255,0.5); font-size: 0.88rem; transition: color 0.3s; }
.footer-links ul li a:hover { color: var(--primary); }
.footer-contact p, .footer-contact a { color: rgba(255,255,255,0.5); font-size: 0.88rem; display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.footer-contact i { color: var(--primary); width: 16px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; text-align: center; }
.footer-bottom p { color: rgba(255,255,255,0.3); font-size: 0.82rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .about-story, .contact-grid, .service-detail { grid-template-columns: 1fr; gap: 40px; }
    .service-detail.reverse { direction: ltr; }
}
@media (max-width: 768px) {
    .section { padding: 64px 0; }
    .grid-2, .grid-3 { grid-template-columns: 1fr; }
    .grid-4 { grid-template-columns: 1fr 1fr; }
    .nav-links { display: none; flex-direction: column; position: fixed; top: 0; right: 0; bottom: 0; width: 280px; background: #fff; padding: 80px 24px 24px; box-shadow: -4px 0 24px rgba(0,0,0,0.15); gap: 4px; }
    .nav-links.open { display: flex; }
    .nav-links a { color: var(--secondary) !important; }
    .nav-toggle { display: flex; }
    .hero-stats { gap: 24px; flex-wrap: wrap; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .hero-btns { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
    .grid-4 { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2rem; }
    .contact-form-card { padding: 28px 20px; }
}
