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

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

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

address {
  font-style: normal;
}

/* === DESIGN TOKENS === */
:root {
  --navy:         #0D1B3E;
  --blue:         #1565C0;
  --blue-light:   #E3F0FF;
  --orange:       #E65C00;
  --orange-hover: #CC5000;
  --green-wa:     #25D366;
  --white:        #FFFFFF;
  --off-white:    #F7F9FC;
  --grey-light:   #EEF1F6;
  --grey-mid:     #8E9BAD;
  --text-dark:    #0D1B3E;
  --text-mid:     #374151;
  --text-light:   #6B7280;

  --font-body:    'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-display: 'Syne', 'Plus Jakarta Sans', sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;

  --shadow-card:  0 2px 12px rgba(13,27,62,0.08);
  --shadow-hover: 0 8px 28px rgba(13,27,62,0.16);
  --shadow-float: 0 4px 24px rgba(37,211,102,0.45);

  --transition: 0.25s ease;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  line-height: 1.2;
  font-weight: 700;
  color: var(--navy);
}

h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
}

h2 {
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 1.1rem;
  font-weight: 700;
}

h4 {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--grey-mid);
  margin-bottom: 1rem;
}

p {
  color: var(--text-mid);
  max-width: 62ch;
}

/* === LAYOUT === */
.container {
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: 1.25rem;
}

section {
  padding-block: 5rem;
}

@media (max-width: 768px) {
  section { padding-block: 3.5rem; }
}

.bg-light { background: var(--off-white); }
.bg-tint  { background: #EEF3FA; }

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header p {
  margin-inline: auto;
  margin-top: 0.75rem;
  color: var(--text-light);
  font-size: 1.05rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--orange);
  margin-bottom: 0.6rem;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.7rem 1.5rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}

.btn:active { transform: scale(0.97); }

.btn-orange {
  background: var(--orange);
  color: #fff;
}
.btn-orange:hover { background: var(--orange-hover); box-shadow: 0 4px 16px rgba(230,92,0,0.35); }

.btn-whatsapp {
  background: var(--green-wa);
  color: #fff;
}
.btn-whatsapp:hover { background: #1ebe5d; box-shadow: 0 4px 16px rgba(37,211,102,0.4); }

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.55);
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: #fff; }

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn-outline:hover { background: var(--navy); color: #fff; }

/* === HEADER === */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(13,27,62,0.08);
  transition: box-shadow var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: 68px;
  overflow: visible;
}

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

.site-logo {
  height: 110px;
  width: auto;
  object-fit: contain;
}

/* Always show colored logo */
.logo-white { display: none; }

#nav-menu {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  margin-left: auto;
}

#nav-menu a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy);
  position: relative;
  padding-bottom: 2px;
  transition: color var(--transition);
}

#nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width var(--transition);
}

#nav-menu a:hover { color: var(--orange); }
#nav-menu a:hover::after { width: 100%; }

.header-cta {
  flex-shrink: 0;
  padding: 0.55rem 1.1rem;
  font-size: 0.88rem;
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.burger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.25s ease;
}


.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
@media (max-width: 900px) {
  .header-cta { display: none; }
  .burger { display: flex; }
  #nav-menu {
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 1rem 1.5rem 1.5rem;
    box-shadow: 0 8px 24px rgba(13,27,62,0.12);
    transform: translateY(-120%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    pointer-events: none;
  }
  #nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  #nav-menu a {
    color: var(--navy) !important;
    font-size: 1.05rem;
    padding: 0.8rem 0;
    width: 100%;
    border-bottom: 1px solid var(--grey-light);
  }
  #nav-menu a:last-child { border-bottom: none; }
}


/* === HERO CAROUSEL === */
#hero {
  position: relative;
  padding-block: 0;
}

.slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  height: 100svh;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-start;
  padding-top: 18vh;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}

.slide.active {
  opacity: 1;
  pointer-events: auto;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 16, 45, 0.28);
}

.slide-overlay--light {
  background: rgba(0, 10, 40, 0.18);
}

/* Centered single-column layout (Window AC slide) */
.slide-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 780px;
  margin-inline: auto;
}

/* Two-column layout (Cassette + Split AC slides) */
.slide-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2rem;
  width: 100%;
}

.slide-text {
  text-align: left;
}

.slide-text .slide-sub {
  margin-inline: 0;
}

.slide-text h1 {
  color: #fff;
  margin-bottom: 1rem;
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  text-shadow: 0 2px 16px rgba(0,0,0,0.4);
}

.slide-product {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 1.5rem;
}

.slide-product img {
  max-height: 360px;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 48px rgba(0,0,0,0.35));
  animation: floatAC 3.5s ease-in-out infinite;
}

/* Slide variant: white/light background */
.slide--white {
  background: #f0f5ff;
}
.slide--white .slide-text h1 {
  color: var(--navy);
  text-shadow: none;
}
.slide--white .slide-tag {
  color: var(--orange);
}
.slide--white .slide-sub {
  color: var(--text-mid);
  text-shadow: none;
}
.slide--white .btn-pill {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}
.slide--white .btn-pill:hover {
  background: var(--orange-hover);
  border-color: var(--orange-hover);
}

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

@media (max-width: 768px) {
  .slide-layout {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 0;
    padding-bottom: 1rem;
    gap: 0.5rem;
  }
  .slide-text { text-align: center; order: 2; }
  .slide-product { display: flex; order: 1; padding-top: 0; align-items: center; }
  .slide-product img { max-height: 130px; }
}

.slide-tag {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.75);
  margin-bottom: 0.85rem;
  max-width: none;
}

.slide-content h1 {
  color: #fff;
  margin-bottom: 1rem;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  text-shadow: 0 2px 16px rgba(0,0,0,0.35);
}

.slide-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.88);
  margin-bottom: 2.25rem;
  max-width: 52ch;
  line-height: 1.6;
  margin-inline: auto;
  text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}

.slide-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}

/* Pill "Know More" style button */
.btn-pill {
  background: rgba(10,10,10,0.75);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50px;
  padding: 0.75rem 2rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background var(--transition), color var(--transition);
}
.btn-pill:hover { background: #fff; color: var(--navy); }

/* Prev / Next buttons */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.35);
  color: #fff;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background var(--transition);
}
.slider-btn:hover { background: rgba(255,255,255,0.30); }
.slider-prev { left: 1.25rem; }
.slider-next { right: 1.25rem; }

/* Dots */
.slider-dots {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.40);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background var(--transition), transform var(--transition);
}
.dot.active {
  background: var(--orange);
  transform: scale(1.25);
}

@media (max-width: 768px) {
  .slider { height: 92vh; height: 92svh; }
  .slide { padding-top: 5vh; }
  .slide-content { max-width: 100%; }
  .slide-content h1 { font-size: clamp(1.7rem, 8vw, 2.4rem); }
  .slide-sub { font-size: 0.95rem; }
  .slider-btn { width: 38px; height: 38px; font-size: 1.3rem; }
}

@media (max-width: 480px) {
  .slide-ctas { flex-direction: column; }
  .slide-ctas .btn { justify-content: center; }
  .slider-btn { display: none; }
}

/* === TRUST BAR === */
.trust-bar {
  background: var(--navy);
  padding-block: 2rem;
}

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

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.25rem 1rem;
  position: relative;
}

.trust-item + .trust-item::before {
  content: '';
  position: absolute;
  left: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: rgba(255,255,255,0.15);
}

.trust-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.trust-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  letter-spacing: 0.02em;
}

@media (max-width: 600px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item + .trust-item::before { display: none; }
  .trust-item { border-bottom: 1px solid rgba(255,255,255,0.1); }
  .trust-item:nth-child(3), .trust-item:nth-child(4) { border-bottom: none; }
}

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

.about-text h2 { margin-bottom: 1.25rem; }
.about-text p { margin-bottom: 1rem; }
.about-text p:last-of-type { margin-bottom: 1.5rem; }

.about-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: var(--text-mid);
  font-weight: 500;
}

.about-list li svg {
  flex-shrink: 0;
  margin-top: 0.15rem;
  color: var(--orange);
}

.about-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hover);
  object-fit: cover;
  max-height: 480px;
}

@media (max-width: 860px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .about-image { order: -1; }
  .about-image img { max-height: 320px; }
}

/* === SERVICES === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius-md);
  padding: 2rem 1.6rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}

.service-icon {
  width: 52px;
  height: 52px;
  background: var(--blue-light);
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  margin-bottom: 1.25rem;
  color: var(--blue);
  transition: background var(--transition);
}

.service-card:hover .service-icon {
  background: var(--orange);
  color: #fff;
}

.service-card h3 { margin-bottom: 0.5rem; }
.service-card p  { font-size: 0.92rem; max-width: none; }

@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* === AC COLLECTION === */
.ac-type-group {
  margin-bottom: 3.5rem;
}

.ac-type-heading {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.ac-type-heading::after {
  content: '';
  flex: 1;
  height: 2px;
  background: var(--grey-light);
  border-radius: 1px;
}

.ac-type-heading span {
  padding-bottom: 2px;
  border-bottom: 2px solid var(--orange);
}

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

.ac-brand-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--white);
  border: 1.5px solid var(--grey-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  text-decoration: none;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.ac-brand-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.ac-img-wrap {
  width: 100%;
  aspect-ratio: 1;
  background: #f7f9fc;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.ac-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 0.75rem;
  transition: transform var(--transition);
}

.ac-brand-card:hover .ac-img-wrap img {
  transform: scale(1.05);
}

.ac-brand-name {
  display: block;
  padding: 0.6rem 0.75rem 0.25rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
}

.ac-enquire {
  display: block;
  padding: 0 0.75rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--orange);
  text-align: center;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity var(--transition), transform var(--transition);
}

.ac-brand-card:hover .ac-enquire {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .ac-brand-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
  .ac-brand-grid { grid-template-columns: repeat(2, 1fr); gap: 0.875rem; }
  .ac-enquire { opacity: 1; transform: none; }
}

/* === SECTORS === */
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.sector-card {
  border: 1px solid var(--grey-light);
  border-radius: var(--radius-md);
  padding: 1.5rem 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.sector-card:hover {
  background: var(--blue-light);
  border-color: var(--blue);
  transform: translateY(-3px);
}

.sector-icon {
  color: var(--blue);
  transition: color var(--transition);
}

.sector-card:hover .sector-icon { color: var(--navy); }

.sector-card span {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-mid);
  line-height: 1.3;
}

@media (max-width: 900px) {
  .sectors-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .sectors-grid { grid-template-columns: repeat(2, 1fr); }
}

/* === GALLERY === */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 0.75rem;
}

.gallery-item {
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
  position: relative;
}

.gallery-item--wide {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img { transform: scale(1.04); }

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
  .gallery-item--wide { grid-column: span 2; grid-row: span 1; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .gallery-item--wide { grid-column: span 1; }
}

/* === LIGHTBOX === */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(8,16,45,0.94);
  align-items: center;
  justify-content: center;
}

#lightbox.active { display: flex; }

#lightbox #lb-img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}

#lb-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background var(--transition);
}

#lb-close:hover { background: rgba(255,255,255,0.25); }

/* === PROCESS === */
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.process-step {
  flex: 1;
  text-align: center;
  padding: 0 1.25rem;
}

.step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(13,27,62,0.12);
  line-height: 1;
  margin-bottom: 0.75rem;
  transition: color var(--transition);
}

.process-step:hover .step-num { color: var(--orange); }

.process-step h3 { margin-bottom: 0.5rem; font-size: 1rem; }
.process-step p { font-size: 0.88rem; max-width: 18ch; margin-inline: auto; }

.process-connector {
  flex-shrink: 0;
  width: 40px;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--grey-mid) 0px, var(--grey-mid) 4px,
    transparent 4px, transparent 10px
  );
  margin-top: 1.5rem;
  align-self: flex-start;
}

@media (max-width: 860px) {
  .process-steps {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }
  .process-connector {
    width: 2px;
    height: 28px;
    margin: 0 auto;
    background: repeating-linear-gradient(
      180deg,
      var(--grey-mid) 0px, var(--grey-mid) 4px,
      transparent 4px, transparent 10px
    );
    align-self: auto;
  }
  .process-step { padding: 0.75rem 1rem; text-align: left; display: flex; align-items: flex-start; gap: 1.25rem; }
  .process-step p { max-width: none; margin-inline: 0; }
  .step-num { font-size: 2.2rem; flex-shrink: 0; margin-bottom: 0; padding-top: 0.2rem; }
}

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

.contact-info h2 { margin-bottom: 1.75rem; }

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.contact-row svg { flex-shrink: 0; color: var(--orange); margin-top: 2px; }

.contact-row div {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.contact-row strong { font-weight: 600; color: var(--navy); font-size: 0.95rem; }

.contact-row a {
  color: var(--blue);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color var(--transition);
}
.contact-row a:hover { color: var(--orange); }

.landmark {
  font-size: 0.84rem;
  color: var(--text-light);
}

.contact-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.contact-map iframe {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* === FOOTER === */
#site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-block: 3.5rem;
}

.footer-brand p {
  font-size: 0.9rem;
  max-width: 32ch;
  color: rgba(255,255,255,0.6);
  margin-top: 1rem;
}

.footer-tagline {
  font-style: italic;
  font-weight: 600;
  color: var(--orange) !important;
  margin-top: 0.5rem;
}

.footer-logo {
  height: 52px;
  width: auto;
  border-radius: 6px;
  object-fit: contain;
}

.footer-links, .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a, .footer-contact a, .footer-contact p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}

.footer-links a:hover, .footer-contact a:hover { color: #fff; }

.footer-contact p { color: rgba(255,255,255,0.65); max-width: none; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-block: 1.25rem;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.4);
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
}

/* === WHATSAPP FLOAT === */
.whatsapp-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.5rem;
  z-index: 990;
  background: var(--green-wa);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-float);
  animation: wa-pulse 2.8s ease infinite;
  transition: transform var(--transition);
}

.whatsapp-float:hover { transform: scale(1.1); }

@keyframes wa-pulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50%      { box-shadow: 0 4px 36px rgba(37,211,102,0.75); }
}

/* === SCROLL ANIMATIONS === */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}
