/* ===== Tokens ===== */
:root {
  --ink: #11203a;
  --muted: #51607c;
  --navy: #0b1730;
  --navy-soft: #15264a;
  --paper: #ffffff;
  --surface: #f4f6fb;
  --accent: #ff5a00;
  --accent-dark: #e04e00;
  --line: rgba(17, 32, 58, 0.1);
  --font-display: 'Sora', system-ui, sans-serif;
  --font-body: 'Manrope', system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  margin: 0;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.01em;
}

p {
  margin: 0;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 0.6rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.eyebrow-light {
  color: #ffb98a;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.btn-sm {
  padding: 0.6rem 1.3rem;
  font-size: 0.88rem;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--accent-dark);
  box-shadow: 0 12px 26px rgba(255, 90, 0, 0.28);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.12);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.btn-glass i {
  color: #ffb98a;
}

.btn-glass:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
}

/* ===== Header ===== */
.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  padding: 0.7rem 1.5rem;
  gap: 1rem;
  position: relative;
}

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

.site-logo {
  height: 58px;
  width: auto;
  max-width: 230px;
  object-fit: contain;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  justify-self: end;
}

.main-nav {
  grid-column: 2;
  display: flex;
  justify-content: center;
  position: relative;
}

.main-nav ul {
  display: flex;
  gap: 2rem;
}

.main-nav a {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: var(--accent);
}

.main-nav a.is-active {
  color: var(--accent);
}

.main-nav.is-open {
  display: flex;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: #000;
  backdrop-filter: blur(16px);
  transition:
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.site-header.is-top {
  background: transparent;
  box-shadow: none;
}

/* ===== Hero banner carousel ===== */
.banner {
  position: relative;
  width: 100%;
  max-width: none;
  padding: 0;
  margin: 0;
  overflow: hidden;
}

.banner-track {
  display: flex;
  transition: transform 0.7s ease;
}

.banner-slide {
  flex: 0 0 100%;
  min-height: min(78vh, 620px);
  display: flex;
  align-items: center;
  background-image:
    linear-gradient(
      90deg,
      rgba(11, 23, 48, 0.92) 0%,
      rgba(11, 23, 48, 0.74) 45%,
      rgba(11, 23, 48, 0.3) 100%
    ),
    var(--bg-image);
  background-size: cover;
  background-position: center;
}

.banner-inner {
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
  padding: 0 1.5rem;
}

.banner-slide h1 {
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.1;
  margin: 0.3rem 0 1.2rem;
  max-width: 620px;
}

.banner-lede {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  max-width: 540px;
  margin-bottom: 2rem;
}

.banner-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.banner-dots {
  position: absolute;
  left: 50%;
  bottom: 1.6rem;
  transform: translateX(-50%);
  display: flex;
  gap: 0.6rem;
  z-index: 2;
}

.banner-dots button {
  width: 28px;
  height: 4px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  padding: 0;
  transition: background 0.25s ease;
}

.banner-dots button.is-active {
  background: var(--accent);
}

/* ===== Section shell ===== */
section {
  padding: 5rem 1.5rem;
  max-width: 1180px;
  margin: 0 auto;
  scroll-margin-top: 90px;
}

#top {
  scroll-margin-top: 0;
}

.section-head {
  margin-bottom: 2.5rem;
  text-align: left;
}

.section-head h2 {
  font-size: clamp(2.1rem, 4vw, 3rem);
  line-height: 1.12;
  max-width: 700px;
}

/* ===== About ===== */
.about {
  background: var(--paper);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-copy h2 {
  font-size: clamp(2.1rem, 4vw, 3rem);
  line-height: 1.12;
  margin-bottom: 1rem;
}

.about-copy p {
  color: var(--muted);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
  margin-top: 0.4rem;
}

.text-link:hover {
  text-decoration: underline;
}

.about-media img {
  border-radius: 20px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 30px 60px rgba(17, 32, 58, 0.14);
}

/* ===== Services cards ===== */
.services {
  background: var(--surface);
  border-radius: 28px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.6rem;
  align-items: stretch;
}

.service-card {
  position: relative;
  border-radius: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 30px rgba(17, 32, 58, 0.05);
  transition:
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.service-card:hover {
  box-shadow: 0 18px 40px rgba(17, 32, 58, 0.1);
  transform: translateY(-3px);
}

.card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

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

.service-card:hover .card-media img {
  transform: scale(1.05);
}

.card-media .card-icon {
  position: absolute;
  left: 1rem;
  bottom: -22px;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 10px 22px rgba(255, 90, 0, 0.35);
}

.card-body {
  padding: 2rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-body h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.card-summary {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
}

.card-detail {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  display: none;
}

.service-card.is-active .card-detail {
  display: block;
}

.learn-more {
  margin-top: auto;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: none;
  padding: 0;
  color: var(--accent);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
}

.learn-more i {
  font-size: 0.75rem;
  transition: transform 0.25s ease;
}

.learn-more[aria-expanded='true'] i {
  transform: rotate(180deg);
}

.learn-more:hover {
  color: var(--accent-dark);
}

/* ===== Work / project carousel ===== */
.work {
  background: var(--paper);
}

.carousel {
  position: relative;
}

.carousel-track {
  display: flex;
  gap: 1.4rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 0.4rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-slide {
  flex: 0 0 calc((100% - 2 * 1.4rem) / 3);
  min-width: 0;
  scroll-snap-align: start;
}

.project-card {
  position: relative;
  margin: 0;
  display: grid;
  grid-template-rows: 1fr;
  text-decoration: none;
  overflow: hidden;
  border-radius: 16px;
  background: var(--navy);
  box-shadow: 0 14px 32px rgba(17, 32, 58, 0.12);
  aspect-ratio: 4 / 3;
  min-height: 0;
}

.project-card img {
  grid-area: 1 / 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(0.78) saturate(1.05);
  transition:
    opacity 0.25s ease,
    transform 0.5s ease;
}

.project-card .project-info {
  grid-area: 1 / 1;
}

.project-card:hover img,
.project-card:focus-visible img {
  transform: scale(1.04);
  filter: brightness(0.6) saturate(1.1);
}

.project-info {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 1.4rem;
  background: linear-gradient(180deg, transparent, rgba(11, 23, 48, 0.95) 70%);
}

.project-info h3 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.project-info p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.85rem;
  margin-bottom: 0.8rem;
}

.project-visit {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.76rem;
  font-weight: 700;
  color: #fff;
  background: var(--accent);
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.project-card:hover .project-visit,
.project-card:focus-visible .project-visit {
  opacity: 1;
  transform: translateY(0);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1.6rem;
}

.carousel-dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: rgba(17, 32, 58, 0.18);
  cursor: pointer;
  padding: 0;
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.carousel-dots button.is-active {
  background: var(--accent);
  transform: scale(1.25);
}

/* ===== Partners strip ===== */
.partners {
  background: var(--surface);
  border-radius: 28px;
}

.partners-track {
  overflow: hidden;
  position: relative;
  padding: 0.2rem 0;
}

.partners-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
  width: max-content;
  padding: 0.25rem 0;
  animation: partners-scroll 18s linear infinite;
  will-change: transform;
}

.partners-row span {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.65rem 1.2rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
}

.partners-row span i {
  color: var(--accent);
}

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

/* ===== Testimonials ===== */
.testimonials {
  background: var(--paper);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.6rem;
}

.testimonial-card {
  background: var(--surface);
  border-radius: 18px;
  padding: 2rem 1.8rem;
  position: relative;
}

.quote-icon {
  color: rgba(255, 90, 0, 0.25);
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
}

.testimonial-card p {
  color: var(--ink);
  font-size: 0.96rem;
  margin-bottom: 1.4rem;
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ===== Booking CTA strip ===== */
.booking-cta {
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  border-radius: 24px;
  margin-bottom: 2.5rem;
}

.booking-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.booking-cta-inner h2 {
  color: #fff;
  font-size: clamp(1.9rem, 3.6vw, 2.6rem);
  line-height: 1.15;
  margin-bottom: 0.5rem;
}

.booking-cta-inner .banner-lede {
  margin: 0;
}

/* ===== Booking dialog ===== */
.booking-dialog {
  border: none;
  border-radius: 18px;
  background: var(--paper);
  color: var(--ink);
  padding: 0;
  width: min(420px, 92vw);
  box-shadow: 0 30px 60px rgba(17, 32, 58, 0.25);
}

.booking-dialog::backdrop {
  background: rgba(11, 23, 48, 0.55);
  backdrop-filter: blur(4px);
}

.dialog-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  padding: 1.8rem;
  max-height: min(92vh, 700px);
  overflow-y: auto;
}

.dialog-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dialog-head h2 {
  font-size: 1.25rem;
}

.dialog-close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.dialog-close:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.field {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.field label {
  font-size: 0.85rem;
  color: var(--muted);
}

.field input,
.field textarea {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.75rem 0.9rem;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.95rem;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.field-error {
  margin: 0;
  font-size: 0.82rem;
  color: #e74c3c;
  min-height: 1.2rem;
}

.dialog-form::-webkit-scrollbar {
  width: 8px;
}

.dialog-form::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 999px;
}

.dialog-form::-webkit-scrollbar-track {
  background: transparent;
}

/* ----- Custom date trigger + calendar ----- */
.field-label {
  font-size: 0.85rem;
  color: var(--muted);
}

.date-trigger {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.75rem 0.9rem;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.95rem;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.2s ease;
}

.date-trigger i {
  color: var(--accent);
}

.date-trigger:hover,
.date-trigger[aria-expanded='true'] {
  border-color: var(--accent);
}

.date-trigger.has-date span {
  color: var(--accent-dark);
  font-weight: 700;
}

.calendar-popover {
  position: absolute;
  z-index: 20;
  margin-top: 0.6rem;
  width: 280px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem;
  box-shadow: 0 20px 40px rgba(17, 32, 58, 0.2);
}

.calendar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.8rem;
}

.cal-month {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
}

.cal-nav {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.cal-nav:hover {
  background: var(--accent);
  color: #fff;
}

.cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-size: 0.7rem;
  color: var(--muted);
  margin-bottom: 0.3rem;
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.2rem;
}

.cal-day {
  border: none;
  background: transparent;
  color: var(--ink);
  border-radius: 8px;
  padding: 0.5rem 0;
  font-size: 0.85rem;
  cursor: pointer;
  transition:
    background 0.18s ease,
    color 0.18s ease;
}

.cal-day:hover {
  background: rgba(255, 90, 0, 0.1);
}

.cal-day.is-today {
  color: var(--accent);
  font-weight: 700;
}

.cal-day.is-selected {
  background: var(--accent);
  color: #fff;
  font-weight: 700;
}

.cal-day:disabled {
  color: rgba(17, 32, 58, 0.25);
  cursor: not-allowed;
}

.cal-day:disabled:hover {
  background: transparent;
}

.cal-day.is-empty {
  visibility: hidden;
  pointer-events: none;
}

.form-rest {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  animation: reveal 0.35s ease;
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dialog-form .btn {
  align-self: flex-start;
  margin-top: 0.4rem;
}

.form-status {
  font-size: 0.9rem;
  color: var(--accent-dark);
  min-height: 1.2em;
}

/* ===== Footer contact links ===== */
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 1rem;
}

.footer-contact a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.footer-contact a i {
  color: var(--accent);
}

/* ===== Footer ===== */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 1.5rem 1.5rem;
}

.footer-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  height: 40px;
  filter: none;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 1.2rem;
  max-width: 280px;
}

/* ===== Responsive layout ===== */
@media (max-width: 1024px) {
  .header-inner {
    padding: 0.8rem 1.2rem;
  }

  .banner-slide {
    min-height: min(70vh, 560px);
  }

  .about-grid {
    gap: 2rem;
  }

  .carousel-slide {
    flex-basis: calc((100% - 1.4rem) / 2);
  }

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

@media (max-width: 780px) {
  .header-inner {
    flex-wrap: wrap;
    justify-content: center;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: center;
  }

  .main-nav ul {
    flex-wrap: wrap;
    gap: 0.8rem 1.2rem;
  }

  section {
    padding: 4rem 1rem;
  }

  .banner-inner {
    padding: 0 1rem;
  }

  .banner-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .banner-actions .btn,
  .booking-cta .btn,
  .dialog-form .btn {
    width: 100%;
    justify-content: center;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .card-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .carousel-slide {
    flex-basis: 100%;
  }

  .booking-cta-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
  }

  .partners-row span {
    width: 100%;
    justify-content: center;
  }

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

  .site-footer {
    padding: 3rem 1rem 1.25rem;
  }
}

@media (max-width: 480px) {
  .site-logo {
    height: 28px;
    max-width: 120px;
  }

  .banner-slide {
    min-height: 72vh;
  }

  .banner-slide h1 {
    font-size: clamp(1.8rem, 7vw, 2.45rem);
  }

  .section-head h2,
  .about-copy h2 {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }

  .card-body {
    padding: 1.4rem 1rem 1.2rem;
  }

  .project-info {
    padding: 1rem;
  }

  .testimonial-card {
    padding: 1.4rem;
  }

  .field input,
  .field textarea,
  .date-trigger {
    font-size: 0.9rem;
  }
}

.footer-socials {
  display: flex;
  gap: 0.7rem;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.2s ease;
}

.footer-socials a:hover {
  background: var(--accent);
}

.footer-col h3 {
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-col a {
  text-decoration: none;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s ease;
}

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

.footer-newsletter p {
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-form input {
  flex: 1;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 0.65rem 0.8rem;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.88rem;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--accent);
}

.newsletter-form button {
  width: 42px;
  border-radius: 8px;
  border: none;
  background: var(--accent);
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease;
}

.newsletter-form button:hover {
  background: var(--accent-dark);
}

.newsletter-status {
  font-size: 0.8rem;
  color: #ffb98a;
  margin-top: 0.6rem;
  min-height: 1.2em;
}

.footer-bottom {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding-top: 1.5rem;
  font-size: 0.8rem;
}

/* ===== WhatsApp FAB ===== */
.whatsapp-fab {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
  z-index: 60;
  transition: transform 0.2s ease;
}

.whatsapp-fab:hover {
  transform: scale(1.08);
}

.whatsapp-fab svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

.back-to-top {
  position: fixed;
  right: 1.4rem;
  bottom: 6.4rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 18px 36px rgba(255, 90, 0, 0.3);
  transform: translateY(10px);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.28s ease,
    transform 0.28s ease,
    box-shadow 0.2s ease;
  z-index: 65;
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  box-shadow: 0 22px 46px rgba(255, 90, 0, 0.4);
  transform: translateY(-2px);
}

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .carousel-slide {
    flex: 0 0 calc((100% - 1.4rem) / 2);
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-media {
    order: -1;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .contact-row-inner {
    flex-direction: column;
    border-radius: 20px;
    align-items: flex-start;
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .menu-toggle {
    display: inline-flex;
    grid-column: 3;
  }

  .main-nav {
    display: none;
    grid-column: 1 / -1;
    justify-content: flex-start;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    padding: 1rem 1rem 1.2rem;
    border-top: 1px solid var(--line);
    box-shadow: 0 12px 24px rgba(17, 32, 58, 0.08);
    z-index: 20;
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  #navBookBtn {
    display: none;
  }

  .carousel-slide {
    flex: 0 0 min(84vw, 320px);
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .carousel-track,
  .banner-track,
  .service-card,
  .card-explain,
  .btn-primary {
    transition: none;
  }
}
