/* ================================================
   PRESIDENS FURNITURE & INTERIORS
   Palette: #001845 Navy  ·  #C9A227 Gold
   Vibe: Bright luxury — airy, editorial, alive
================================================ */

:root {
  --navy: #001845;
  --navy-deep: #000D24;
  --gold: #C9A227;
  --gold-light: #DEB84A;
  --gold-pale: #FDF6DC;
  --cream: #F9F6F1;
  --white: #FFFFFF;
  --light-grey: #F4F6FA;
  --mist: #E4E8EF;
  --text: #001233;
  --text-light: #5A6B82;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 4px;
  --shadow: 0 4px 24px rgba(0, 24, 69, 0.07);
  --shadow-md: 0 8px 32px rgba(0, 24, 69, 0.11);
  --shadow-lg: 0 20px 60px rgba(0, 24, 69, 0.15);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

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

.no-inherit {
  all: unset;
  /* Resets everything */
  /* Or specifically: */
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── TYPOGRAPHY ── */
h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.1;
  color: var(--navy);
}

h1 {
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
}

h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}

em {
  font-style: italic;
  color: var(--gold);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 0.9rem;
  font-family: var(--font-body);
}

.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--gold);
}

.section-sub {
  color: var(--text-light);
  max-width: 560px;
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.85;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--navy);
  color: white;
  padding: 0.95rem 2.2rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 2px solid var(--navy);
  transition: all var(--transition);
}

.btn-primary:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 162, 39, 0.35);
}

.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: var(--navy-deep);
  padding: 0.95rem 2.2rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 2px solid var(--gold);
  transition: all var(--transition);
}

.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 162, 39, 0.4);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--navy);
  padding: 0.95rem 2.2rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 2px solid var(--navy);
  transition: all var(--transition);
}

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

.btn-large {
  padding: 1.1rem 2.8rem;
  font-size: 0.85rem;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  background: var(--white);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  border-bottom-color: var(--mist);
  box-shadow: 0 2px 20px rgba(0, 24, 69, 0.07);
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo-img {
  height: 78px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 2.2rem;
}

.nav-links a {
  font-size: 0.78rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 400;
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.nav-links a:hover {
  color: var(--navy);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0.62rem 1.4rem;
  background: var(--navy);
  color: white;
  border-radius: var(--radius);
  transition: all var(--transition);
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--navy-deep);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: all var(--transition);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 999;
  padding: 7rem 2.5rem 2rem;
  transform: translateX(100%);
  transition: transform var(--transition);
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mob-link {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--navy);
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--mist);
  transition: color var(--transition);
}

.mob-link:hover {
  color: var(--gold);
}

.mob-cta {
  margin-top: 2.5rem;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
}

/* ── HERO ── bright, editorial, two-column ── */
.hero {
  background: var(--white);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

/* Faint gold arc top-right decoration */
.hero::after {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  border: 60px solid var(--gold-pale);
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  flex: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Left */
.hero-left {
  animation: fadeUp 0.8s ease both;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1.4rem;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--gold);
}

.hero h1 {
  color: var(--navy);
  margin-bottom: 1.5rem;
  font-weight: 300;
  letter-spacing: -0.01em;
}

.hero h1 em {
  color: var(--gold);
  font-style: italic;
}

.hero-sub {
  color: var(--text-light);
  font-size: 1.02rem;
  max-width: 460px;
  margin-bottom: 2.5rem;
  line-height: 1.9;
}

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

/* Trust strip */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--mist);
}

.trust-item {
  display: flex;
  flex-direction: column;
}

.trust-num {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--navy);
  line-height: 1;
}

.trust-label {
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 0.2rem;
}

.trust-divider {
  width: 1px;
  height: 38px;
  background: var(--mist);
}

/* Right — image frame */
.hero-right {
  position: relative;
  animation: fadeUp 0.8s ease 0.15s both;
}

.hero-img-frame {
  position: relative;
  height: 580px;
  border-radius: 4px;
  overflow: hidden;
}

.hero-img-frame img {
  transition: transform 7s ease;
}

.hero-img-frame:hover img {
  transform: scale(1.04);
}

/* Gold border accent — offset frame */
.hero-img-frame::before {
  content: '';
  position: absolute;
  top: -12px;
  right: -12px;
  bottom: 12px;
  left: 12px;
  border: 2px solid var(--gold);
  border-radius: 4px;
  z-index: -1;
  opacity: 0.4;
}

.hero-img-tag {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(0, 24, 69, 0.55);
  padding: 0.4rem 0.9rem;
  border-radius: 2px;
  backdrop-filter: blur(8px);
}

/* Floating card */
.hero-float-card {
  position: absolute;
  bottom: -1.5rem;
  left: -2.5rem;
  background: var(--white);
  border-radius: 8px;
  padding: 1.1rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow-lg);
  min-width: 210px;
  z-index: 3;
  border-left: 3px solid var(--gold);
}

.float-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gold-pale);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.hero-float-card strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
}

.hero-float-card span {
  font-size: 0.75rem;
  color: var(--text-light);
}

/* Bottom gold band */
.hero-rule {
  height: 4px;
  background: linear-gradient(to right, var(--navy) 0%, var(--gold) 50%, var(--navy) 100%);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── PAIN POINTS ── warm cream bg ── */
.pain-points {
  padding: 7rem 0;
  background: var(--cream);
}

.pain-points h2 {
  margin-bottom: 0.5rem;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

.pain-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}

.pain-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.pain-room-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--white);
  background: var(--navy);
  padding: 0.3rem 0.8rem;
  border-radius: 2px;
  z-index: 1;
}

.pain-img-wrap {
  height: 210px;
  overflow: hidden;
}

.pain-img-wrap img {
  transition: transform 0.6s ease;
}

.pain-card:hover .pain-img-wrap img {
  transform: scale(1.06);
}

.pain-card h3 {
  font-size: 1.15rem;
  padding: 1.4rem 1.5rem 0.5rem;
  color: var(--navy);
  line-height: 1.3;
}

.pain-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  padding: 0 1.5rem 1rem;
  line-height: 1.85;
}

.pain-link {
  display: block;
  padding: 0.9rem 1.5rem 1.4rem;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  color: var(--gold);
  text-transform: uppercase;
  transition: color var(--transition);
}

.pain-link:hover {
  color: var(--navy);
}

/* ── SOLUTIONS ── white bg ── */
.solutions {
  padding: 7rem 0;
  background: var(--white);
}

.tabs {
  display: flex;
  border-bottom: 2px solid var(--mist);
  margin: 2.5rem 0;
}

.tab {
  background: none;
  border: none;
  padding: 0.9rem 2rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-light);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: all var(--transition);
}

.tab.active,
.tab:hover {
  color: var(--navy);
  border-bottom-color: var(--gold);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.solution-visual {
  height: 500px;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.solution-visual::after {
  content: '';
  position: absolute;
  top: 16px;
  right: -16px;
  bottom: -16px;
  left: 16px;
  border: 2px solid var(--gold);
  border-radius: 4px;
  z-index: -1;
  opacity: 0.3;
}

.solution-info h3 {
  font-size: 2.2rem;
  margin-bottom: 0.8rem;
}

.sol-intro {
  color: var(--text-light);
  margin-bottom: 1.75rem;
  font-size: 0.95rem;
  line-height: 1.85;
}

/* Accordion */
.accordion {
  margin-bottom: 2.5rem;
}

.acc-item {
  border-bottom: 1px solid var(--mist);
}

.acc-trigger {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1rem 0;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color var(--transition);
}

.acc-trigger:hover {
  color: var(--gold);
}

.acc-trigger span {
  font-size: 1.3rem;
  color: var(--gold);
  transition: transform var(--transition);
  line-height: 1;
}

.acc-trigger.open span {
  transform: rotate(45deg);
}

.acc-body {
  display: none;
  padding: 0 0 1.1rem;
  font-size: 0.87rem;
  color: var(--text-light);
  line-height: 1.9;
}

.acc-body.open {
  display: block;
  animation: fadeIn 0.3s ease;
}

.acc-body strong {
  color: var(--navy);
  font-weight: 500;
}

/* ── PROCESS ── single dark navy section ── */
.process {
  padding: 7rem 0;
  background: var(--navy);
}

.process .section-label {
  color: var(--gold);
}

.process h2 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.process .section-sub {
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 4rem;
}

.steps {
  display: flex;
  flex-direction: column;
  max-width: 700px;
}

.step {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
}

.step-num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.55;
  line-height: 1;
  min-width: 72px;
}

.step-body h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

.step-body p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.88rem;
  line-height: 1.8;
}

.step-connector {
  width: 1px;
  height: 40px;
  background: rgba(201, 162, 39, 0.2);
  margin-left: 35px;
}

.process-cta {
  margin-top: 3.5rem;
}

/* ── GALLERY ── light grey ── */
.gallery-section {
  padding: 7rem 0;
  background: var(--light-grey);
}

.gallery-filters {
  display: flex;
  gap: 0.75rem;
  margin: 2rem 0 2.5rem;
  flex-wrap: wrap;
}

.gfilter {
  background: none;
  border: 1.5px solid var(--mist);
  padding: 0.5rem 1.4rem;
  border-radius: 100px;
  font-size: 0.76rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-light);
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-body);
}

.gfilter.active,
.gfilter:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: white;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.gitem {
  aspect-ratio: 3/4;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gitem:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}

.gitem img {
  transition: transform 0.5s ease;
}

.gitem:hover img {
  transform: scale(1.07);
}

.goverlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 13, 36, 0.7) 0%, transparent 55%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
}

.gitem:hover .goverlay {
  opacity: 1;
}

.goverlay span {
  font-family: var(--font-display);
  font-size: 1rem;
  color: white;
  letter-spacing: 0.04em;
}

.gitem.hidden {
  display: none;
}

/* ── STATS BAND ── gold — alive and energetic ── */
.stats-band {
  background: var(--gold);
  padding: 4rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 400;
  color: var(--navy);
  line-height: 1;
}

.stat-suffix {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--navy);
  opacity: 0.6;
}

.stat p {
  color: rgba(0, 24, 69, 0.65);
  font-size: 0.76rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-top: 0.5rem;
}

/* ── TESTIMONIALS ── white ── */
.testimonials {
  padding: 7rem 0;
  background: var(--white);
}

.testimonials h2 {
  margin-bottom: 2.5rem;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testi-card {
  background: var(--cream);
  border-radius: 8px;
  padding: 2.25rem;
  border-bottom: 3px solid var(--gold);
  transition: transform var(--transition), box-shadow var(--transition);
}

.testi-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.stars {
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 1.1rem;
  letter-spacing: 3px;
}

.testi-card blockquote {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.65;
  margin-bottom: 1.6rem;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.testi-author strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy);
}

.testi-author span {
  font-size: 0.76rem;
  color: var(--text-light);
}

/* ── FINAL CTA ── cream, navy text, bright ── */
.final-cta {
  padding: 8rem 2rem;
  text-align: center;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta::after {
  content: '';
  position: absolute;
  bottom: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 24, 69, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta .container {
  position: relative;
  z-index: 1;
}

.final-cta h2 {
  margin-bottom: 1.1rem;
}

.final-cta p {
  color: var(--text-light);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  font-size: 1rem;
}

.cta-note {
  margin-top: 1.5rem !important;
  font-size: 0.78rem !important;
  color: var(--text-light) !important;
  letter-spacing: 0.04em;
}



/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 998;
  background: #25D366;
  color: white;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.2rem 0.75rem 0.85rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  font-size: 0.82rem;
  font-weight: 500;
  transition: all var(--transition);
  animation: bounceIn 1s ease 2s both;
}

.wa-float svg {
  width: 22px;
  height: 22px;
}

.wa-float:hover {
  background: #1ebe59;
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5);
}

@keyframes bounceIn {
  from {
    transform: scale(0.5);
    opacity: 0;
  }

  70% {
    transform: scale(1.1);
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* TikTok floating button */
.tiktok-float {
  position: fixed;
  bottom: 7.5rem;
  right: 2rem;
  z-index: 999;
  background: #010101;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
}

.tiktok-float svg {
  width: 22px;
  height: 22px;
  fill: white;
  display: block;
}

.tiktok-float:hover {
  transform: translateY(-3px);
  background: #fe2c55;
  box-shadow: 0 8px 24px rgba(254, 44, 85, 0.45);
}


/* Footer social icons */
.footer {
  background: var(--navy);
  padding: 4.5rem 0 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem 3.5rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo-div {
  display: inline-block;
  background: white;
  border-radius: 10px;
}

.footer-logo-text {
  padding: 0px 5px 0px 5px;
  color: var(--navy);
  line-height: 0;
}

important .footer-logo-img {
  height: 90px;
  width: auto;
  object-fit: contain;
}

.footer h4 {
  font-family: var(--font-body);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.3rem;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding-left: 20px;
}

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.42);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--gold-light);
}

.footer-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #25D366;
  color: white;
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 500;
  transition: all var(--transition);
  margin-bottom: 1rem;
}

.footer-wa-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.footer-wa-btn:hover {
  background: #1ebe59;
  transform: translateY(-2px);
}

.footer-handle {
  font-size: 0.77rem;
  color: rgba(255, 255, 255, 0.28);
  letter-spacing: 0.05em;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.4rem;
  justify-content: center;
}

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5) !important;
  color: white !important;
  transition: all var(--transition);

}

.footer-socials a svg {
  width: 16px;
  height: 16px;
  display: block;
}

.footer-socials a:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.footer-bottom {
  text-align: center;
  padding: 1.6rem 2rem;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.18);
}


/* ── RESPONSIVE ── */
@media (max-width: 900px) {

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-menu {
    display: flex;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-right {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-bottom: 4rem;
  }

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

  .solution-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .solution-visual {
    height: 300px;
  }

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

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

  .gitem:nth-child(1) {
    grid-column: span 2;
  }

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

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-links {
    padding: 2.5rem 1.5rem 2rem;
  }

  .footer-contact {
    padding: 2.5rem 1.5rem 2rem;
  }
}

@media (max-width: 600px) {
  .hero-inner {
    padding: 0.1rem 1.5rem 2rem;
  }

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

  .hero-trust {
    gap: 1rem;
    flex-wrap: wrap;
  }

  .trust-num {
    font-size: 1.4rem;
  }

  .nav {
    padding: 0 1.5rem;
  }

  .nav-logo-img {
    height: 58px;
  }

  .container {
    padding: 0 1.25rem;
  }

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

  .stat-num {
    font-size: 2.2rem;
  }

  .stat-suffix {
    font-size: 1.5rem;
  }

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

  .gitem:nth-child(1) {
    grid-column: span 2;
  }

  .wa-float span {
    display: none;
  }

  .wa-float {
    padding: 0.85rem;
    border-radius: 50%;
  }

  .hero::after {
    display: none;
  }

  .footer-socials a {
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
  }

  .footer-socials a svg {
    width: 16px;
    height: 16px;
  }
}