:root {
  --samsung-blue: #0b5ed7;
  --blue-700: #0847a6;
  --navy: #071a33;
  --navy-2: #0d2747;
  --gold: #d8a229;
  --gold-soft: #fff3ce;
  --grey-25: #fbfcff;
  --grey-50: #f4f7fb;
  --grey-100: #e7edf6;
  --text: #172033;
  --muted: #64748b;
  --white: #ffffff;
  --glass: rgba(255, 255, 255, 0.14);
  --shadow: 0 22px 60px rgba(7, 26, 51, 0.14);
  --shadow-soft: 0 12px 34px rgba(7, 26, 51, 0.08);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 116px;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: Inter, Poppins, Montserrat, "Segoe UI", Arial, sans-serif;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -44px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--white);
  background: var(--navy);
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 12px;
}

.announcement {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 8px 18px;
  color: var(--white);
  background: linear-gradient(90deg, var(--navy), var(--samsung-blue));
  font-size: 0.88rem;
  font-weight: 700;
  text-align: center;
}

.announcement a {
  color: var(--gold-soft);
  border-bottom: 1px solid rgba(255, 243, 206, 0.7);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(231, 237, 246, 0.9);
  backdrop-filter: blur(18px);
}

.nav {
  max-width: 1240px;
  min-height: 78px;
  margin: 0 auto;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 320px;
}

.brand-logo-plate {
  width: 126px;
  height: 56px;
  display: grid;
  place-items: center;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.brand-logo {
  width: 100%;
  max-height: 50px;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: var(--navy);
  font-size: 1rem;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #334155;
  font-size: 0.94rem;
  font-weight: 800;
}

.nav-menu a {
  padding: 10px 0;
  transition: color 160ms ease, transform 160ms ease;
}

.nav-menu a:hover {
  color: var(--samsung-blue);
  transform: translateY(-1px);
}

.nav-cta {
  padding: 11px 16px !important;
  color: var(--white);
  background: var(--navy);
  border-radius: var(--radius);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--grey-100);
  border-radius: var(--radius);
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--navy);
}

.hero {
  position: relative;
  min-height: calc(100vh - 116px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  background: url("assets/hero-showroom.png") center / cover no-repeat;
  transform: scale(1.02);
  animation: slowReveal 1200ms ease both;
}

.hero-shade {
  background:
    radial-gradient(circle at 72% 24%, rgba(11, 94, 215, 0.36), transparent 32%),
    linear-gradient(90deg, rgba(7, 26, 51, 0.96) 0%, rgba(7, 26, 51, 0.86) 42%, rgba(7, 26, 51, 0.30) 78%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  padding: 92px 22px 70px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.split-section h2,
.contact h2 {
  margin: 0;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 770px;
  font-size: 5.6rem;
  line-height: 0.96;
}

.hero-copy {
  max-width: 760px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.16rem;
  line-height: 1.72;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 900;
}

.button-gold {
  color: var(--navy);
  background: linear-gradient(135deg, #ffdf84, var(--gold));
  box-shadow: 0 18px 34px rgba(216, 162, 41, 0.24);
}

.button-blue {
  color: var(--white);
  background: var(--samsung-blue);
}

.button-glass {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: var(--glass);
  backdrop-filter: blur(14px);
}

.stats-panel {
  width: min(960px, 100%);
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.stats-panel article {
  padding: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.stats-panel article:last-child {
  border-right: 0;
}

.stats-panel strong,
.stats-panel span {
  display: block;
}

.stats-panel strong {
  font-size: 1.38rem;
}

.stats-panel span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.76);
}

.section {
  max-width: 1240px;
  margin: 0 auto;
  padding: 92px 22px;
}

[id] {
  scroll-margin-top: 116px;
}

.section-title {
  max-width: 820px;
  margin-bottom: 38px;
}

.muted-copy {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.section-note {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.7;
}

.section h2,
.split-section h2,
.contact h2 {
  color: var(--navy);
  font-size: 3.35rem;
  line-height: 1.05;
}

.profile {
  background:
    radial-gradient(circle at 8% 12%, rgba(11, 94, 215, 0.08), transparent 26%),
    var(--white);
}

.profile-grid,
.cpc-grid,
.why-grid,
.review-grid,
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.glass-card,
.feature-card,
.why-grid article,
.review-grid article,
.blog-card,
.info-card,
.brand-group,
.product-card,
.offer-card {
  border: 1px solid var(--grey-100);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
}

.glass-card,
.feature-card,
.why-grid article,
.review-grid article,
.blog-card,
.info-card,
.brand-group,
.offer-card {
  padding: 26px;
}

.glass-card h3,
.feature-card h3,
.why-grid h3,
.blog-card h3,
.offer-card h3,
.info-card h3,
.brand-group h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 1.22rem;
}

.glass-card p,
.feature-card p,
.why-grid p,
.blog-card p,
.offer-card p,
.info-card p,
.split-grid p,
.contact-card p {
  color: var(--muted);
  line-height: 1.72;
}

.timeline {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--grey-100);
}

.timeline div {
  padding: 24px;
  background: var(--grey-25);
  border-right: 1px solid var(--grey-100);
}

.timeline div:last-child {
  border-right: 0;
}

.timeline span {
  color: var(--samsung-blue);
  font-weight: 900;
}

.timeline p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.58;
}

.brand-groups {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 18px;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.brand-card {
  min-height: 138px;
  display: grid;
  align-content: space-between;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--grey-100);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.brand-logo-card {
  position: relative;
  min-height: 146px;
  overflow: hidden;
}

.brand-logo-card::before {
  content: none;
}

.brand-card:hover,
.product-card:hover,
.offer-card:hover {
  transform: translateY(-4px);
  border-color: rgba(11, 94, 215, 0.28);
  box-shadow: var(--shadow);
}

.brand-card strong {
  color: var(--navy);
  font-size: 1.06rem;
}

.brand-logo-wrap {
  position: relative;
  min-height: 76px;
  display: grid;
  place-items: center;
  padding: 8px 10px;
  border-radius: var(--radius);
  background: transparent;
  border: 0;
}

.brand-logo-img {
  width: 100%;
  max-width: 150px;
  max-height: 62px;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 8px 14px rgba(7, 26, 51, 0.08));
}

.brand-logo-img:not([src]),
.brand-logo-img[src=""] {
  display: none;
}

.brand-logo-img:not([src]) + .brand-wordmark,
.brand-logo-img[src=""] + .brand-wordmark {
  display: inline;
}

.brand-logo-img + .brand-wordmark {
  display: none;
}

.brand-wordmark {
  position: relative;
  color: var(--navy);
  font-size: 1.28rem;
  font-weight: 950;
  line-height: 1.1;
}

.brand-logo-card.samsung .brand-wordmark {
  color: #1428a0;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.brand-logo-card.bluestar .brand-wordmark {
  color: #0057b8;
}

.brand-logo-card.panasonic .brand-wordmark {
  color: #0041a3;
  letter-spacing: 0.03em;
}

.brand-logo-card.godrej .brand-wordmark {
  color: #7c1d6f;
}

.brand-logo-card.hitachi .brand-wordmark {
  color: #d71920;
  letter-spacing: 0.04em;
}

.brand-logo-card.whirlpool .brand-wordmark {
  color: #6f4c1e;
}

.brand-logo-card.lloyd .brand-wordmark {
  color: #008a43;
}

.brand-logo-card.symphony .brand-wordmark {
  color: #1687c9;
}

.brand-logo-card.kent .brand-wordmark {
  color: #e31e24;
}

.brand-logo-card.philips .brand-wordmark {
  color: #0b5ed7;
  letter-spacing: 0.04em;
}

.brand-logo-card.orient .brand-wordmark {
  color: #e11d48;
}

.brand-logo-card.microtek .brand-wordmark {
  color: #ed1c24;
}

.brand-logo-card.vguard .brand-wordmark {
  color: #f58220;
}

.brand-logo-card.milcent .brand-wordmark {
  color: #006b3f;
}

.brand-logo-card.boat .brand-wordmark {
  color: #111827;
}

.brand-card span:not(.brand-wordmark) {
  color: var(--muted);
  font-size: 0.82rem;
  text-align: center;
}

.brand-page-logo {
  width: 220px;
  min-height: 82px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  padding: 16px;
  border: 1px solid var(--grey-100);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.brand-page-logo img {
  max-width: 100%;
  max-height: 56px;
  object-fit: contain;
}

.product-section {
  background: var(--grey-50);
  max-width: none;
  padding-left: max(22px, calc((100% - 1240px) / 2 + 22px));
  padding-right: max(22px, calc((100% - 1240px) / 2 + 22px));
}

.product-toolbar {
  margin-bottom: 22px;
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 14px;
}

.product-toolbar label,
.lead-form label,
.admin-form label {
  display: grid;
  gap: 7px;
  color: #334155;
  font-size: 0.92rem;
  font-weight: 900;
}

.product-toolbar input,
.product-toolbar select,
.lead-form input,
.lead-form select,
.lead-form textarea,
.admin-form input,
.admin-form select,
.admin-form textarea {
  width: 100%;
  border: 1px solid var(--grey-100);
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--text);
  background: var(--white);
  outline: none;
}

.product-toolbar input:focus,
.product-toolbar select:focus,
.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--samsung-blue);
  box-shadow: 0 0 0 4px rgba(11, 94, 215, 0.1);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.product-card {
  min-height: 310px;
  padding: 18px;
  display: grid;
  gap: 14px;
  align-content: start;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.product-image {
  height: 132px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.92);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.3), transparent 24%),
    linear-gradient(135deg, var(--navy), var(--samsung-blue));
  border-radius: var(--radius);
  font-size: 2.6rem;
  font-weight: 900;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  grid-area: 1 / 1;
}

.product-image span {
  width: 100%;
  height: 100%;
  display: none;
  place-items: center;
  grid-area: 1 / 1;
}

.product-card h3 {
  margin: 0;
  color: var(--navy);
}

.product-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill {
  padding: 6px 9px;
  color: var(--blue-700);
  background: #eaf3ff;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
}

.product-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: auto;
}

.mini-button {
  border: 1px solid var(--grey-100);
  border-radius: var(--radius);
  padding: 10px 12px;
  color: var(--navy);
  background: var(--white);
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 900;
}

.mini-button.primary {
  color: var(--white);
  border-color: var(--samsung-blue);
  background: var(--samsung-blue);
}

.compare-panel {
  position: sticky;
  bottom: 16px;
  z-index: 10;
  margin: 24px auto 0;
  max-width: 760px;
  padding: 16px 18px;
  color: var(--white);
  background: rgba(7, 26, 51, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.compare-panel p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.split-section,
.defence-band {
  color: var(--white);
  background:
    radial-gradient(circle at 82% 20%, rgba(216, 162, 41, 0.18), transparent 30%),
    linear-gradient(135deg, var(--navy), var(--navy-2));
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 42px;
  align-items: start;
}

.split-section h2,
.defence-band h2 {
  color: var(--white);
}

.split-grid p,
.defence-band .section-title {
  color: rgba(255, 255, 255, 0.78);
}

.check-list {
  margin-top: 24px;
  display: grid;
  gap: 12px;
}

.check-list span {
  padding: 15px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
}

.info-card {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
}

.info-card h3,
.info-card p {
  color: var(--white);
}

.info-card li,
.feature-card li {
  margin-bottom: 10px;
  color: var(--muted);
}

.info-card li {
  color: rgba(255, 255, 255, 0.82);
}

.feature-card ul {
  margin: 0;
  padding-left: 20px;
}

.offer-grid,
.gallery-grid,
.defence-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.offer-card {
  position: relative;
  overflow: hidden;
}

.offer-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--samsung-blue), var(--gold));
}

.offer-card span {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 7px 10px;
  color: var(--blue-700);
  background: #eaf3ff;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
}

.showroom-section {
  background:
    radial-gradient(circle at 8% 12%, rgba(11, 94, 215, 0.08), transparent 28%),
    var(--white);
}

.showroom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.showroom-card {
  overflow: hidden;
  border: 1px solid var(--grey-100);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.showroom-card > div:last-child {
  padding: 22px;
}

.showroom-photo {
  min-height: 210px;
  display: grid;
  place-items: center;
  padding: 24px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 26, 51, 0.72), rgba(11, 94, 215, 0.52)),
    url("assets/hero-showroom.png") center / cover;
  text-align: center;
  font-weight: 900;
}

.showroom-photo.pending {
  background:
    linear-gradient(135deg, rgba(7, 26, 51, 0.76), rgba(216, 162, 41, 0.4)),
    var(--grey-50);
}

.branch-label {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 6px 10px;
  color: var(--blue-700);
  background: #eaf3ff;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
}

.showroom-card h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 1.26rem;
}

.showroom-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.showroom-purpose {
  margin-top: 12px !important;
  color: var(--navy) !important;
  font-weight: 700;
}

.showroom-note {
  display: inline-flex;
  margin-top: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(216, 162, 41, 0.14);
  color: #7c4d05;
  font-size: 0.82rem;
  font-weight: 900;
}

.showroom-card a,
.pending-link {
  display: table;
  margin-top: 12px;
  color: #d71920;
  font-weight: 900;
}

.pending-link {
  color: var(--muted);
}

.tollfree-section {
  background:
    radial-gradient(circle at 92% 8%, rgba(11, 94, 215, 0.08), transparent 28%),
    var(--white);
}

.tollfree-toolbar {
  max-width: 560px;
  margin-bottom: 22px;
}

.tollfree-toolbar label {
  display: grid;
  gap: 8px;
  color: #334155;
  font-weight: 900;
}

.tollfree-toolbar input {
  width: 100%;
  border: 1px solid var(--grey-100);
  border-radius: var(--radius);
  padding: 14px 15px;
  color: var(--text);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  outline: none;
}

.tollfree-toolbar input:focus {
  border-color: var(--samsung-blue);
  box-shadow: 0 0 0 4px rgba(11, 94, 215, 0.1);
}

.tollfree-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.tollfree-card {
  min-height: 154px;
  padding: 20px;
  display: grid;
  align-content: start;
  gap: 10px;
  border: 1px solid var(--grey-100);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.tollfree-logo {
  width: 104px;
  height: 52px;
  display: grid;
  place-items: center;
}

.tollfree-logo img {
  max-width: 100%;
  max-height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(7, 26, 51, 0.08));
}

.tollfree-logo span {
  width: 42px;
  height: 42px;
  display: none;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--samsung-blue), var(--navy));
  border-radius: 50%;
  font-size: 0.82rem;
  font-weight: 950;
}

.tollfree-logo > span:first-child {
  display: grid;
}

.tollfree-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.04rem;
}

.tollfree-links {
  display: grid;
  gap: 7px;
}

.tollfree-links a {
  width: max-content;
  color: #d71920;
  font-weight: 900;
}

.scan-section {
  background: var(--grey-50);
  max-width: none;
  padding-left: max(22px, calc((100% - 1240px) / 2 + 22px));
  padding-right: max(22px, calc((100% - 1240px) / 2 + 22px));
}

.scan-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 22px;
  align-items: stretch;
}

.scan-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--grey-100);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.scan-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: contain;
  background: var(--white);
}

.scan-card figcaption {
  padding: 14px 16px;
  color: var(--muted);
  background: var(--white);
  border-top: 1px solid var(--grey-100);
  font-weight: 800;
}

.scan-actions {
  padding: 28px;
  display: grid;
  align-content: center;
  gap: 12px;
  border: 1px solid var(--grey-100);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.scan-actions h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.6rem;
}

.scan-actions p {
  margin: 0 0 8px;
  color: var(--muted);
  line-height: 1.68;
}

.scan-button-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.scan-button-list .button {
  margin-top: 0;
}

.defence-grid article {
  min-height: 190px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  text-align: center;
}

.defence-grid article strong {
  font-size: 1.08rem;
}

.defence-grid article small {
  color: rgba(255, 255, 255, 0.68);
  font-weight: 700;
}

.service-logo-plate {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  padding: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
}

.service-logo-plate img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-logo-plate.govt-logo {
  color: var(--navy);
  font-weight: 950;
}

.service-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.service-icon::before {
  color: var(--gold);
  font-size: 1.7rem;
  font-weight: 900;
}

.service-icon.army::before {
  content: "★";
}

.service-icon.airforce::before {
  content: "✦";
}

.service-icon.bsf::before,
.service-icon.crpf::before,
.service-icon.itbp::before {
  content: "◆";
}

.service-icon.govt::before {
  content: "IN";
  font-size: 1rem;
}

.defence-photo-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.defence-photo-grid figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.defence-photo-placeholder {
  min-height: 170px;
  display: grid;
  place-items: center;
  padding: 22px;
  color: rgba(255, 255, 255, 0.78);
  background:
    linear-gradient(135deg, rgba(11, 94, 215, 0.26), rgba(216, 162, 41, 0.18)),
    rgba(255, 255, 255, 0.06);
  text-align: center;
  font-weight: 900;
}

.defence-photo-grid figcaption {
  padding: 13px 15px;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 800;
}

.support-section {
  background:
    radial-gradient(circle at 86% 10%, rgba(216, 162, 41, 0.12), transparent 28%),
    var(--white);
}

.support-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 22px;
  align-items: stretch;
}

.support-banner {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--grey-100);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.support-banner img {
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: contain;
  background: var(--white);
}

.support-banner figcaption {
  padding: 12px 16px;
  color: var(--muted);
  background: var(--grey-25);
  font-size: 0.86rem;
  font-weight: 800;
}

.support-panel {
  padding: 30px;
  display: grid;
  align-content: center;
  border-radius: var(--radius);
  color: var(--white);
  background:
    radial-gradient(circle at 88% 14%, rgba(255, 255, 255, 0.18), transparent 32%),
    linear-gradient(135deg, #a90808, #d71920 52%, var(--navy));
  box-shadow: var(--shadow);
}

.support-badge {
  width: max-content;
  margin-bottom: 18px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.support-panel h3 {
  margin: 0;
  color: var(--white);
  font-size: 3rem;
  line-height: 1;
}

.support-panel p {
  margin: 18px 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.72;
}

.support-hours {
  display: grid;
  gap: 4px;
  margin: 8px 0 24px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
}

.support-hours strong {
  color: var(--white);
}

.support-hours span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.support-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.support-services {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.support-services article,
.branch-card {
  border: 1px solid var(--grey-100);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.support-services article {
  padding: 20px;
}

.support-services span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--white);
  background: #d71920;
  border-radius: 50%;
  font-weight: 900;
}

.support-services h3,
.branch-card h3 {
  margin: 16px 0 8px;
  color: var(--navy);
  font-size: 1.05rem;
}

.support-services p,
.branch-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.branch-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.branch-card {
  padding: 22px;
}

.branch-card a {
  display: table;
  margin-top: 12px;
  color: #d71920;
  font-weight: 900;
}

.branch-card span {
  display: table;
  margin-top: 12px;
  color: var(--muted);
  font-weight: 900;
}

.why-grid strong {
  color: var(--samsung-blue);
}

.gallery-grid figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--grey-100);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.gallery-grid img,
.upload-placeholder {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.upload-placeholder {
  display: grid;
  place-items: center;
  padding: 24px;
  color: #496078;
  background:
    linear-gradient(135deg, rgba(11, 94, 215, 0.08), rgba(216, 162, 41, 0.12)),
    var(--grey-50);
  font-weight: 900;
  text-align: center;
}

.gallery-grid figcaption {
  padding: 14px 16px;
  color: var(--muted);
  font-weight: 800;
}

.gallery-grid figcaption a {
  color: var(--samsung-blue);
}

.gallery-links {
  margin-top: 18px;
}

.review-grid article span {
  color: var(--gold);
  font-size: 2.4rem;
  font-weight: 900;
}

.review-grid article p {
  color: var(--text);
  font-size: 1.02rem;
  line-height: 1.65;
}

.review-grid article strong {
  color: var(--samsung-blue);
}

.blog {
  background: var(--grey-50);
  max-width: none;
  padding-left: max(22px, calc((100% - 1240px) / 2 + 22px));
  padding-right: max(22px, calc((100% - 1240px) / 2 + 22px));
}

.blog-card a {
  display: inline-flex;
  margin-top: 12px;
  color: var(--samsung-blue);
  font-weight: 900;
}

.contact-card {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 38px;
  padding: 34px;
  border-radius: var(--radius);
  color: var(--white);
  background:
    radial-gradient(circle at 92% 14%, rgba(65, 183, 255, 0.28), transparent 32%),
    linear-gradient(135deg, var(--navy), #092d5a);
  box-shadow: var(--shadow);
}

.contact-card h2 {
  color: var(--white);
}

.contact-card p,
.contact-list span {
  color: rgba(255, 255, 255, 0.78);
}

.contact-list {
  margin: 24px 0;
  display: grid;
  gap: 10px;
  font-weight: 800;
}

.map-placeholder {
  min-height: 160px;
  display: grid;
  place-items: center;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.75);
  text-align: center;
}

.lead-form {
  padding: 24px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
}

.lead-form label {
  margin-bottom: 14px;
}

.lead-form textarea {
  resize: vertical;
}

.form-status {
  min-height: 22px;
  color: var(--samsung-blue);
  font-weight: 900;
}

.float-action {
  position: fixed;
  right: 18px;
  z-index: 60;
  min-width: 112px;
  padding: 12px 14px;
  border-radius: var(--radius);
  color: var(--white);
  box-shadow: var(--shadow);
  font-weight: 900;
  text-align: center;
}

.float-action.whatsapp {
  bottom: 84px;
  background: #128c7e;
}

.float-action.call {
  bottom: 28px;
  background: var(--samsung-blue);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 32px max(22px, calc((100% - 1240px) / 2 + 22px));
  color: rgba(255, 255, 255, 0.78);
  background: var(--navy);
}

.footer-logo-plate {
  width: 150px;
  min-height: 66px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  padding: 9px 12px;
  background: var(--white);
  border-radius: var(--radius);
}

.footer-logo {
  width: 100%;
  max-height: 48px;
  object-fit: contain;
}

.footer strong {
  color: var(--white);
}

.footer p {
  margin: 8px 0 0;
}

.footer a {
  display: inline-flex;
  margin-left: 18px;
  color: var(--white);
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes slowReveal {
  from {
    opacity: 0.76;
    transform: scale(1.06);
  }
  to {
    opacity: 1;
    transform: scale(1.02);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 1100px) {
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 116px;
    left: 16px;
    right: 16px;
    display: none;
    max-height: calc(100vh - 136px);
    overflow: auto;
    padding: 18px;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--grey-100);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-cta {
    text-align: center;
  }

  .hero h1 {
    font-size: 4.35rem;
  }

  .section h2,
  .split-section h2,
  .contact h2 {
    font-size: 2.75rem;
  }

  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .tollfree-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 860px) {
  .announcement {
    flex-direction: column;
    gap: 4px;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 72px 18px 56px;
  }

  .stats-panel,
  .profile-grid,
  .timeline,
  .brand-groups,
  .cpc-grid,
  .why-grid,
  .review-grid,
  .blog-grid,
  .showroom-grid,
  .scan-layout,
  .split-grid,
  .contact-card,
  .support-layout,
  .branch-grid {
    grid-template-columns: 1fr;
  }

  .timeline div,
  .stats-panel article {
    border-right: 0;
    border-bottom: 1px solid var(--grey-100);
  }

  .stats-panel article {
    border-bottom-color: rgba(255, 255, 255, 0.18);
  }

  .timeline div:last-child,
  .stats-panel article:last-child {
    border-bottom: 0;
  }

  .product-toolbar {
    grid-template-columns: 1fr;
  }

  .product-grid,
  .offer-grid,
  .gallery-grid,
  .defence-grid,
  .defence-photo-grid,
  .support-services,
  .tollfree-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer {
    flex-direction: column;
  }

  .footer a {
    margin: 0 16px 8px 0;
  }
}

@media (max-width: 560px) {
  .nav {
    padding: 0 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo-plate {
    width: 92px;
    height: 42px;
    padding: 0;
  }

  .brand strong {
    font-size: 0.86rem;
  }

  .brand small {
    display: none;
  }

  .hero h1 {
    font-size: 3.05rem;
  }

  .section,
  .product-section,
  .blog {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .section h2,
  .split-section h2,
  .contact h2 {
    font-size: 2.18rem;
  }

  .product-grid,
  .offer-grid,
  .gallery-grid,
  .defence-grid,
  .defence-photo-grid,
  .support-services,
  .tollfree-grid,
  .brand-grid {
    grid-template-columns: 1fr;
  }

  .support-banner img {
    min-height: 240px;
  }

  .support-panel h3 {
    font-size: 2.25rem;
  }

  .scan-card img {
    min-height: 240px;
  }

  .product-actions {
    grid-template-columns: 1fr;
  }

  .contact-card {
    padding: 22px;
  }

  .float-action {
    right: 12px;
    min-width: 96px;
    font-size: 0.85rem;
  }
}
