/* ═══════════════════════════════════════════════════════════════
   MODERN SUPERGIFTS DESIGN SYSTEM
   ═══════════════════════════════════════════════════════════════ */

:root {
  /* Brand palette — sampled directly from the Super Gifts logo mark */
  --primary: #241C6B; /* Navy — wordmark, headings, structure */
  --primary-mid: #4B3F9E; /* Navy, lighter — gradient stop */
  --accent: #D0021B; /* Red — CTAs & highlights */
  --accent-dark: #A5010F; /* Red, darker — hover/pressed */
  --accent-light: #FBE7E9; /* Red, tinted — soft accent surfaces */
  --brand-yellow: #FFD400; /* Yellow — ratings, small badges */
  --brand-green: #0B7A43; /* Green — success / available states */
  --brand-green-dark: #075C33;
  --midnight: #140F3D; /* Deepest navy — dark surfaces */
  --silver: #6B7280; /* Muted text on light surfaces */
  --pearl: #F4F3F8; /* Soft neutral surface tint */

  /* Legacy variables mapped to the brand palette */
  --brand-orange: #D0021B;
  --brand-teal: #241C6B;
  --brand-gold: #D0021B;
  --brand-navy: #241C6B;
  --brand-soft: #F4F3F8;
  --text-main: #241C6B;
  --text-muted: #6B7280;
  --border: #E5E7EB;
  --white: #ffffff;
  --gray-light: #F4F3F8;
  --card-shadow: 0 4px 24px rgba(36, 28, 107, 0.1);
  --radius-lg: 16px;
  --radius-md: 10px;
  --radius-sm: 6px;
  --ff-display:
    "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ff-body:
    "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* ── RESET & BASE ── */
* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  font-family: var(--ff-body);
  background: #F4F3F8; /* PREMIUM UPDATE - Pearl White */
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100vw;
}

/* ══════════════════════════════════════════
   HEADER / NAVIGATION
═══════════════════════════════════════════ */

.site-header {
  background: var(--white);
  border-bottom: 2px solid #E5E7EB; /* PREMIUM UPDATE - Gold border */
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(36, 28, 107, 0.06); /* PREMIUM UPDATE */
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: linear-gradient(
    135deg,
    #241C6B,
    #D0021B
  ); /* PREMIUM UPDATE - Navy to Gold */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.logo-text {
  font-family: var(--ff-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--brand-navy);
  line-height: 1;
}

.logo-text span {
  color: var(--brand-orange);
}

/* Navigation */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-menu a {
  font-size: 13px;
  font-weight: 500;
  color: #000;
  text-decoration: none;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}

.nav-menu a:hover {
  color: #241C6B; /* PREMIUM UPDATE - Navy Deep */
  background: #F4F3F8; /* PREMIUM UPDATE - Gold Light */
}

.nav-menu a.active {
  color: #D0021B; /* PREMIUM UPDATE - Gold Primary */
  font-weight: 600;
  background: #F4F3F8; /* PREMIUM UPDATE - Gold Light */
}

.header-cta {
  background: #D0021B; /* Brand red — primary CTA */
  color: #ffffff !important;
  border-radius: 8px;
  padding: 8px 18px !important;
  font-weight: 600 !important;
  transition: all 0.2s ease;
}

.header-cta:hover {
  background: #A5010F !important; /* PREMIUM UPDATE - Gold Dark */
  transform: translateY(-1px);
}

/* ══════════════════════════════════════════
   HERO / ADVERTISEMENT BANNER
═══════════════════════════════════════════ */

.hero {
  background: linear-gradient(
    130deg,
    #241C6B 0%,
    #4B3F9E 55%,
    #140F3D 100%
  ); /* PREMIUM UPDATE - Navy gradient */
  padding: 60px 48px;
  position: relative;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(208, 2, 27, 0.2) 0%,
    transparent 70%
  ); /* PREMIUM UPDATE - Gold glow */
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: 30%;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 196, 0, 0.15) 0%,
    transparent 70%
  ); /* PREMIUM UPDATE - Gold glow */
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 520px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 212, 0, 0.15); /* Yellow tint — reads on dark navy */
  border: 1px solid rgba(255, 212, 0, 0.4);
  color: #FFD400;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.hero h1 {
  font-family: var(--ff-display);
  font-size: 42px;
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero h1 em {
  color: #FFD400;
  font-style: normal;
}

.hero p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 420px;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ── BUTTONS ── */
.btn-primary {
  background: #D0021B; /* Brand red — primary CTA */
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  font-family: var(--ff-body);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(208, 2, 27, 0.3); /* PREMIUM UPDATE - Gold shadow */
}

.btn-outline {
  background: transparent;
  color: var(--white);
  font-weight: 500;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--ff-body);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.hero-right {
  position: absolute;
  right: 48px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 14px 20px;
  backdrop-filter: blur(10px);
  text-align: center;
  min-width: 120px;
}

.stat-card .num {
  font-family: var(--ff-display);
  font-size: 26px;
  font-weight: 700;
  color: #FFD400;
}

.stat-card .lbl {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 2px;
}

/* ── SLIDER DOTS ── */
.slider-dots {
  display: flex;
  gap: 6px;
  justify-content: center;
  padding: 14px;
  background: #F4F3F8; /* PREMIUM UPDATE - Gold Light */
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #E5E7EB; /* PREMIUM UPDATE - Gold border color */
  cursor: pointer;
  transition: all 0.2s;
}

.dot.active {
  background: #D0021B; /* PREMIUM UPDATE - Gold Primary */
  width: 22px;
  border-radius: 4px;
}

/* ══════════════════════════════════════════
   TWO COLUMN SECTION
═══════════════════════════════════════════ */

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 2px solid #E5E7EB; /* PREMIUM UPDATE - Gold border */
}

.col-panel {
  padding: 32px;
  border-right: 2px solid #E5E7EB; /* PREMIUM UPDATE - Gold border */
  background: var(--white);
}

.col-panel:last-child {
  border-right: none;
}

.section-title {
  font-family: var(--ff-display);
  font-size: 18px;
  font-weight: 700;
  color: #241C6B; /* PREMIUM UPDATE - Navy Deep */
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-title .pill {
  font-family: var(--ff-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: #F4F3F8; /* PREMIUM UPDATE - Gold Light bg */
  color: #D0021B; /* PREMIUM UPDATE - Gold text */
  padding: 3px 8px;
  border-radius: 20px;
}

/* ── BRAND LOGOS GRID ── */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.brand-chip {
  background: var(--white);
  border: 1.5px solid #E5E7EB; /* PREMIUM UPDATE - Gold border */
  border-radius: 8px;
  padding: 9px 6px;
  text-align: center;
  font-size: 11px;
  font-weight: 500;
  color: #6B7280; /* PREMIUM UPDATE - Silver Blue text */
  transition: all 0.2s;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.brand-chip:hover {
  border-color: #D0021B; /* PREMIUM UPDATE - Gold hover */
  color: #D0021B; /* PREMIUM UPDATE - Gold text */
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(208, 2, 27, 0.15); /* PREMIUM UPDATE - Gold shadow */
}

/* ── ADD-ON SERVICES ── */
.service-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border: 1.5px solid #E5E7EB; /* PREMIUM UPDATE - Gold border */
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 500;
  color: #241C6B; /* PREMIUM UPDATE - Navy text */
  cursor: pointer;
  transition: all 0.2s;
  background: var(--white);
}

.service-row:hover {
  border-color: #241C6B; /* PREMIUM UPDATE - Navy Deep */
  background: rgba(36, 28, 107, 0.04); /* PREMIUM UPDATE - Navy tint */
  transform: translateX(3px);
}

.service-num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #F4F3F8; /* PREMIUM UPDATE - Gold Light bg */
  color: #D0021B; /* PREMIUM UPDATE - Gold text */
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-row:hover .service-num {
  background: #241C6B;
  color: #FFD400;
}

/* ══════════════════════════════════════════
   UPDATES / BLOG SECTION
═══════════════════════════════════════════ */

.updates-section {
  background: linear-gradient(
    180deg,
    #F4F3F8 0%,
    var(--white) 100%
  ); /* PREMIUM UPDATE - Pearl White gradient */
  padding: 36px 32px;
  border-top: 2px solid #E5E7EB; /* PREMIUM UPDATE - Gold border */
}

.updates-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.see-all {
  font-size: 13px;
  font-weight: 600;
  color: #D0021B; /* PREMIUM UPDATE - Gold */
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: all 0.2s;
}

.see-all:hover {
  gap: 8px;
}

.cards-row {
  display: flex;
  align-items: stretch;
  gap: 16px;
}

.nav-arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid #E5E7EB; /* PREMIUM UPDATE - Gold border */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  color: #6B7280; /* PREMIUM UPDATE - Silver Blue */
  flex-shrink: 0;
  align-self: center;
  transition: all 0.2s;
}

.nav-arrow:hover {
  border-color: #D0021B; /* PREMIUM UPDATE - Gold */
  color: #D0021B; /* PREMIUM UPDATE - Gold */
}

.blog-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  flex: 1;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid #E5E7EB; /* PREMIUM UPDATE - Gold border */
  transition: all 0.25s;
  cursor: pointer;
}

.blog-card:hover {
  border-color: #D0021B; /* PREMIUM UPDATE - Gold */
  transform: translateY(-4px);
  box-shadow: var(--card-shadow);
}

.blog-img {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  position: relative;
  overflow: hidden;
}

.blog-card:nth-child(1) .blog-img {
  background: linear-gradient(
    135deg,
    #241C6B,
    #4B3F9E
  ); /* PREMIUM UPDATE - Navy gradient */
}

.blog-card:nth-child(2) .blog-img {
  background: linear-gradient(
    135deg,
    #140F3D,
    #241C6B
  ); /* PREMIUM UPDATE - Midnight to Navy */
}

.blog-card:nth-child(3) .blog-img {
  background: linear-gradient(
    135deg,
    #D0021B,
    #A5010F
  ); /* PREMIUM UPDATE - Gold gradient */
}

.blog-body {
  padding: 16px;
}

.blog-tag {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #241C6B; /* PREMIUM UPDATE - Navy */
  margin-bottom: 6px;
}

.blog-card:nth-child(2) .blog-tag {
  color: #140F3D; /* PREMIUM UPDATE - Midnight */
}

.blog-card:nth-child(3) .blog-tag {
  color: #D0021B; /* PREMIUM UPDATE - Gold */
}

.blog-heading {
  font-family: var(--ff-display);
  font-size: 15px;
  font-weight: 700;
  color: #241C6B; /* PREMIUM UPDATE - Navy */
  margin-bottom: 8px;
  line-height: 1.3;
}

.blog-excerpt {
  font-size: 12px;
  color: #6B7280; /* PREMIUM UPDATE - Silver Blue */
  line-height: 1.6;
}

/* ══════════════════════════════════════════
   OUR CLIENTS SECTION
═══════════════════════════════════════════ */

.clients-section {
  border-top: 2px solid #E5E7EB; /* PREMIUM UPDATE - Gold border */
  padding: 32px;
  background: var(--white);
  text-align: center;
}

.clients-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.client-chip {
  background: #F4F3F8; /* PREMIUM UPDATE - Gold Light */
  border: 1.5px solid #E5E7EB; /* PREMIUM UPDATE - Gold border */
  border-radius: 10px;
  padding: 10px 20px;
  font-size: 12px;
  font-weight: 600;
  color: #6B7280; /* PREMIUM UPDATE - Silver Blue */
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.client-chip:hover {
  border-color: #241C6B; /* PREMIUM UPDATE - Navy */
  color: #241C6B; /* PREMIUM UPDATE - Navy */
  background: #F4F3F8; /* PREMIUM UPDATE - Pearl White */
}

/* ══════════════════════════════════════════
   REVIEWS SECTION
═══════════════════════════════════════════ */

.reviews-section {
  background: #241C6B; /* PREMIUM UPDATE - Navy Deep */
  padding: 40px 32px;
  border-top: 2px solid #D0021B; /* PREMIUM UPDATE - Gold border */
}

.reviews-section .section-title {
  color: var(--white);
}

.reviews-section .section-title .pill {
  background: rgba(255, 212, 0, 0.15);
  color: #FFD400;
}

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

.review-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 20px;
  transition: all 0.2s;
}

.review-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.stars {
  color: #FFD400;
  font-size: 13px;
  margin-bottom: 10px;
}

.review-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 14px;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 10px;
}

.avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.reviewer-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
}

.reviewer-role {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
}

/* ══════════════════════════════════════════
   TRUST SECTION
═══════════════════════════════════════════ */

.trust-section {
  background: #F4F3F8; /* PREMIUM UPDATE - Gold Light */
  padding: 36px 32px;
  border-top: 2px solid #E5E7EB; /* PREMIUM UPDATE - Gold border */
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.trust-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  border: 1.5px solid #E5E7EB; /* PREMIUM UPDATE - Gold border */
  transition: all 0.2s;
}

.trust-card:hover {
  border-color: #D0021B; /* PREMIUM UPDATE - Gold */
  transform: translateY(-3px);
  box-shadow: var(--card-shadow);
}

.trust-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: 0 auto 12px;
}

.trust-card h4 {
  font-family: var(--ff-display);
  font-size: 20px;
  font-weight: 700;
  color: #241C6B; /* PREMIUM UPDATE - Navy */
  margin-bottom: 4px;
}

.trust-card p {
  font-size: 12px;
  color: #6B7280; /* PREMIUM UPDATE - Silver Blue */
  line-height: 1.5;
}

/* ══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */

footer {
  background: #ffffff;
  padding: 32px 32px 18px;
  border-top: 2px solid #D0021B;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 24px;
  margin-bottom: 22px;
}

/* Ensure footer columns align to the top of the brand block */
.footer-top {
  align-items: start;
}

.footer-brand p {
  font-family: var(--ff-body);
  font-size: 13.5px;
  color: #6B7280;
  line-height: 1.55;
  margin: 10px 0 14px;
}

.socials {
  display: flex;
  gap: 8px;
}

.soc-btn {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(208, 2, 27, 0.08);
  border: 1px solid rgba(208, 2, 27, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
  color: #D0021B;
}

.soc-btn:hover {
  background: #D0021B;
  border-color: #D0021B;
  color: #ffffff;
}

.footer-col h5 {
  font-family: var(--ff-body);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #241C6B;
  margin-bottom: 14px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin: 0;
  padding: 0;
}

.footer-col li {
  margin: 0;
}

.footer-col li a {
  font-family: var(--ff-body);
  font-size: 13.5px;
  line-height: 1.3;
  color: #4B5563;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col li a:hover {
  color: #D0021B;
}

.footer-bottom {
  border-top: 1px solid rgba(208, 2, 27, 0.15);
  padding-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}

.footer-copyright,
.footer-tagline {
  font-family: var(--ff-body);
  font-size: 12.5px;
  margin: 0;
  min-width: 0;
}

.footer-copyright {
  color: #241C6B;
}

.footer-tagline {
  color: #9CA3AF;
  font-style: italic;
}

.footer-bottom span {
  color: #D0021B;
  font-weight: 600;
}

/* ══════════════════════════════════════════
   CONTACT SECTION
═══════════════════════════════════════════ */

/* Contact Page Styles */
.contact-section {
  padding: 80px 32px;
  background: linear-gradient(
    135deg,
    #F4F3F8 0%,
    #F4F3F8 100%
  ); /* PREMIUM UPDATE - Pearl to Gold gradient */
  border-radius: var(--radius-lg);
  margin: 40px;
}

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

.contact-header {
  text-align: center;
  margin-bottom: 60px;
}

.contact-header .section-title {
  font-size: 42px;
  margin-bottom: 16px;
  color: #241C6B; /* PREMIUM UPDATE - Navy */
}

.contact-subtitle {
  font-size: 16px;
  color: #6B7280; /* PREMIUM UPDATE - Silver Blue */
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(36, 28, 107, 0.1); /* PREMIUM UPDATE - Navy shadow */
}

.contact-info h4 {
  font-family: var(--ff-display);
  font-size: 24px;
  color: #241C6B; /* PREMIUM UPDATE - Navy */
  margin-bottom: 32px;
  font-weight: 700;
}

.info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid #E5E7EB; /* PREMIUM UPDATE - Gold border */
}

.info-item:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.info-icon {
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(208, 2, 27, 0.12); /* PREMIUM UPDATE - Gold Light bg */
  border-radius: 12px;
}

.info-item > div:last-child {
  flex: 1;
}

.info-label {
  font-size: 12px;
  font-weight: 700;
  color: #D0021B; /* PREMIUM UPDATE - Gold */
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.info-value {
  font-size: 15px;
  color: #241C6B; /* PREMIUM UPDATE - Navy */
  line-height: 1.6;
  font-weight: 500;
}

.contact-socials {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid #E5E7EB; /* PREMIUM UPDATE - Gold border */
}

.social-link {
  display: inline-block;
  padding: 10px 16px;
  background: #D0021B;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.social-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(208, 2, 27, 0.25); /* PREMIUM UPDATE - Gold shadow */
}

.contact-form-wrapper {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(36, 28, 107, 0.1); /* PREMIUM UPDATE - Navy shadow */
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 12px;
  font-weight: 700;
  color: #241C6B; /* PREMIUM UPDATE - Navy */
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  padding: 14px 16px;
  border: 2px solid #E5E7EB; /* PREMIUM UPDATE - Gold border */
  border-radius: 8px;
  font-family: var(--ff-body);
  font-size: 14px;
  transition: all 0.3s ease;
  background: var(--white);
  color: #241C6B; /* PREMIUM UPDATE - Navy */
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #6B7280; /* PREMIUM UPDATE - Silver Blue */
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #D0021B; /* PREMIUM UPDATE - Gold */
  box-shadow: 0 0 0 4px rgba(208, 2, 27, 0.15); /* PREMIUM UPDATE - Gold shadow */
}

.contact-form button {
  align-self: flex-start;
  margin-top: 8px;
}

@media (max-width: 768px) {
  .contact-section {
    padding: 60px 20px;
    margin: 20px;
  }

  .contact-header .section-title {
    font-size: 32px;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-info,
  .contact-form-wrapper {
    padding: 30px 20px;
  }

  .info-icon {
    width: 40px;
    height: 40px;
    font-size: 24px;
  }
}

.contact-sub {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact-locations {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}

.contact-card {
  background: var(--white);
  border: 2px solid #E5E7EB; /* PREMIUM UPDATE - Gold border */
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.contact-card:hover {
  border-color: #D0021B; /* PREMIUM UPDATE - Gold */
  transform: translateY(-4px);
  box-shadow: var(--card-shadow);
}

.contact-card-icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.contact-card h4 {
  font-family: var(--ff-display);
  font-size: 16px;
  font-weight: 700;
  color: #241C6B; /* PREMIUM UPDATE - Navy */
  margin-bottom: 8px;
}

.contact-card p {
  font-size: 13px;
  color: #6B7280; /* PREMIUM UPDATE - Silver Blue */
  margin-bottom: 12px;
  line-height: 1.6;
}

.contact-card a {
  display: block;
  font-size: 13px;
  color: #D0021B; /* PREMIUM UPDATE - Gold */
  text-decoration: none;
  font-weight: 500;
  margin-bottom: 4px;
}

.contact-card a:hover {
  text-decoration: underline;
}

.contact-quick {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-socials {
  display: flex;
  gap: 12px;
}

.contact-socials a {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
}

.contact-socials a:hover {
  color: var(--brand-orange);
}

.contact-right {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-form h3 {
  font-family: var(--ff-display);
  font-size: 22px;
  color: var(--brand-navy);
  margin-bottom: 20px;
}

.contact-form .field-group label {
  font-size: 11px;
  font-weight: 600;
  color: #6B7280; /* PREMIUM UPDATE - Silver Blue */
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.contact-form .field-group input,
.contact-form .field-group textarea {
  border: 2px solid #E5E7EB; /* PREMIUM UPDATE - Gold border */
  border-radius: var(--radius-md);
  padding: 14px 16px;
  font-size: 14px;
  transition: all 0.2s;
  background: var(--white);
}

.contact-form .field-group input:focus,
.contact-form .field-group textarea:focus {
  border-color: #D0021B; /* PREMIUM UPDATE - Gold */
  box-shadow: 0 4px 16px rgba(208, 2, 27, 0.15); /* PREMIUM UPDATE - Gold shadow */
  outline: none;
}

.contact-form .submit_btn {
  width: 100%;
  margin-top: 8px;
}

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

.contact-map iframe {
  display: block;
  width: 100% !important;
  height: 320px !important;
  border: none !important;
}

@media (max-width: 768px) {
  .contact-section {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 20px;
  }

  .contact-locations {
    grid-template-columns: 1fr;
  }

  .contact-map iframe {
    height: 280px !important;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 212, 0, 0.15);
  border: 1px solid rgba(255, 212, 0, 0.3);
  color: #FFD400;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 20px;
}

/* ══════════════════════════════════════════
   PRODUCT CAROUSEL SECTION
═══════════════════════════════════════════ */

.products-carousel-section {
  background: linear-gradient(
    180deg,
    #F4F3F8 0%,
    var(--white) 100%
  ); /* PREMIUM UPDATE - Gold to White */
  padding: 60px 32px;
  border-top: 2px solid #E5E7EB; /* PREMIUM UPDATE - Gold border */
  border-bottom: 2px solid #E5E7EB; /* PREMIUM UPDATE - Gold border */
}

.carousel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.carousel-header .section-title {
  color: #241C6B; /* PREMIUM UPDATE - Navy */
  margin-bottom: 0;
}

.carousel-container {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.carousel-track {
  display: flex;
  gap: 20px;
  overflow: hidden;
  scroll-behavior: smooth;
  flex: 1;
  scroll-snap-type: x mandatory;
}

.carousel-slide {
  min-width: calc(100% / 3 - 14px);
  scroll-snap-align: start;
  transition: transform 0.3s ease;
}

.carousel-slide:hover {
  transform: translateY(-4px);
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid #E5E7EB; /* PREMIUM UPDATE - Gold border */
  box-shadow: var(--card-shadow);
  transition: all 0.3s ease;
  cursor: pointer;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  border-color: #D0021B; /* PREMIUM UPDATE - Gold */
  box-shadow: 0 12px 32px rgba(36, 28, 107, 0.15); /* PREMIUM UPDATE - Navy shadow */
  transform: translateY(-6px);
}

.product-image {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.product-icon {
  font-size: 64px;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.product-body {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-tag {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #D0021B; /* PREMIUM UPDATE - Gold */
  margin-bottom: 8px;
}

.product-name {
  font-family: var(--ff-display);
  font-size: 16px;
  font-weight: 700;
  color: #241C6B; /* PREMIUM UPDATE - Navy */
  margin-bottom: 6px;
  line-height: 1.3;
}

.product-desc {
  font-size: 12px;
  color: #6B7280; /* PREMIUM UPDATE - Silver Blue */
  line-height: 1.5;
  margin-bottom: 12px;
  flex-grow: 1;
}

.product-price {
  font-family: var(--ff-display);
  font-size: 18px;
  font-weight: 700;
  color: #D0021B; /* PREMIUM UPDATE - Gold */
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #D0021B;
  color: #ffffff;
  border: none;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.carousel-btn:hover {
  background: #A5010F; /* PREMIUM UPDATE - Gold Dark */
  transform: scale(1.1);
}

.carousel-btn.prev {
  order: -1;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #E5E7EB; /* PREMIUM UPDATE - Gold border */
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.dot:hover {
  background: #D0021B; /* PREMIUM UPDATE - Gold */
  transform: scale(1.2);
}

.dot.active {
  background: #D0021B; /* PREMIUM UPDATE - Gold */
  width: 28px;
  border-radius: 5px;
}

/* Responsive Carousel */
@media (max-width: 1024px) {
  .carousel-slide {
    min-width: calc(100% / 2 - 10px);
  }

  .products-carousel-section {
    padding: 40px 20px;
  }
}

@media (max-width: 768px) {
  .carousel-slide {
    min-width: 100%;
  }

  .carousel-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .carousel-header .section-title {
    font-size: 18px;
  }

  .see-all {
    align-self: flex-end;
  }

  .product-image {
    height: 150px;
  }

  .product-icon {
    font-size: 48px;
  }

  .product-name {
    font-size: 14px;
  }

  .carousel-btn {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }

  .products-carousel-section {
    padding: 30px 16px;
  }
}

/* ══════════════════════════════════════════
   RESPONSIVE DESIGN
═══════════════════════════════════════════ */

@media (max-width: 1024px) {
  .hero-right {
    position: static;
    transform: none;
    margin-top: 30px;
  }

  .blog-cards {
    grid-template-columns: 1fr;
  }

  .trust-section {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .site-header {
    padding: 0 16px;
    height: auto;
    flex-wrap: wrap;
  }

  .hero {
    padding: 40px 20px;
    min-height: auto;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero-btns {
    flex-direction: column;
  }

  .nav-menu {
    flex-wrap: wrap;
  }

  .two-col {
    grid-template-columns: 1fr;
  }

  .col-panel {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

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

  .blog-cards {
    grid-template-columns: 1fr;
  }

  .trust-section {
    grid-template-columns: 1fr;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    display: block;
    text-align: left;
  }

  .footer-copyright,
  .footer-tagline {
    display: block;
    width: 100%;
    max-width: calc(100vw - 64px);
    overflow-wrap: break-word;
  }

  .footer-tagline {
    margin-top: 6px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 24px;
  }

  .section-title {
    font-size: 16px;
  }

  .brand-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav-menu {
    gap: 4px;
  }

  .nav-menu a {
    padding: 4px 8px;
    font-size: 12px;
  }
}
