@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=Nunito:ital,wght@0,400;0,600;0,700;0,800;1,400&display=swap');

:root {
  --primary:    #0a2540;
  --primary-lt: #0d3363;
  --primary-md: #1a5276;
  --accent:     #f7941d;
  --accent-dk:  #e8830d;
  --accent2:    #00b4d8;
  --bg:         #f5f7fa;
  --white:      #ffffff;
  --text:       #1a1a2e;
  --muted:      #6b7280;
  --border:     #e2e8f0;
  --radius:     16px;
  --radius-sm:  10px;
  --shadow:     0 4px 24px rgba(10,37,64,0.10);
  --shadow-lg:  0 8px 40px rgba(10,37,64,0.16);
  --transition: all 0.25s ease;
  --font-head:  'Rajdhani', sans-serif;
  --font-body:  'Nunito', sans-serif;
}

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

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 72px 0; }
.section-sm { padding: 48px 0; }

.section-tag {
  display: inline-block;
  background: rgba(247,148,29,0.12);
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.section-title { font-family: var(--font-head); font-size: clamp(26px, 4vw, 38px); font-weight: 700; color: var(--primary); line-height: 1.2; margin-bottom: 10px; }
.section-title span { color: var(--accent); }
.section-sub { font-size: 15px; color: var(--muted); max-width: 560px; }
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 28px; border-radius: 50px; font-family: var(--font-body); font-size: 14px; font-weight: 800; cursor: pointer; border: none; transition: var(--transition); white-space: nowrap; }
.btn-primary { background: var(--accent); color: var(--primary); box-shadow: 0 4px 16px rgba(247,148,29,0.35); }
.btn-primary:hover { background: var(--accent-dk); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(247,148,29,0.45); }
.btn-outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.55); }
.btn-outline-white:hover { border-color: var(--accent2); background: rgba(0,180,216,0.1); }
.btn-outline-primary { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline-primary:hover { background: var(--primary); color: var(--white); }

/* NAVBAR */
.navbar { background: var(--primary); position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 20px rgba(0,0,0,0.2); }
.navbar-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.navbar-logo { display: flex; align-items: center; gap: 12px; }
.logo-box { width: 46px; height: 46px; background: var(--accent); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-size: 22px; font-weight: 700; color: var(--primary); flex-shrink: 0; }
.logo-info span:first-child { display: block; font-family: var(--font-head); font-size: 20px; font-weight: 700; color: var(--white); line-height: 1.1; }
.logo-info span:last-child { display: block; font-size: 10px; color: var(--accent); letter-spacing: 1.5px; text-transform: uppercase; font-weight: 600; }
.navbar-links { display: flex; align-items: center; gap: 4px; }
.navbar-links a { color: rgba(255,255,255,0.82); font-size: 14px; font-weight: 700; padding: 8px 14px; border-radius: 8px; transition: var(--transition); }
.navbar-links a:hover, .navbar-links a.active { color: var(--white); background: rgba(255,255,255,0.1); }
.navbar-links a.nav-cta { background: var(--accent); color: var(--primary); padding: 9px 20px; border-radius: 50px; margin-left: 8px; }
.navbar-links a.nav-cta:hover { background: var(--accent-dk); }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 26px; height: 2.5px; background: var(--white); border-radius: 2px; transition: var(--transition); }
.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-nav { display: none; position: fixed; top: 70px; left: 0; width: 100%; height: calc(100vh - 70px); background: var(--primary); z-index: 999; flex-direction: column; padding: 20px 24px; gap: 4px; overflow-y: auto; transform: translateX(-100%); transition: transform 0.35s cubic-bezier(.4,0,.2,1); }
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a { color: var(--white); font-size: 17px; font-weight: 700; padding: 14px 18px; border-radius: 12px; display: flex; align-items: center; gap: 14px; transition: var(--transition); }
.mobile-nav a:hover, .mobile-nav a.active { background: var(--accent); color: var(--primary); }
.mobile-nav hr { border: none; border-top: 1px solid rgba(255,255,255,0.1); margin: 8px 0; }

/* TICKER */
.ticker-wrap { background: var(--primary); border-top: 2.5px solid var(--accent); border-bottom: 2.5px solid var(--accent); overflow: hidden; }
.ticker-inner { position: relative; display: flex; align-items: center; }
.ticker-badge { background: var(--accent); color: var(--primary); font-weight: 800; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; padding: 8px 16px; white-space: nowrap; flex-shrink: 0; z-index: 2; }
.ticker-scroll { overflow: hidden; flex: 1; }
.ticker-track { display: flex; align-items: center; animation: ticker-move 32s linear infinite; white-space: nowrap; }
.ticker-track:hover { animation-play-state: paused; }
@keyframes ticker-move { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ticker-item { display: inline-flex; align-items: center; gap: 10px; padding: 8px 24px; text-decoration: none; transition: opacity 0.2s; }
.ticker-item:hover { opacity: 0.7; }
.ticker-item .t-emoji { font-size: 18px; }
.ticker-item .t-name { color: var(--white); font-family: var(--font-head); font-size: 14px; font-weight: 700; letter-spacing: 1px; }
.ticker-sep { color: var(--accent); font-size: 20px; padding: 0 4px; opacity: 0.6; }

/* HERO */
.hero { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-lt) 55%, var(--primary-md) 100%); padding: 90px 0 80px; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; width: 600px; height: 600px; border-radius: 50%; background: rgba(247,148,29,0.06); top: -200px; right: -150px; pointer-events: none; }
.hero::after  { content: ''; position: absolute; width: 400px; height: 400px; border-radius: 50%; background: rgba(0,180,216,0.05); bottom: -150px; left: -100px; pointer-events: none; }
.hero-content { position: relative; z-index: 1; max-width: 640px; }
.hero-badge { display: inline-block; background: var(--accent); color: var(--primary); font-size: 11px; font-weight: 800; padding: 5px 16px; border-radius: 20px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 18px; }
.hero h1 { font-family: var(--font-head); font-size: clamp(32px, 5vw, 56px); font-weight: 700; color: var(--white); line-height: 1.12; margin-bottom: 16px; }
.hero h1 span { color: var(--accent); }
.hero p { font-size: 16px; color: rgba(255,255,255,0.78); max-width: 520px; margin-bottom: 32px; line-height: 1.7; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 36px; margin-top: 52px; flex-wrap: wrap; position: relative; z-index: 1; }
.hero-stat-item { text-align: center; }
.hero-stat-num { font-family: var(--font-head); font-size: 38px; font-weight: 700; color: var(--white); line-height: 1; }
.hero-stat-num span { color: var(--accent); }
.hero-stat-label { font-size: 11px; color: rgba(255,255,255,0.65); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-top: 4px; }
.hero-stat-divider { width: 1px; background: rgba(255,255,255,0.15); height: 50px; margin-top: auto; margin-bottom: 20px; }

/* WHY US */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 20px; margin-top: 40px; }
.why-card { background: var(--white); border-radius: var(--radius); padding: 28px 24px; box-shadow: var(--shadow); border-top: 4px solid var(--accent); transition: var(--transition); }
.why-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.why-card .w-icon { font-size: 36px; margin-bottom: 14px; }
.why-card h4 { font-family: var(--font-head); font-size: 18px; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.why-card p { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* SERVICES */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-top: 40px; }
.service-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.sc-header { background: linear-gradient(135deg, var(--primary), var(--primary-md)); padding: 24px 20px; display: flex; align-items: center; gap: 16px; }
.sc-header .sc-icon { font-size: 36px; }
.sc-header h3 { font-family: var(--font-head); font-size: 20px; font-weight: 700; color: var(--white); }
.sc-header p  { font-size: 12px; color: rgba(255,255,255,0.65); margin-top: 2px; }
.sc-body { padding: 20px 22px; }
.sc-feature { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.sc-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); flex-shrink: 0; margin-top: 6px; }
.sc-feature p { font-size: 13px; color: var(--text); line-height: 1.55; }
.sc-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.sc-tag { background: var(--bg); color: var(--primary); font-size: 11px; font-weight: 700; padding: 5px 12px; border-radius: 20px; border: 1.5px solid var(--border); }

/* PRODUCTS */
.products-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 22px; margin-top: 36px; }
.product-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); }
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.pc-img { height: 140px; background: linear-gradient(135deg, #e8f4f8, #d1eaf3); display: flex; align-items: center; justify-content: center; font-size: 60px; }
.pc-body { padding: 16px; }
.pc-badge { display: inline-block; background: var(--accent); color: var(--primary); font-size: 9px; font-weight: 800; padding: 3px 10px; border-radius: 20px; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px; }
.pc-body h4  { font-size: 15px; font-weight: 800; color: var(--primary); margin-bottom: 4px; }
.pc-body p   { font-size: 12px; color: var(--muted); }
.pc-price { font-family: var(--font-head); font-size: 18px; font-weight: 700; color: var(--accent); margin-top: 10px; }

/* BRANDS */
.brands-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); gap: 14px; margin-top: 28px; }
.brand-pill { background: var(--white); border-radius: var(--radius-sm); padding: 18px 12px; text-align: center; box-shadow: var(--shadow); font-size: 13px; font-weight: 700; color: var(--primary); transition: var(--transition); }
.brand-pill:hover { transform: scale(1.05); box-shadow: var(--shadow-lg); }
.brand-pill .bp-icon { font-size: 26px; display: block; margin-bottom: 6px; }

/* TESTIMONIALS */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; margin-top: 36px; }
.testimonial-card { background: var(--white); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); border-top: 3px solid var(--accent2); transition: var(--transition); }
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.t-stars { color: var(--accent); font-size: 16px; margin-bottom: 10px; letter-spacing: 2px; }
.t-text  { font-size: 14px; color: var(--text); line-height: 1.65; font-style: italic; margin-bottom: 14px; }
.t-author { font-weight: 800; color: var(--primary); font-size: 13px; }
.t-loc   { font-size: 11px; color: var(--muted); margin-top: 2px; }

/* PROCESS */
.process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 22px; margin-top: 36px; }
.process-step { background: var(--white); border-radius: var(--radius); padding: 28px 22px; box-shadow: var(--shadow); text-align: center; transition: var(--transition); }
.process-step:hover { transform: translateY(-4px); }
.ps-num { width: 52px; height: 52px; border-radius: 50%; background: var(--accent); color: var(--primary); font-family: var(--font-head); font-size: 24px; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.process-step h4 { font-family: var(--font-head); font-size: 17px; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.process-step p  { font-size: 13px; color: var(--muted); line-height: 1.55; }

/* CTA BANNER */
.cta-banner { background: linear-gradient(135deg, var(--primary), var(--primary-lt)); border-radius: var(--radius); padding: 52px 48px; text-align: center; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; width: 300px; height: 300px; border-radius: 50%; background: rgba(247,148,29,0.08); top: -100px; right: -80px; }
.cta-banner h2 { font-family: var(--font-head); font-size: clamp(24px,4vw,36px); font-weight: 700; color: var(--white); margin-bottom: 10px; }
.cta-banner p  { color: rgba(255,255,255,0.75); font-size: 15px; margin-bottom: 28px; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-banner .cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* CONTACT FORM */
.contact-form-wrap { background: var(--white); border-radius: var(--radius); padding: 40px 36px; box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 12px; font-weight: 800; color: var(--primary); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 13px 16px; border: 2px solid var(--border); border-radius: 12px; font-family: var(--font-body); font-size: 14px; color: var(--text); background: var(--bg); outline: none; transition: border-color 0.2s, box-shadow 0.2s; -webkit-appearance: none; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--accent); box-shadow: 0 0 0 4px rgba(247,148,29,0.12); background: var(--white); }
.form-group textarea { min-height: 130px; resize: vertical; }
.form-submit { width: 100%; background: var(--accent); color: var(--primary); border: none; padding: 15px; border-radius: 12px; font-family: var(--font-body); font-size: 15px; font-weight: 800; cursor: pointer; transition: var(--transition); box-shadow: 0 4px 16px rgba(247,148,29,0.3); }
.form-submit:hover { background: var(--accent-dk); transform: translateY(-2px); }

/* CONTACT INFO */
.contact-info-cards { display: flex; flex-direction: column; gap: 16px; }
.ci-card { background: var(--white); border-radius: var(--radius-sm); padding: 20px; box-shadow: var(--shadow); display: flex; align-items: center; gap: 16px; text-decoration: none; transition: var(--transition); }
.ci-card:hover { transform: translateX(5px); box-shadow: var(--shadow-lg); }
.ci-icon-box { width: 52px; height: 52px; border-radius: var(--radius-sm); background: rgba(247,148,29,0.1); display: flex; align-items: center; justify-content: center; font-size: 24px; flex-shrink: 0; }
.ci-label { font-size: 11px; color: var(--muted); font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.ci-value { font-size: 14px; color: var(--primary); font-weight: 800; margin-top: 3px; }

/* HOURS */
.hours-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.hours-row { display: flex; justify-content: space-between; align-items: center; padding: 14px 22px; border-bottom: 1px solid var(--bg); font-size: 14px; }
.hours-row:last-child { border-bottom: none; }
.hours-row .hr-day  { font-weight: 700; color: var(--primary); }
.hours-row .hr-time { color: var(--muted); font-weight: 600; }
.hours-row.today { background: rgba(247,148,29,0.08); }
.hours-row.today .hr-day { color: var(--accent); }

/* MAP */
.map-placeholder { background: linear-gradient(135deg, #c8daea, #a8c8d8); border-radius: var(--radius); height: 200px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; text-decoration: none; color: var(--primary); font-weight: 700; transition: var(--transition); box-shadow: var(--shadow); }
.map-placeholder:hover { opacity: 0.88; }
.map-placeholder .map-pin { font-size: 42px; }
.map-placeholder p { font-size: 13px; text-align: center; line-height: 1.5; }

/* PAGE HERO */
.page-hero { background: linear-gradient(135deg, var(--primary), var(--primary-lt)); padding: 60px 0 50px; text-align: center; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; width: 400px; height: 400px; border-radius: 50%; background: rgba(247,148,29,0.07); top: -150px; right: -100px; }
.page-hero h1 { font-family: var(--font-head); font-size: clamp(28px,5vw,46px); font-weight: 700; color: var(--white); position: relative; }
.page-hero h1 span { color: var(--accent); }
.page-hero p  { color: rgba(255,255,255,0.72); font-size: 15px; margin-top: 10px; position: relative; }
.breadcrumb { display: flex; justify-content: center; align-items: center; gap: 8px; margin-top: 14px; font-size: 13px; color: rgba(255,255,255,0.55); position: relative; }
.breadcrumb a { color: var(--accent); font-weight: 700; }
.breadcrumb span { color: rgba(255,255,255,0.35); }

/* FOOTER */
footer { background: var(--primary); color: rgba(255,255,255,0.7); }
.footer-top { padding: 60px 0 40px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; }
.footer-brand .footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand p { font-size: 13px; line-height: 1.7; max-width: 280px; }
.footer-contact-list { margin-top: 18px; display: flex; flex-direction: column; gap: 8px; }
.footer-contact-list a { font-size: 13px; color: rgba(255,255,255,0.65); display: flex; align-items: center; gap: 8px; transition: color 0.2s; }
.footer-contact-list a:hover { color: var(--accent); }
.footer-col h4 { font-family: var(--font-head); font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 16px; letter-spacing: 0.5px; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.65); transition: color 0.2s, padding-left 0.2s; display: flex; align-items: center; gap: 6px; }
.footer-links a:hover { color: var(--accent); padding-left: 4px; }
.footer-address { font-size: 13px; line-height: 1.8; color: rgba(255,255,255,0.65); }
.footer-bottom { padding: 18px 0; display: flex; align-items: center; justify-content: space-between; font-size: 12px; flex-wrap: wrap; gap: 10px; }
.footer-bottom strong { color: var(--accent); }

/* TOAST */
.toast { position: fixed; bottom: 32px; right: 32px; background: #22c55e; color: var(--white); padding: 14px 24px; border-radius: 12px; font-size: 14px; font-weight: 700; box-shadow: 0 8px 24px rgba(34,197,94,0.35); opacity: 0; transform: translateY(20px); transition: all 0.35s ease; z-index: 9999; }
.toast.show { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 960px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 768px) {
  .navbar-links { display: none; }
  .hamburger    { display: flex; }
  .mobile-nav   { display: flex; }
  .hero         { padding: 60px 0 52px; }
  .hero-stats   { gap: 20px; }
  .hero-stat-divider { display: none; }
  .section      { padding: 52px 0; }
  .form-row     { grid-template-columns: 1fr; }
  .footer-grid  { grid-template-columns: 1fr; gap: 28px; }
  .contact-form-wrap { padding: 28px 20px; }
  .cta-banner   { padding: 40px 24px; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .cta-banner .cta-btns { flex-direction: column; align-items: center; }
}