/* ============================================
   ADITANSH Kitchen Solutions — style.css
============================================ */

:root {
  --blue:       #1a3a7c;
  --blue-mid:   #1e6fd9;
  --blue-light: #e8f2ff;
  --blue-xlt:   #f4f8ff;
  --orange:     #e86c1a;
  --orange-lt:  #fff3eb;
  --white:      #ffffff;
  --off:        #f7f9fc;
  --dark:       #0d1b2a;
  --mid:        #3d5166;
  --light:      #7a94b0;
  --border:     #dce6f0;
  --green:      #25d366;
  --green-d:    #1da851;
  --shadow:     0 4px 20px rgba(13,27,42,0.10);
  --shadow-lg:  0 12px 48px rgba(13,27,42,0.14);
  --r:          10px;
  --r-lg:       18px;
  --font:       'Nunito', sans-serif;
  --serif:      'Merriweather', serif;
}

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

.container { max-width: 1160px; margin: 0 auto; padding: 0 20px; }
.sec-pad { padding: 80px 0; }
.bg-soft { background: var(--off); }

/* ── LABELS & TITLES ── */
.sec-label { display: inline-block; font-size: 10px; font-weight: 800; letter-spacing: 3px; text-transform: uppercase; color: var(--orange); margin-bottom: 10px; }
.sec-title { font-family: var(--serif); font-size: clamp(1.7rem, 3vw, 2.5rem); font-weight: 900; color: var(--blue); line-height: 1.2; margin-bottom: 14px; }
.sec-title span { color: var(--blue-mid); }
.sec-desc { color: var(--mid); font-size: 1rem; max-width: 560px; }
.sec-header { margin-bottom: 48px; text-align: center; display: flex; flex-direction: column; align-items: center; }

/* ── BUTTONS ── */
.btn-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--blue-mid); color: #fff; padding: 13px 26px; border-radius: var(--r); font-weight: 700; font-size: 0.92rem; font-family: var(--font); border: none; cursor: pointer; transition: background .2s, transform .2s, box-shadow .2s; }
.btn-primary:hover { background: var(--blue); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(30,111,217,.3); }
.btn-primary.full-w { width: 100%; justify-content: center; padding: 15px; font-size: 1rem; }

.btn-call { display: inline-flex; align-items: center; gap: 8px; background: var(--orange); color: #fff; padding: 13px 26px; border-radius: var(--r); font-weight: 700; font-size: 0.92rem; transition: background .2s, transform .2s; }
.btn-call:hover { background: #c55a0e; transform: translateY(-2px); }

.btn-book { background: var(--orange); color: #fff; padding: 10px 20px; border-radius: var(--r); font-weight: 700; font-size: 0.86rem; white-space: nowrap; transition: background .2s; }
.btn-book:hover { background: #c55a0e; }

/* ── WHATSAPP FLOAT ── */
.wa-float { position: fixed; bottom: 28px; right: 20px; z-index: 9000; display: flex; align-items: center; gap: 10px; background: var(--green); color: #fff; padding: 11px 18px 11px 14px; border-radius: 50px; box-shadow: 0 6px 24px rgba(37,211,102,.45); font-family: var(--font); transition: transform .2s, box-shadow .2s; }
.wa-float:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(37,211,102,.55); }
.wa-float > i { font-size: 1.8rem; flex-shrink: 0; }
.wa-info { display: flex; flex-direction: column; line-height: 1.2; }
.wa-top { font-size: 0.68rem; opacity: .85; font-weight: 600; }
.wa-num { font-size: 0.88rem; font-weight: 800; }
.wa-dot { position: absolute; top: -3px; right: -3px; width: 12px; height: 12px; background: #ff3b3b; border-radius: 50%; border: 2px solid #fff; animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100%{transform:scale(1)}50%{transform:scale(1.5);opacity:.6} }

/* ── BACK TO TOP ── */
.btt { position: fixed; bottom: 96px; right: 20px; z-index: 8000; width: 42px; height: 42px; background: var(--blue); color: #fff; border: none; border-radius: 50%; font-size: 1.3rem; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow); opacity: 0; pointer-events: none; transition: opacity .2s, transform .2s; }
.btt.show { opacity: 1; pointer-events: auto; }
.btt:hover { transform: translateY(-2px); }

/* ── HEADER — single sticky blue bar ── */
.topbar {
  background: var(--blue);
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 500;
  box-shadow: 0 2px 16px rgba(13,27,42,.22);
}
.tb-inner {
  display: flex;
  align-items: center;
  gap: 16px;
}
.tb-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; text-decoration: none; }
.tb-logo img { width: 48px; height: 48px; object-fit: contain; border-radius: 8px; }
.tb-logo-text { display: flex; flex-direction: column; }
.tb-name { color: #fff; font-family: var(--serif); font-size: 1.25rem; font-weight: 900; line-height: 1; }
.tb-sub { color: rgba(255,255,255,.6); font-size: 0.6rem; letter-spacing: 1.5px; text-transform: uppercase; margin-top: 2px; }

/* Nav links — centre of header */
.tb-nav-links {
  display: flex;
  gap: 2px;
  flex: 1;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.tb-nav-links a {
  color: rgba(255,255,255,.78);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 7px;
  transition: background .18s, color .18s;
  white-space: nowrap;
}
.tb-nav-links a:hover,
.tb-nav-links a.active {
  background: rgba(255,255,255,.15);
  color: #fff;
}

/* Contact items — right of header */
.tb-contacts { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.tb-contact-item { display: flex; align-items: center; gap: 8px; color: #fff; transition: opacity .2s; text-decoration: none; }
.tb-contact-item:hover { opacity: .75; }
.tb-contact-item i { font-size: 1.2rem; color: rgba(255,255,255,.65); }
.tb-contact-item span { display: block; font-size: 0.6rem; opacity: .6; text-transform: uppercase; letter-spacing: 1px; }
.tb-contact-item strong { display: block; font-size: 0.84rem; }

/* Burger */
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; margin-left: auto; }
.burger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: all .25s; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mob-menu { display: none; flex-direction: column; background: #122d6a; padding: 14px 20px 20px; gap: 4px; }
.mob-menu.open { display: flex; }
.mm-link { color: rgba(255,255,255,.85); font-weight: 700; font-size: 1rem; padding: 11px 14px; border-radius: 8px; transition: background .18s; }
.mm-link:hover { background: rgba(255,255,255,.1); color: #fff; }
.mm-call { display: flex; align-items: center; gap: 8px; background: var(--orange); color: #fff; padding: 13px 18px; border-radius: 8px; font-weight: 800; font-size: 1rem; margin-top: 8px; justify-content: center; }

/* ── HERO ── */
.hero { position: relative; min-height: 92vh; display: flex; align-items: center; }
.hero-bg { position: absolute; inset: 0; background-image: url('https://images.unsplash.com/photo-1556909114-f6e7ad7d3136?w=1600&q=80'); background-size: cover; background-position: center 35%; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(120deg, rgba(10,25,60,.88) 0%, rgba(26,58,124,.78) 55%, rgba(10,25,60,.55) 100%); }
.hero-body { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 48px; padding: 60px 20px; width: 100%; }
.hero-left { max-width: 580px; }
.hero-badge { display: inline-flex; align-items: center; gap: 7px; background: rgba(255,255,255,.13); border: 1px solid rgba(255,255,255,.22); color: #fff; font-size: 0.76rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 7px 16px; border-radius: 50px; margin-bottom: 20px; }
.hero-badge i { color: #90c8ff; font-size: .95rem; }
.hero-left h1 { font-family: var(--serif); font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 900; color: #fff; line-height: 1.15; margin-bottom: 18px; }
.hero-left h1 em { color: #90c8ff; font-style: italic; }
.hero-left p { color: rgba(255,255,255,.78); font-size: 1.05rem; max-width: 480px; margin-bottom: 28px; line-height: 1.8; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }
.hero-badges { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-badges span { display: flex; align-items: center; gap: 5px; color: rgba(255,255,255,.75); font-size: 0.82rem; font-weight: 700; }
.hero-badges i { color: #90c8ff; font-size: .95rem; }

.hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; flex-shrink: 0; }
.hstat { background: rgba(255,255,255,.12); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,.2); border-radius: var(--r); padding: 20px 18px; text-align: center; }
.hstat strong { display: block; color: #fff; font-family: var(--serif); font-size: 1.7rem; font-weight: 900; line-height: 1; }
.hstat span { color: rgba(255,255,255,.65); font-size: 0.78rem; font-weight: 600; margin-top: 4px; display: block; }

/* ── TICKER ── */
.ticker { overflow: hidden; background: var(--orange); padding: 11px 0; white-space: nowrap; }
.ticker-inner { display: inline-flex; animation: ticker 28s linear infinite; }
.ticker-inner span { color: #fff; font-size: 0.83rem; font-weight: 700; padding: 0 32px; border-right: 1px solid rgba(255,255,255,.3); }
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ── ABOUT ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-img-wrap { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-img-wrap img { width: 100%; height: 480px; object-fit: cover; transition: transform .5s; }
.about-img-wrap:hover img { transform: scale(1.03); }
.about-content > p { color: var(--mid); margin-bottom: 14px; font-size: 0.98rem; }
.about-points { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 22px 0; }
.ap { display: flex; align-items: center; gap: 9px; background: var(--blue-xlt); border: 1px solid var(--border); border-radius: 8px; padding: 12px 14px; }
.ap i { color: var(--blue-mid); font-size: 1.15rem; flex-shrink: 0; }
.ap span { font-size: 0.84rem; font-weight: 700; color: var(--blue); }
.about-stats { display: flex; gap: 28px; padding-top: 24px; border-top: 1px solid var(--border); }
.ast { text-align: center; }
.ast-n { display: inline; font-family: var(--serif); font-size: 2rem; font-weight: 900; color: var(--blue-mid); }
.ast p { color: var(--light); font-size: 0.8rem; margin-top: 2px; }

/* ── SERVICES ── */
.services-photo-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.spc { background: var(--white); border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; transition: transform .25s, box-shadow .25s; }
.spc:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.spc-img { position: relative; overflow: hidden; height: 180px; }
.spc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.spc:hover .spc-img img { transform: scale(1.07); }
.spc-overlay { position: absolute; inset: 0; background: rgba(26,58,124,.55); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity .25s; }
.spc:hover .spc-overlay { opacity: 1; }
.spc-cta { background: #fff; color: var(--blue); padding: 8px 20px; border-radius: 6px; font-weight: 800; font-size: 0.85rem; transition: background .18s; }
.spc-cta:hover { background: var(--blue-light); }
.spc-body { padding: 18px; }
.spc-body h3 { font-family: var(--serif); font-size: 1.05rem; color: var(--blue); margin-bottom: 6px; }
.spc-body p { color: var(--mid); font-size: 0.84rem; line-height: 1.6; margin-bottom: 12px; }
.spc-link { display: inline-flex; align-items: center; gap: 4px; color: var(--blue-mid); font-size: 0.84rem; font-weight: 700; transition: gap .18s; }
.spc-link:hover { gap: 8px; }

/* ── HOW IT WORKS ── */
.hiw-steps { display: flex; align-items: flex-start; gap: 0; }
.hiw-step { flex: 1; background: var(--white); border: 1px solid var(--border); border-radius: var(--r); padding: 32px 20px 28px; text-align: center; position: relative; transition: transform .2s, box-shadow .2s; }
.hiw-step:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.hiw-num { position: absolute; top: 12px; right: 16px; font-family: var(--serif); font-size: 2.2rem; font-weight: 900; color: var(--border); line-height: 1; }
.hiw-icon { width: 60px; height: 60px; background: var(--blue-mid); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; color: #fff; margin: 0 auto 14px; box-shadow: 0 6px 18px rgba(30,111,217,.28); }
.hiw-step h3 { font-size: 1rem; font-weight: 800; color: var(--blue); margin-bottom: 8px; }
.hiw-step p { color: var(--mid); font-size: 0.86rem; }
.hiw-arrow { display: flex; align-items: center; padding: 0 6px; color: var(--blue-mid); font-size: 1.6rem; opacity: .3; align-self: center; flex-shrink: 0; }

/* ── LOCATIONS ── */
.loc-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.loc-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r); padding: 32px 18px; text-align: center; position: relative; transition: transform .2s, box-shadow .2s; }
.loc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.loc-card.hq { border-color: var(--blue-mid); background: var(--blue-xlt); }
.loc-tag { display: inline-block; background: var(--blue-mid); color: #fff; font-size: 0.65rem; font-weight: 800; letter-spacing: 2px; padding: 3px 10px; border-radius: 50px; margin-bottom: 10px; }
.loc-pin { width: 48px; height: 48px; background: var(--blue-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: var(--blue-mid); margin: 0 auto 12px; }
.loc-card h3 { font-family: var(--serif); font-size: 1.1rem; color: var(--blue); }

/* ── CONTACT ── */
.contact-wrap { display: grid; grid-template-columns: 1fr 1.7fr; gap: 40px; align-items: start; }
.contact-info { background: var(--blue); border-radius: var(--r-lg); padding: 32px 26px; display: flex; flex-direction: column; gap: 22px; }
.ci { display: flex; gap: 14px; align-items: flex-start; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,.1); }
.ci:last-of-type { border: none; padding: 0; }
.ci > i { font-size: 1.3rem; color: #90c8ff; background: rgba(255,255,255,.1); padding: 10px; border-radius: 8px; flex-shrink: 0; }
.ci strong { display: block; color: #fff; font-size: 0.85rem; margin-bottom: 4px; }
.ci a, .ci span { display: block; color: rgba(255,255,255,.65); font-size: 0.86rem; line-height: 1.9; transition: color .18s; }
.ci a:hover { color: #90c8ff; }
.wa-btn { display: flex; align-items: center; justify-content: center; gap: 8px; background: var(--green); color: #fff; padding: 13px; border-radius: 8px; font-weight: 800; font-size: 0.92rem; transition: background .18s, transform .18s; }
.wa-btn i { font-size: 1.3rem; }
.wa-btn:hover { background: var(--green-d); transform: translateY(-2px); }
.sidebar-cta { background: rgba(255,255,255,.08); border-radius: 8px; padding: 16px; text-align: center; }
.sidebar-cta p { color: rgba(255,255,255,.6); font-size: 0.82rem; margin-bottom: 10px; }
.contact-form { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 32px 28px; box-shadow: var(--shadow); }
.contact-form h3 { font-family: var(--serif); font-size: 1.3rem; color: var(--blue); margin-bottom: 6px; }
.form-note { color: var(--light); font-size: 0.82rem; margin-bottom: 22px; }
.fg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.fg { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.fg label { font-size: 0.8rem; font-weight: 800; color: var(--mid); text-transform: uppercase; letter-spacing: .5px; }
.fg input, .fg select, .fg textarea { width: 100%; padding: 11px 14px; border: 1.5px solid var(--border); border-radius: 8px; font-family: var(--font); font-size: 0.92rem; color: var(--dark); background: var(--off); outline: none; resize: none; transition: border-color .18s, box-shadow .18s; appearance: none; }
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--blue-mid); background: #fff; box-shadow: 0 0 0 3px rgba(30,111,217,.1); }
.form-ok { display: flex; align-items: center; gap: 8px; background: #e8f5e9; color: #2e7d32; padding: 14px 16px; border-radius: 8px; font-weight: 700; font-size: 0.9rem; margin-top: 12px; }
.form-err { display: flex; align-items: center; gap: 8px; background: #ffebee; color: #c62828; padding: 14px 16px; border-radius: 8px; font-weight: 700; font-size: 0.9rem; margin-top: 12px; }

/* ── CALL BANNER ── */
.call-banner { background: var(--orange); padding: 48px 20px; }
.call-banner-inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; }
.cb-text h2 { font-family: var(--serif); font-size: clamp(1.4rem, 3vw, 2rem); color: #fff; margin-bottom: 6px; }
.cb-text p { color: rgba(255,255,255,.8); font-size: 0.95rem; }
.cb-btn { display: inline-flex; align-items: center; gap: 10px; background: #fff; color: var(--orange); padding: 16px 32px; border-radius: var(--r); font-weight: 800; font-size: 1.1rem; white-space: nowrap; transition: background .18s, transform .18s; flex-shrink: 0; }
.cb-btn i { font-size: 1.4rem; }
.cb-btn:hover { background: var(--orange-lt); transform: translateY(-2px); }

/* ── FOOTER ── */
.footer { background: var(--blue); }
.footer-bottom { padding: 28px 20px; }
.fb-inner { max-width: 1160px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center; }
.footer-brand-bar { display: flex; align-items: center; gap: 12px; margin-bottom: 6px; }
.footer-brand-bar img { width: 44px; height: 44px; object-fit: contain; border-radius: 8px; }
.f-name { display: block; font-family: var(--serif); font-size: 1.2rem; font-weight: 900; color: #fff; }
.f-sub { display: block; color: rgba(255,255,255,.5); font-size: 0.65rem; letter-spacing: 1px; text-transform: uppercase; }
.footer-bottom p { color: rgba(255,255,255,.35); font-size: 0.82rem; }
.disclaimer { font-size: 0.76rem !important; line-height: 1.6; max-width: 700px; }

/* ── ANIMATIONS ── */
[data-aos] { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
[data-aos].in { opacity: 1; transform: translateY(0); }
[data-aos-delay] { opacity: 0; transform: translateY(24px); transition: opacity .6s ease .2s, transform .6s ease .2s; }
[data-aos-delay].in { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .services-photo-grid { grid-template-columns: repeat(2, 1fr); }
  .loc-grid { grid-template-columns: repeat(3, 1fr); }
  .tb-nav-links a { padding: 7px 10px; font-size: 0.84rem; }
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .hiw-steps { flex-direction: column; gap: 12px; }
  .hiw-arrow { transform: rotate(90deg); align-self: center; }
  .contact-wrap { grid-template-columns: 1fr; }
  .tb-nav-links { display: none; }
  .tb-contact-item.hide-sm { display: none; }
}

@media (max-width: 768px) {
  .tb-nav-links { display: none; }
  .tb-contacts .tb-contact-item { display: none; }
  .hide-sm { display: none !important; }
  .btn-book { display: none; }
  .burger { display: flex; }
  .hero-body { flex-direction: column; padding: 48px 20px 60px; }
  .hero-stats { width: 100%; }
  .services-photo-grid { grid-template-columns: 1fr 1fr; }
  .loc-grid { grid-template-columns: repeat(3, 1fr); }
  .fg-row { grid-template-columns: 1fr; }
  .call-banner-inner { flex-direction: column; text-align: center; }
  .about-points { grid-template-columns: 1fr; }
  .wa-float .wa-info { display: none; }
  .wa-float { padding: 13px; border-radius: 50%; width: 54px; height: 54px; justify-content: center; }
  .wa-float i { font-size: 1.9rem; }
}

@media (max-width: 520px) {
  .services-photo-grid { grid-template-columns: 1fr; }
  .loc-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-btns { flex-direction: column; }
  .btn-primary, .btn-call { width: 100%; justify-content: center; }
}