/* =========================================================
           ROOT — Brand Colors (OMER SOFA)
        ========================================================= */
:root {
  --brand: #cb4154;
  --brand-dark: #a83242;
  --brand-darker: #8f2a38;
  --brand-light: #d96a7a;
  --brand-lighter: #e5929e;
  --brand-ultralight: #f5d0d5;
  --brand-gold: #c9a84c;
  --brand-gold-light: #dcc27a;
  --brand-gold-dark: #a8883a;
  --charcoal: #1a1414;
  --charcoal-light: #2d2525;
  --cream: #f8f5f0;
  --cream-light: #faf8f5;
  --white: #ffffff;
  --muted: #7a746e;
  --border: rgba(26, 20, 20, 0.08);
  --border-light: rgba(255, 255, 255, 0.06);

  --serif: "Playfair Display", serif;
  --sans: "Inter", sans-serif;

  --shadow: 0 8px 40px rgba(26, 20, 20, 0.08);
  --shadow-lg: 0 24px 80px rgba(26, 20, 20, 0.12);

  --radius: 12px;
  --transition: 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

/* =========================================================
           RESET
        ========================================================= */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--charcoal);
  overflow-x: hidden;
  line-height: 1.6;
}

img {
  width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: min(1160px, 92%);
  margin: 0 auto;
  padding: 0 16px;
}

/* =========================================================
           UTILITY
        ========================================================= */
.eyebrow {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 14px;
}

.eyebrow.light {
  color: var(--brand-light);
}

.heading-xl {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(44px, 6.5vw, 82px);
  line-height: 0.96;
  letter-spacing: -0.02em;
}

.heading-lg {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(34px, 4.5vw, 54px);
  line-height: 1.02;
  letter-spacing: -0.01em;
}

.heading-md {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.06;
}

.text-muted {
  color: var(--muted);
}

.text-brand {
  color: var(--brand);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.4px;
  transition: var(--transition);
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--brand);
  color: var(--white);
  border-color: var(--brand);
}

.btn-primary:hover {
  background: var(--brand-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--charcoal);
  border-color: var(--white);
  transform: translateY(-3px);
}

.btn-brand {
  background: var(--brand);
  color: var(--white);
  border-color: var(--brand);
}

.btn-brand:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.section-padding {
  padding: 100px 0;
}

.section-padding-sm {
  padding: 70px 0;
}

/* =========================================================
           HEADER — Fixed with Solid Background
        ========================================================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0;
  background: var(--charcoal);
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease;
}

.header.scrolled {
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.12);
}

.nav {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* --- Logo --- */
.logo-textonly {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  line-height: 1;
  gap: 2px;
  padding: 4px 0;
  flex-shrink: 0;
}

.logo-textonly .brand-name {
  font-family: var(--serif);
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.5px;
  line-height: 1.1;
}

.logo-textonly .brand-name .highlight {
  color: var(--brand-light);
}

.logo-textonly .divider {
  width: 32px;
  height: 2px;
  background: var(--brand);
  border-radius: 2px;
  margin: 2px 0;
}

.logo-textonly .sub {
  font-size: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3.5px;
  color: rgba(255, 255, 255, 0.5);
}

.logo-textonly .sub .highlight {
  color: var(--brand-light);
}

/* --- Navigation --- */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
}

.nav-menu > li {
  position: relative;
}

.nav-menu > li > a {
  position: relative;
  transition: color 0.3s;
  padding-bottom: 3px;
  display: inline-block;
}

.nav-menu > li > a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--brand-light);
  transition: width 0.35s ease;
}

.nav-menu > li > a:hover {
  color: var(--white);
}

.nav-menu > li > a:hover::after {
  width: 100%;
}

/* --- Dropdown --- */
.nav-menu li.has-dropdown {
  position: relative;
}

.nav-menu li.has-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}

/* IMPORTANT: override the generic nav underline pseudo-element.
           The dropdown arrow must sit on the RIGHT of "Our Services". */
.nav-menu li.has-dropdown > a::after {
  content: "";
  position: static;
  width: 7px;
  height: 7px;
  margin: -3px 0 0 2px;
  border-right: 1.5px solid rgba(255, 255, 255, 0.65);
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.65);
  background: transparent;
  transform: rotate(45deg);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease;
  flex: 0 0 7px;
}

.nav-menu li.has-dropdown:hover > a::after,
.nav-menu li.has-dropdown.open > a::after {
  transform: rotate(225deg);
  border-color: var(--brand-light);
}

.nav-menu .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 250px;
  padding: 10px;
  margin: 0;
  background: rgba(45, 37, 37, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  list-style: none;
  border-radius: 12px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 100;
}

/* Invisible bridge prevents the dropdown from disappearing while
           moving the mouse from the menu item into the dropdown. */
.nav-menu li.has-dropdown::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 12px;
}

.nav-menu .dropdown li {
  padding: 0;
}

.nav-menu .dropdown li a {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 10px 13px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.72);
  border-radius: 7px;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    padding-left 0.2s ease;
  white-space: nowrap;
}

.nav-menu .dropdown li a:hover {
  color: var(--white);
  background: rgba(203, 65, 84, 0.16);
  padding-left: 17px;
}

.nav-menu li.has-dropdown:hover .dropdown,
.nav-menu li.has-dropdown.open .dropdown {
  display: block;
}

/* --- Header Contact Buttons --- */
.nav-contact {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 4px;
}

.nav-phone {
  font-size: 12px;
  font-weight: 600;
  color: var(--white) !important;
  background: rgba(255, 255, 255, 0.06);
  padding: 6px 14px;
  border-radius: 50px;
  transition:
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.nav-phone:hover {
  background: var(--brand);
  color: var(--white) !important;
  border-color: var(--brand);
}
.nav-phone::after {
  display: none !important;
}

.nav-wa {
  font-size: 18px;
  color: #25d366 !important;
  background: rgba(37, 211, 102, 0.1);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition:
    background 0.3s ease,
    transform 0.3s ease,
    color 0.3s ease;
  border: 1px solid rgba(37, 211, 102, 0.1);
}
.nav-wa:hover {
  background: #25d366;
  color: var(--white) !important;
  transform: scale(1.05);
  border-color: #25d366;
}
.nav-wa::after {
  display: none !important;
}

.nav-cta {
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 9px 22px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  transition: var(--transition);
  color: var(--white);
  letter-spacing: 0.3px;
}

.nav-cta:hover {
  background: var(--white);
  color: var(--charcoal);
  border-color: var(--white);
}
.nav-cta::after {
  display: none !important;
}

.mobile-toggle {
  display: none;
  font-size: 26px;
  color: var(--white);
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

/* =========================================================
           HERO
        ========================================================= */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  position: relative;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  background-image:
    linear-gradient(
      0deg,
      rgba(26, 20, 20, 0.7) 0%,
      rgba(26, 20, 20, 0.25) 50%,
      rgba(26, 20, 20, 0.05) 80%
    ),
    url("https://images.unsplash.com/photo-1555041469-a586c61ea9bc?auto=format&fit=crop&w=2400&q=90");
  background-size: cover;
  background-position: center 35%;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 100px 0 50px;
}

.hero .eyebrow {
  color: var(--brand-light);
  font-weight: 600;
  letter-spacing: 4px;
  font-size: 11px;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(48px, 7.5vw, 92px);
  line-height: 0.94;
  font-weight: 500;
  margin-bottom: 18px;
}

.hero h1 em {
  color: var(--brand-light);
  font-style: italic;
}

.hero-description {
  max-width: 480px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 32px;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* =========================================================
           ABOUT
        ========================================================= */
.intro-section {
  background: var(--white);
  text-align: center;
  padding: 80px 0 70px;
  border-bottom: 1px solid var(--border);
}

.intro-section .heading-lg {
  max-width: 700px;
  margin: 0 auto 14px;
}

.intro-section p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

/* =========================================================
           SERVICES
        ========================================================= */
.services-section {
  background: var(--cream-light);
}

.services-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 50px;
}

.services-header .heading-lg {
  margin-bottom: 10px;
}

.services-header p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(26, 20, 20, 0.03);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(203, 65, 84, 0.15);
}

.service-card .service-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: var(--cream);
  position: relative;
}

.service-card .service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

.service-card .service-body {
  padding: 22px 26px 26px;
}

.service-card .icon {
  font-size: 22px;
  display: block;
  color: var(--brand);
  margin-bottom: 6px;
}

.service-card h3 {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  margin-bottom: 4px;
  line-height: 1.2;
}

.service-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

.service-card .tag {
  display: inline-block;
  margin-top: 10px;
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--brand);
  border: 1px solid rgba(203, 65, 84, 0.15);
  padding: 2px 14px;
  border-radius: 50px;
}

/* — Foam Highlight — */
.foam-highlight {
  grid-column: span 3;
  background: var(--charcoal);
  border-radius: var(--radius);
  padding: 36px 42px;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.foam-highlight .foam-info .label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--brand-light);
  font-weight: 600;
}

.foam-highlight .foam-info h3 {
  font-family: var(--serif);
  font-size: clamp(24px, 2.8vw, 34px);
  font-weight: 500;
  line-height: 1.1;
}

.foam-highlight .foam-info p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  max-width: 380px;
  line-height: 1.6;
}

.foam-badges {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.foam-badge {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 14px 22px;
  text-align: center;
  min-width: 80px;
  transition: var(--transition);
}

.foam-badge:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.foam-badge .density {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  color: var(--brand-light);
  display: block;
  line-height: 1;
}

.foam-badge .desc {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 2px;
  font-weight: 500;
}

/* =========================================================
           GALLERY
        ========================================================= */
.gallery-section {
  background: var(--white);
  padding: 80px 0 100px;
}

.gallery-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 50px;
}

.gallery-header .heading-lg {
  margin-bottom: 10px;
}

.gallery-header p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.gallery-grid .gallery-item:first-child {
  grid-row: span 2;
}

.gallery-item {
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
  background: var(--cream);
  aspect-ratio: 4 / 3;
}

.gallery-item:first-child {
  aspect-ratio: 4 / 5.5;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px 24px 24px;
  background: linear-gradient(0deg, rgba(26, 20, 20, 0.7) 0%, transparent 100%);
  color: var(--white);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.gallery-item:hover .overlay {
  opacity: 1;
}

.gallery-item .overlay h4 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
}

.gallery-item .overlay p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 2px;
}

/* =========================================================
           MAP SECTION
        ========================================================= */
.map-section {
  background: var(--cream-light);
}

.map-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 45px;
}

.map-header .heading-lg {
  margin-bottom: 10px;
}

.map-header p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.map-container:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: 0;
  display: block;
  pointer-events: none;
}

.map-overlay-link {
  display: block;
  position: relative;
}

.map-overlay-link .click-hint {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(26, 20, 20, 0.8);
  backdrop-filter: blur(4px);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition:
    background 0.3s ease,
    transform 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  white-space: nowrap;
}

.map-overlay-link:hover .click-hint {
  background: var(--brand);
  transform: translateX(-50%) scale(1.02);
}

.map-overlay-link .click-hint span {
  margin-right: 8px;
}

/* =========================================================
           CTA
        ========================================================= */
.cta-section {
  min-height: 480px;
  display: flex;
  align-items: center;
  text-align: center;
  color: var(--white);
  background-image:
    linear-gradient(rgba(26, 20, 20, 0.6), rgba(26, 20, 20, 0.6)),
    url("https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?auto=format&fit=crop&w=2400&q=90");
  background-position: center;
  background-size: cover;
  position: relative;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-content .heading-xl {
  margin-bottom: 16px;
}

.cta-content p {
  max-width: 500px;
  margin: 0 auto 30px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  font-size: 15px;
}

/* =========================================================
           CONTACT
        ========================================================= */
.quote-section {
  background: var(--cream-light);
  padding: 80px 0;
}

.quote-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 60px;
  align-items: start;
}

.quote-info .heading-lg {
  margin-bottom: 12px;
}

.quote-info p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 14px;
}

.quote-info .contact-details {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.quote-info .contact-details a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.quote-info .contact-details a:hover {
  color: var(--brand);
}

.quote-info .contact-details .icon {
  font-size: 18px;
  color: var(--brand);
}

.quote-form {
  background: var(--white);
  padding: 40px 42px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field {
  margin-bottom: 14px;
}

.field label {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--charcoal);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--border);
  background: var(--cream-light);
  padding: 13px 16px;
  font-family: var(--sans);
  font-size: 13px;
  border-radius: 8px;
  outline: none;
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
  color: var(--charcoal);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(203, 65, 84, 0.1);
}

.field textarea {
  min-height: 100px;
  resize: vertical;
}

.form-submit {
  width: 100%;
  border: 0;
  cursor: pointer;
  background: var(--brand);
  color: var(--white);
  padding: 16px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 13px;
  transition: var(--transition);
  margin-top: 4px;
  letter-spacing: 0.3px;
}

.form-submit:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* =========================================================
           FOOTER
        ========================================================= */
.footer {
  background: var(--charcoal);
  color: var(--white);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer h3 {
  font-family: var(--serif);
  font-size: 22px;
  margin-bottom: 10px;
  font-weight: 500;
}

.footer p,
.footer a {
  color: #8a8682;
  font-size: 13px;
  line-height: 1.8;
}

.footer a {
  display: block;
  margin-bottom: 3px;
  transition: color 0.3s;
}

.footer a:hover {
  color: var(--white);
}

.footer .footer-social {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.footer .footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 18px;
  transition:
    background 0.3s ease,
    border-color 0.3s ease;
}

.footer .footer-social a:hover {
  background: rgba(203, 65, 84, 0.15);
  border-color: var(--brand);
  color: var(--white);
}

.copyright {
  padding-top: 22px;
  color: #5a5652;
  font-size: 11px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

/* =========================================================
           WHATSAPP FLOAT
        ========================================================= */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  z-index: 999;
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.3);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  border: none;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 16px 45px rgba(37, 211, 102, 0.4);
}

/* =========================================================
           RESPONSIVE
        ========================================================= */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .foam-highlight {
    grid-column: span 2;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-grid .gallery-item:first-child {
    grid-row: span 2;
  }
  .map-container iframe {
    height: 300px;
  }
}

@media (max-width: 900px) {
  .nav-menu,
  .nav-cta,
  .nav-contact {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .nav-menu.active {
    display: flex;
    position: absolute;
    top: 74px;
    left: 5%;
    right: 5%;
    padding: 28px 24px;
    background: rgba(26, 20, 20, 0.98);
    backdrop-filter: blur(12px);
    border-radius: 14px;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    max-height: 80vh;
    overflow-y: auto;
    z-index: 100;
  }

  .nav-menu.active > li {
    width: 100%;
  }

  .nav-menu.active a {
    font-size: 14px;
    display: block;
    width: 100%;
    padding: 4px 0;
  }

  .nav-menu.active .nav-cta {
    display: inline-flex;
    margin-top: 2px;
    width: auto;
    padding: 10px 24px;
  }

  .nav-menu.active .nav-contact {
    display: flex;
    flex-wrap: wrap;
    margin-top: 6px;
    gap: 8px;
    width: 100%;
  }

  .nav-menu.active .nav-phone {
    background: var(--brand);
    border-color: var(--brand);
    color: var(--white) !important;
    padding: 8px 16px;
  }

  .nav-menu.active .nav-phone:hover {
    background: var(--brand-dark);
  }

  .nav-menu.active .nav-wa {
    background: #25d366;
    color: var(--white) !important;
    border-color: #25d366;
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  /* Mobile Dropdown */
  .nav-menu li.has-dropdown {
    width: 100%;
  }

  .nav-menu li.has-dropdown > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 5px 0;
  }

  .nav-menu li.has-dropdown > a::after {
    position: static;
    width: 9px;
    height: 9px;
    margin: -4px 3px 0 12px;
    border-right-width: 1.5px;
    border-bottom-width: 1.5px;
    flex: 0 0 9px;
  }

  .nav-menu li.has-dropdown::before {
    display: none;
  }

  .nav-menu .dropdown {
    display: none;
    position: static;
    transform: none;
    width: 100%;
    min-width: 0;
    background: rgba(255, 255, 255, 0.035);
    box-shadow: none;
    border: 0;
    border-left: 1px solid rgba(203, 65, 84, 0.55);
    padding: 6px 0 6px 10px;
    margin: 5px 0 3px 0;
    border-radius: 0 8px 8px 0;
  }

  .nav-menu .dropdown li {
    padding: 0;
  }

  .nav-menu .dropdown li a {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 9px 12px;
    font-size: 13px;
    white-space: normal;
    color: rgba(255, 255, 255, 0.68);
    border-radius: 6px;
  }

  .nav-menu .dropdown li a:hover {
    background: rgba(203, 65, 84, 0.12);
    color: var(--white);
    padding-left: 15px;
  }

  /* On mobile the dropdown is controlled by JavaScript/click,
               not by hover. */
  .nav-menu li.has-dropdown:hover .dropdown {
    display: none;
  }

  .nav-menu li.has-dropdown.open .dropdown {
    display: block;
  }

  .nav-menu li.has-dropdown.open > a::after {
    transform: rotate(225deg);
  }

  .quote-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero {
    min-height: 86vh;
  }

  .hero-content {
    padding: 80px 0 30px;
  }

  .foam-highlight {
    grid-column: span 2;
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 30px;
  }

  .foam-badges {
    width: 100%;
    justify-content: flex-start;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .logo-textonly .brand-name {
    font-size: clamp(18px, 3vw, 24px);
  }
  .map-container iframe {
    height: 250px;
  }
  .map-overlay-link .click-hint {
    font-size: 10px;
    padding: 8px 16px;
    white-space: normal;
  }
}

@media (max-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin: 0 auto;
  }

  .foam-highlight {
    grid-column: span 1;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid .gallery-item:first-child {
    grid-row: span 1;
  }

  .gallery-item {
    aspect-ratio: 4 / 3;
  }

  .gallery-item:first-child {
    aspect-ratio: 4 / 3;
  }

  .gallery-item .overlay {
    opacity: 1;
    background: linear-gradient(
      0deg,
      rgba(26, 20, 20, 0.6) 0%,
      transparent 100%
    );
  }

  .gallery-item .overlay h4 {
    font-size: 16px;
  }

  .quote-form {
    padding: 24px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .section-padding {
    padding: 60px 0;
  }

  .section-padding-sm {
    padding: 40px 0;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-description {
    font-size: 15px;
  }

  .btn {
    padding: 13px 26px;
    font-size: 11px;
  }

  .foam-badge {
    padding: 12px 18px;
    min-width: 70px;
  }

  .foam-badge .density {
    font-size: 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .copyright {
    flex-direction: column;
    text-align: center;
  }

  .service-card .service-image {
    height: 170px;
  }
  .map-container iframe {
    height: 200px;
  }
  .map-overlay-link .click-hint {
    bottom: 12px;
    padding: 6px 14px;
    font-size: 9px;
  }
}

@media (max-width: 400px) {
  .container {
    width: 94%;
    padding: 0 10px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .heading-xl {
    font-size: 34px;
  }

  .heading-lg {
    font-size: 28px;
  }

  .service-card .service-image {
    height: 150px;
  }

  .logo-textonly .brand-name {
    font-size: 16px;
  }
  .logo-textonly .divider {
    width: 24px;
  }
  .logo-textonly .sub {
    font-size: 7px;
    letter-spacing: 2.5px;
  }
}

/* =========================================================
           ANIMATIONS — Fade Up
        ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.08s;
}
.reveal-delay-2 {
  transition-delay: 0.16s;
}
.reveal-delay-3 {
  transition-delay: 0.24s;
}
.reveal-delay-4 {
  transition-delay: 0.32s;
}
