/* ============================================================
   JOTHI PAIINTS — Premium Website Stylesheet
   Brand Colors: Navy #1B1888 | Gold #D4A843
   Fonts: Playfair Display (headings) | Poppins (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,700&family=Poppins:wght@300;400;500;600;700&display=swap');

/* ── RESET & ROOT ─────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --navy:        #1B1888;
  --navy-dark:   #0D0B5E;
  --navy-mid:    #16148F;
  --navy-light:  #2626A0;
  --gold:        #D4A843;
  --gold-light:  #F0C040;
  --gold-dark:   #A8821A;
  --gold-glow:   rgba(212,168,67,0.25);
  --white:       #FFFFFF;
  --off-white:   #FAF8F2;
  --gray:        #777777;
  --light-gray:  #F4F4F4;
  --text:        #1A1A2E;

  --font-h: 'Playfair Display', Georgia, serif;
  --font-b: 'Poppins', Arial, sans-serif;

  --ease:        cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --trans:       0.35s var(--ease);
  --shadow:      0 8px 40px rgba(0,0,0,0.12);
  --shadow-gold: 0 4px 24px rgba(212,168,67,0.35);
  --radius:      12px;
}

.flex-founder{
    display: flex;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-b);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; transition: var(--trans); }
ul { list-style: none; }

/* ── TYPOGRAPHY ───────────────────────────────────────────── */
h1, h2, h3, h4, h5 { font-family: var(--font-h); line-height: 1.2; }
h1 { font-size: clamp(2.6rem, 6vw, 5rem); font-weight: 900; }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { font-size: 1rem; line-height: 1.8; }

.gold   { color: var(--gold); }
.navy   { color: var(--navy); }
.white  { color: var(--white); }

/* ── UTILITY ──────────────────────────────────────────────── */
.container   { width: 90%; max-width: 1200px; margin: 0 auto; }
.container-sm{ width: 90%; max-width: 860px;  margin: 0 auto; }
.text-center { text-align: center; }
.flex        { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }

.section-tag {
  display: inline-block;
  font-family: var(--font-b);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-h);
  margin-bottom: 1rem;
}

.section-lead {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.divider-gold {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 1rem auto 1.5rem;
}
.divider-gold.left { margin-left: 0; }

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: var(--font-b);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: none;
  transition: var(--trans);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-dark);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212,168,67,0.45);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--navy-dark);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover {
  background: var(--navy-dark);
  transform: translateY(-2px);
}

/* ── NAVBAR ───────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: var(--trans);
}

#navbar.scrolled {
  background: rgba(13, 11, 94, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.75rem 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-h);
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--navy-dark);
  letter-spacing: -0.03em;
  box-shadow: var(--shadow-gold);
}

.nav-logo-text { line-height: 1.15; }
.nav-logo-text .name {
  font-family: var(--font-h);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.08em;
}
.nav-logo-text .since {
  font-size: 0.62rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.05em;
  position: relative;
  text-transform: uppercase;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: var(--trans);
  border-radius: 1px;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--gold); }

.nav-cta { margin-left: 1rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--trans);
}

/* ── HERO ─────────────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Animated paint strokes background */
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(212,168,67,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 20% 70%, rgba(212,168,67,0.06) 0%, transparent 50%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 8rem 0 5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212,168,67,0.15);
  border: 1px solid rgba(212,168,67,0.3);
  color: var(--gold);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-title {
  color: var(--white);
  margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-title .brand {
  background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.hero-subtitle {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  max-width: 480px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stat-num {
  font-family: var(--font-h);
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

/* Hero visual — colour palette card */
.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  position: relative;
}

.paint-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px;
  padding: 2.5rem;
  text-align: center;
  width: 100%;
  max-width: 360px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  animation: float 6s ease-in-out infinite;
}

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

.paint-logo-big {
  font-family: var(--font-h);
  font-size: 5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.05em;
}

.paint-card-name {
  color: var(--white);
  font-family: var(--font-h);
  font-size: 1.2rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.paint-card-year {
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-top: 0.3rem;
}

.colour-swatches {
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.swatch {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.2);
  transition: var(--trans);
  cursor: pointer;
}
.swatch:hover { transform: scale(1.25); border-color: var(--gold); }

.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2.5s infinite;
}
.scroll-hint svg { opacity: 0.4; }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ── TRUST BAR ────────────────────────────────────────────── */
#trust {
  background: var(--gold);
  padding: 1.2rem 0;
  overflow: hidden;
}

.trust-scroll {
  display: flex;
  gap: 4rem;
  align-items: center;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy-dark);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.trust-item svg { flex-shrink: 0; }
.trust-dot {
  width: 5px; height: 5px;
  background: var(--navy-dark);
  border-radius: 50%;
  opacity: 0.4;
}

/* ── SECTIONS COMMON ──────────────────────────────────────── */
.section { padding: 7rem 0; }
.section-alt { background: var(--off-white); }
.section-dark {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  color: var(--white);
}

/* ── ABOUT SECTION ────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}

.about-img-box {
  /*background: linear-gradient(135deg, var(--navy-dark), var(--navy));*/
  border-radius: 24px;
  padding: 3rem 2rem;
  text-align: center;
  /*box-shadow: var(--shadow);*/
  position: relative;
  overflow: hidden;
}
.about-img-box::before {
  content: '';
  position: absolute;
  top: -50%; right: -30%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(212,168,67,0.2) 0%, transparent 70%);
  pointer-events: none;
}

.about-logo-big {
  font-family: var(--font-h);
  font-size: 6rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.about-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--gold);
  color: var(--navy-dark);
  border-radius: 50%;
  width: 90px; height: 90px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  font-family: var(--font-h);
  box-shadow: var(--shadow-gold);
}
.about-badge .num { font-size: 1.6rem; font-weight: 900; line-height: 1; }
.about-badge .lbl{ font-size: 0.55rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }

.about-text p { color: var(--gray); margin-bottom: 1.2rem; }

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.feature-icon {
  width: 36px; height: 36px;
  background: var(--gold-glow);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}

.feature-item h4 { font-size: 0.88rem; font-weight: 600; margin-bottom: 0.15rem; }
.feature-item p  { font-size: 0.78rem; color: var(--gray); line-height: 1.5; }

/* ── BRANDS SECTION ───────────────────────────────────────── */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
}

.brand-card {
  background: var(--white);
  border: 1.5px solid #EDEDED;
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: var(--trans);
}
.brand-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 30px rgba(212,168,67,0.2);
  transform: translateY(-4px);
}

.brand-logo-text {
  font-family: var(--font-h);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 0.5rem;
  display: block;
}

.brand-card:hover .brand-logo-text { color: var(--gold); }

.brand-tag {
  font-size: 0.68rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ── SERVICES SECTION ─────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.service-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  transition: var(--trans);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: var(--trans);
  transform-origin: left;
}
.service-card:hover { background: rgba(255,255,255,0.08); transform: translateY(-4px); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 56px; height: 56px;
  background: var(--gold-glow);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(212,168,67,0.2);
}

.service-card h3 { color: var(--white); margin-bottom: 0.75rem; }
.service-card p  { color: rgba(255,255,255,0.6); font-size: 0.92rem; }

/* ── COLOR PALETTE SHOWCASE ───────────────────────────────── */
#palette { padding: 7rem 0; background: var(--off-white); }

.palette-row {
  display: flex;
  gap: 0.5rem;
  border-radius: 20px;
  overflow: hidden;
  height: 200px;
  box-shadow: var(--shadow);
}

.palette-swatch-big {
  flex: 1;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  transition: flex 0.5s var(--ease), padding 0.5s var(--ease);
  cursor: pointer;
}
.palette-swatch-big:hover { flex: 3; }
.palette-swatch-big span {
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  opacity: 0;
  transition: opacity 0.3s ease;
  letter-spacing: 0.05em;
}
.palette-swatch-big:hover span { opacity: 1; }

/* ── WHY CHOOSE US ────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.why-card {
  padding: 2.5rem 2rem;
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--trans);
}
.why-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.12); }

.why-num {
  font-family: var(--font-h);
  font-size: 3.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
}

.why-card h4 { font-size: 1rem; margin-bottom: 0.5rem; }
.why-card p  { font-size: 0.85rem; color: var(--gray); }

/* ── TESTIMONIALS ─────────────────────────────────────────── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testi-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 2.5rem;
  transition: var(--trans);
}
.testi-card:hover { background: rgba(255,255,255,0.08); }

.testi-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.testi-text {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.testi-author { display: flex; align-items: center; gap: 1rem; }
.testi-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-h);
  font-weight: 700;
  color: var(--navy-dark);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.testi-name { font-weight: 600; color: var(--white); font-size: 0.92rem; }
.testi-loc  { font-size: 0.75rem; color: rgba(255,255,255,0.5); margin-top: 0.1rem; }

/* ── CTA BAND ─────────────────────────────────────────────── */
#cta {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
  padding: 6rem 0;
  text-align: center;
}
#cta h2 { color: var(--navy-dark); font-size: clamp(1.8rem, 4vw, 3rem); }
#cta p  { color: rgba(27,24,136,0.7); margin: 1rem auto 2.5rem; max-width: 560px; }

/* ── CONTACT SECTION ──────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 { margin-bottom: 1.5rem; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--navy-dark);
}
.contact-item h4 { font-size: 0.8rem; color: var(--gray); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.2rem; }
.contact-item p  { font-size: 0.95rem; font-weight: 500; }
.contact-item a:hover { color: var(--navy); }

.map-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 2rem;
}

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: var(--shadow);
}

.contact-form-wrap h3 { margin-bottom: 0.5rem; }
.contact-form-wrap p  { color: var(--gray); font-size: 0.9rem; margin-bottom: 2rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid #E0E0E0;
  border-radius: 10px;
  font-family: var(--font-b);
  font-size: 0.92rem;
  color: var(--text);
  background: var(--off-white);
  transition: var(--trans);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px var(--gold-glow);
}
.form-group textarea { resize: vertical; min-height: 110px; }

.form-submit { width: 100%; padding: 1rem; font-size: 1rem; }

/* Alert messages */
.alert {
  padding: 0.9rem 1.2rem;
  border-radius: 10px;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  display: none;
}
.alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; display: block; }
.alert-error   { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; display: block; }

/* ── FOOTER ───────────────────────────────────────────────── */
#footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.75);
  padding: 5rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .nav-logo-text .name { font-size: 1.3rem; }
.footer-about {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  margin: 1.2rem 0 1.5rem;
  line-height: 1.8;
}

.social-links { display: flex; gap: 0.75rem; }
.social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.07);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  border: 1px solid rgba(255,255,255,0.1);
  transition: var(--trans);
}
.social-link:hover {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
}

.footer-col h5 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: var(--trans);
}
.footer-col ul a:hover { color: var(--gold); padding-left: 4px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
}
.footer-contact-item svg { flex-shrink: 0; margin-top: 2px; color: var(--gold); }

.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom a:hover { color: var(--gold); }

/* ── WHATSAPP FLOAT ───────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 999;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  transition: var(--trans);
  color: #fff;
  font-size: 1.6rem;
  animation: wa-bounce 3s infinite;
}
.wa-float:hover { transform: scale(1.12); box-shadow: 0 10px 30px rgba(37,211,102,0.5); }

@keyframes wa-bounce {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 6px 32px rgba(37,211,102,0.7); }
}

/* ── PAGE HERO (inner pages) ──────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  padding: 8rem 0 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(212,168,67,0.1) 0%, transparent 70%);
}
.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-hero p  { color: rgba(255,255,255,0.65); max-width: 560px; margin: 0 auto; }
.breadcrumb {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { margin: 0 0.5rem; }

/* ── ABOUT PAGE ───────────────────────────────────────────── */
.timeline { position: relative; padding: 2rem 0; }
.timeline::before {
  content: '';
  position: absolute;
  left: 50%; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), var(--navy-light));
  transform: translateX(-50%);
}
.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
}
.timeline-item:nth-child(even) { flex-direction: row-reverse; }
.timeline-item:nth-child(even) .tl-content { text-align: right; }

.tl-year {
  width: 80px;
  flex-shrink: 0;
  font-family: var(--font-h);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  text-align: right;
}
.timeline-item:nth-child(even) .tl-year { text-align: left; }

.tl-dot {
  position: absolute;
  left: 50%; top: 0;
  transform: translateX(-50%);
  width: 14px; height: 14px;
  background: var(--gold);
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: var(--shadow-gold);
  z-index: 1;
}

.tl-content { flex: 1; }
.tl-content h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }
.tl-content p  { font-size: 0.9rem; color: var(--gray); }

/* ── BRANDS PAGE ──────────────────────────────────────────── */
.brands-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.brand-page-card {
  background: var(--white);
  border: 1.5px solid #EDEDED;
  border-radius: 20px;
  padding: 2.5rem 1.5rem;
  text-align: center;
  transition: var(--trans);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.brand-page-card:hover {
  border-color: var(--gold);
  box-shadow: 0 12px 40px rgba(212,168,67,0.2);
  transform: translateY(-6px);
}

.brand-page-logo {
  font-family: var(--font-h);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.brand-page-card:hover .brand-page-logo { color: var(--gold); }

.brand-page-name { font-weight: 700; font-size: 1rem; margin-bottom: 0.3rem; }
.brand-page-desc { font-size: 0.82rem; color: var(--gray); }

/* ── SERVICES PAGE ────────────────────────────────────────── */
.service-full-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.service-full-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 4px 30px rgba(0,0,0,0.07);
  border: 1.5px solid transparent;
  transition: var(--trans);
}
.service-full-card:hover {
  border-color: var(--gold);
  box-shadow: 0 12px 40px rgba(212,168,67,0.15);
  transform: translateY(-4px);
}

.service-full-icon {
  font-size: 2.5rem;
  margin-bottom: 1.2rem;
}
.service-full-card h3 { margin-bottom: 0.75rem; }
.service-full-card p  { color: var(--gray); font-size: 0.92rem; margin-bottom: 1.5rem; }

.service-features { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.sf-tag {
  background: var(--off-white);
  border: 1px solid #E0E0E0;
  border-radius: 50px;
  padding: 0.3rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--navy);
}

/* ── SCROLL REVEAL ────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── MOBILE MENU ──────────────────────────────────────────── */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy-dark);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--font-h);
  font-size: 2rem;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
}
.nav-mobile a:hover { color: var(--gold); }
.nav-mobile-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  font-size: 2rem;
  color: var(--white);
  cursor: pointer;
  background: none; border: none;
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .timeline::before { left: 20px; }
  .timeline-item { flex-direction: row !important; }
  .timeline-item:nth-child(even) .tl-content { text-align: left; }
  .tl-dot { left: 20px; }
  .tl-year { width: auto; text-align: left !important; }
}

@media (max-width: 768px) {
  h1 { font-size: 2.4rem; }
  .hero-grid   { grid-template-columns: 1fr; gap: 2rem; padding: 7rem 0 3rem; }
  .hero-visual { display: none; }
  .hero-stats  { gap: 1.5rem; }
  .about-grid  { grid-template-columns: 1fr; gap: 2.5rem; }
  .service-full-grid { grid-template-columns: 1fr; }
  .form-row    { grid-template-columns: 1fr; }
  .nav-links, .nav-cta { display: none; }
  .hamburger   { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .section { padding: 4.5rem 0; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-stats   { flex-wrap: wrap; gap: 1rem; }
  .palette-row  { height: 120px; }
  .brands-grid  { grid-template-columns: repeat(2, 1fr); }
}
