/* === DDC NEPAL — STYLESHEET === */
:root {
  --red: #c8102e;
  --red-dark: #a00d24;
  --blue: #003893;
  --white: #ffffff;
  --cream: #fdf8f2;
  --dark: #1a1a1a;
  --gray: #6b7280;
  --light-gray: #f5f5f5;
  --border: #e5e7eb;
  --green: #2d8a4e;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.15);
  --radius: 12px;
  --transition: 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--dark); background: var(--white); line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

/* === NAVBAR === */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}
.navbar.scrolled { border-bottom-color: var(--border); box-shadow: var(--shadow); }
.nav-inner { display: flex; align-items: center; gap: 32px; height: 72px; }
.logo img { height: 48px; width: auto; }
.logo-text { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--red); align-items: center; }
.nav-links { display: flex; gap: 32px; margin-left: auto; }
.nav-links a { font-size: 0.95rem; font-weight: 500; color: var(--dark); transition: color var(--transition); }
.nav-links a:hover, .nav-links a.active { color: var(--red); }
.nav-right { display: flex; align-items: center; gap: 20px; }
.lang-switch { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; }
.lang-switch a { color: var(--gray); font-weight: 500; transition: color var(--transition); }
.lang-switch a.active { color: var(--red); font-weight: 700; }
.lang-switch span { color: var(--border); }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 10px 24px; border-radius: 8px; font-weight: 600; font-size: 0.9rem; cursor: pointer; border: none; transition: all var(--transition); }
.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:hover { background: var(--red-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(200,16,46,0.3); }
.btn-outline { background: transparent; color: var(--red); border: 2px solid var(--red); }
.btn-outline:hover { background: var(--red); color: var(--white); }
.btn-white { background: var(--white); color: var(--red); }
.btn-white:hover { background: var(--cream); transform: translateY(-1px); }
.btn-lg { padding: 14px 32px; font-size: 1rem; border-radius: 10px; }

/* HAMBURGER */
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: var(--dark); transition: var(--transition); border-radius: 2px; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.mobile-menu { display: none; flex-direction: column; background: var(--white); border-top: 1px solid var(--border); padding: 16px 24px; gap: 4px; }
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 12px 0; font-weight: 500; border-bottom: 1px solid var(--border); color: var(--dark); }
.mobile-menu a:last-child { border-bottom: none; }

/* HERO */
.hero {
  min-height: 100vh; display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden; padding-top: 72px;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 40%, #0f3460 100%);
  color: var(--white);
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.3; }
.hero-bg::after { content:''; position:absolute; inset:0; background: linear-gradient(135deg, rgba(26,26,46,0.8) 0%, rgba(15,52,96,0.6) 100%); }
.hero-content { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; padding: 80px 24px; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.1); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.2); padding: 8px 16px; border-radius: 100px; font-size: 0.85rem; font-weight: 500; margin-bottom: 24px; }
.hero-eyebrow::before { content:''; width: 6px; height: 6px; border-radius: 50%; background: #4ade80; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.3)} }
.hero h1 { font-family: var(--font-display); font-size: clamp(3rem, 7vw, 5.5rem); font-weight: 900; line-height: 1.05; margin-bottom: 24px; }
.hero h1 span { color: #fbbf24; }
.hero p { font-size: 1.15rem; color: rgba(255,255,255,0.8); max-width: 560px; margin-bottom: 40px; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 48px; margin-top: 64px; flex-wrap: wrap; }
.hero-stat { border-left: 2px solid rgba(255,255,255,0.2); padding-left: 24px; }
.hero-stat .num { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: #fbbf24; }
.hero-stat .label { font-size: 0.8rem; color: rgba(255,255,255,0.6); }
.hero-badges { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 40px; }
.badge { background: rgba(255,255,255,0.1); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.15); padding: 8px 16px; border-radius: 8px; font-size: 0.8rem; font-weight: 500; color: rgba(255,255,255,0.9); }

/* SECTIONS */
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-dark { background: var(--dark); color: var(--white); }
.section-cream { background: var(--cream); }
.section-blue { background: var(--blue); color: var(--white); }
.section-red { background: var(--red); color: var(--white); }
.section-tag { display: inline-block; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--red); background: rgba(200,16,46,0.08); padding: 6px 14px; border-radius: 100px; margin-bottom: 16px; }
.section-tag.white { color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.1); }
.section-title { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; line-height: 1.15; margin-bottom: 16px; }
.section-subtitle { font-size: 1.1rem; color: var(--gray); max-width: 560px; }
.section-subtitle.white { color: rgba(255,255,255,0.7); }
.section-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 48px; flex-wrap: wrap; }

/* FEATURED SECTION */
.featured { background: var(--cream); }
.featured-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.featured-img { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; }
.featured-img img { width: 100%; height: 100%; object-fit: cover; }
.featured-badge { position: absolute; top: 20px; left: 20px; background: var(--red); color: var(--white); padding: 6px 14px; border-radius: 100px; font-size: 0.8rem; font-weight: 700; }
.featured-content .section-tag { color: var(--red); }
.featured-quote { background: var(--white); border-left: 4px solid var(--red); padding: 20px 24px; border-radius: 0 8px 8px 0; margin: 24px 0; font-style: italic; color: var(--gray); }

/* PRODUCTS GRID */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }
.product-card { background: var(--white); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); transition: all var(--transition); cursor: pointer; }
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.product-img { aspect-ratio: 4/3; overflow: hidden; background: var(--cream); position: relative; display:flex; align-items:center; justify-content:center; font-size: 5rem; }
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.product-card:hover .product-img img { transform: scale(1.05); }
.product-badge { position: absolute; top: 12px; left: 12px; background: var(--red); color: var(--white); padding: 4px 10px; border-radius: 100px; font-size: 0.72rem; font-weight: 700; }
.product-body { padding: 20px; }
.product-name-en { font-weight: 700; font-size: 1rem; }
.product-name-ne { color: var(--gray); font-size: 0.85rem; }
.product-price { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--red); margin: 12px 0 4px; }
.product-unit { font-size: 0.8rem; color: var(--gray); }
.product-desc { font-size: 0.88rem; color: var(--gray); margin-top: 8px; line-height: 1.5; }
.product-link { display: inline-block; margin-top: 16px; font-size: 0.88rem; font-weight: 600; color: var(--red); }
.product-link:hover { text-decoration: underline; }

/* WHY DDC */
.why-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; margin-bottom: 64px; }
.why-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); padding: 32px; transition: background var(--transition); }
.why-card:hover { background: rgba(255,255,255,0.08); }
.why-icon { font-size: 2rem; margin-bottom: 16px; }
.why-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.why-card p { font-size: 0.9rem; color: rgba(255,255,255,0.65); line-height: 1.6; }
.why-img { border-radius: var(--radius); overflow: hidden; height: 400px; }
.why-img img { width: 100%; height: 100%; object-fit: cover; }

/* IMPACT STATS */
.stats-band { background: var(--red); color: var(--white); padding: 64px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.stat-item .num { font-family: var(--font-display); font-size: 3rem; font-weight: 900; }
.stat-item .label { font-size: 0.9rem; color: rgba(255,255,255,0.75); margin-top: 4px; }

/* OUR STORY */
.story-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.story-img { position: relative; }
.story-img img { width: 100%; border-radius: var(--radius); }
.story-tag { position: absolute; bottom: 24px; left: 24px; background: var(--white); border-radius: 8px; padding: 16px 20px; box-shadow: var(--shadow-lg); }
.story-tag .tag-label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray); }
.story-tag .tag-val { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--dark); }

/* NEWS */
.news-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 24px; }
.news-card { background: var(--white); border-radius: var(--radius); border: 1px solid var(--border); overflow: hidden; transition: all var(--transition); }
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.news-date { font-size: 0.8rem; font-weight: 600; color: var(--red); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 10px; }
.news-body { padding: 28px; }
.news-body h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; margin-bottom: 12px; line-height: 1.3; }
.news-body p { font-size: 0.9rem; color: var(--gray); line-height: 1.6; }
.news-link { display: inline-block; margin-top: 16px; font-size: 0.88rem; font-weight: 600; color: var(--red); }

/* NEWSLETTER */
.newsletter { background: var(--dark); color: var(--white); padding: 80px 0; text-align: center; }
.newsletter h2 { font-family: var(--font-display); font-size: 2.2rem; margin-bottom: 12px; }
.newsletter p { color: rgba(255,255,255,0.65); margin-bottom: 36px; }
.newsletter-form { display: flex; gap: 12px; max-width: 440px; margin: 0 auto; }
.newsletter-form input { flex: 1; padding: 14px 20px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.15); background: rgba(255,255,255,0.08); color: var(--white); font-family: var(--font-body); font-size: 0.95rem; }
.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form input:focus { outline: none; border-color: var(--red); }
.newsletter-form button { padding: 14px 28px; background: var(--red); color: var(--white); border: none; border-radius: 8px; font-weight: 700; cursor: pointer; font-family: var(--font-body); transition: background var(--transition); white-space: nowrap; }
.newsletter-form button:hover { background: var(--red-dark); }

/* FOOTER */
.footer { background: #111; color: rgba(255,255,255,0.7); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; margin-top: 16px; max-width: 300px; color: rgba(255,255,255,0.5); }
.footer-col h4 { color: var(--white); font-size: 0.9rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { font-size: 0.9rem; color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer-col ul a:hover { color: var(--white); }
.footer-contact { margin-top: 20px; }
.footer-contact p { font-size: 0.85rem; color: rgba(255,255,255,0.45); margin-bottom: 6px; }
.social-links { display: flex; gap: 12px; margin-top: 20px; }
.social-icon { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; font-size: 0.9rem; color: rgba(255,255,255,0.6); transition: all var(--transition); }
.social-icon:hover { background: var(--red); border-color: var(--red); color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 24px 0; margin-top: 48px; text-align: center; }
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.35); }

/* PAGE HERO */
.page-hero { padding: 140px 0 80px; background: linear-gradient(135deg, var(--dark) 0%, #2a2a3e 100%); color: var(--white); }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; }
.page-hero p { font-size: 1.1rem; color: rgba(255,255,255,0.7); max-width: 540px; margin-top: 16px; }

/* ABOUT PAGE */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-grid img { width: 100%; border-radius: var(--radius); }
.milestone-list { margin-top: 32px; }
.milestone { display: flex; gap: 20px; padding: 20px 0; border-bottom: 1px solid var(--border); }
.milestone-year { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--red); min-width: 64px; }
.milestone-text h4 { font-weight: 600; margin-bottom: 4px; }
.milestone-text p { font-size: 0.9rem; color: var(--gray); }

/* FIND US */
.stores-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.store-card { background: var(--white); border-radius: var(--radius); border: 1px solid var(--border); padding: 24px; }
.store-card h3 { font-weight: 700; margin-bottom: 8px; }
.store-card p { font-size: 0.9rem; color: var(--gray); }
.store-card .store-tag { display: inline-block; font-size: 0.75rem; background: rgba(200,16,46,0.08); color: var(--red); padding: 3px 10px; border-radius: 100px; font-weight: 600; margin-bottom: 12px; }

/* CONTACT FORM */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.9rem; font-weight: 600; margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 12px 16px; border-radius: 8px; border: 1px solid var(--border);
  font-family: var(--font-body); font-size: 0.95rem; color: var(--dark);
  transition: border-color var(--transition); background: var(--white);
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--red); }
.form-group textarea { resize: vertical; min-height: 140px; }
.form-success { display: none; background: rgba(45,138,78,0.1); border: 1px solid var(--green); color: var(--green); padding: 16px; border-radius: 8px; margin-top: 16px; font-weight: 500; }

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

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav-links, .nav-right { display: none; }
  .hamburger { display: flex; margin-left: auto; }
  .featured-inner, .story-inner, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 600px) {
  .hero h1 { font-size: 2.4rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .hero-stats { gap: 24px; }
  .section { padding: 64px 0; }
}
