:root {
  --primary: #0b1f3a;
  --primary-soft: #132f52;
  --accent: #c89b3c;
  --accent-soft: #fff5df;
  --text: #1f2937;
  --muted: #6b7280;
  --line: #e5e7eb;
  --bg: #ffffff;
  --bg-soft: #f5f7fa;
  --dark: #071527;

  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 18px 45px rgba(11, 31, 58, 0.12);
  --container: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
}

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

button,
input,
textarea {
  font: inherit;
}

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

.container {
  width: min(92%, var(--container));
  margin: 0 auto;
}

.section {
  padding: 96px 0;
}

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

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--accent);
  border-radius: 999px;
}

h1,
h2,
h3 {
  color: var(--primary);
  line-height: 1.12;
}

h1 {
  font-size: clamp(2.2rem, 4.5vw, 4.3rem);
  letter-spacing: -0.05em;
  line-height: 1.08;
}

h2 {
  font-size: clamp(2rem, 3.3vw, 3rem);
  letter-spacing: -0.045em;
}

h3 {
  font-size: 1.2rem;
}

p {
  color: #526071;
  line-height: 1.85;
  font-size: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 800;
  transition: 0.25s ease;
  letter-spacing: -0.01em;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 14px 30px rgba(11, 31, 58, 0.18);
}

.btn-primary:hover {
  background: var(--primary-soft);
  transform: translateY(-2px) scale(1.02);
}

.btn-outline {
  border: 1px solid rgba(11, 31, 58, 0.18);
  color: var(--primary);
  background: #fff;
}

.btn-outline:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}

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

.btn-light:hover {
  transform: translateY(-2px);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #071527;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.nav-wrapper {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 230px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: var(--dark);
  font-weight: 900;
  font-size: 1.15rem;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text strong {
  color: #ffffff;
  font-size: 1rem;
}

.brand-text small {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.72rem;
  margin-top: 4px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-menu a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 600;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--accent);
}

.nav-cta {
  background: var(--accent);
  color: var(--dark) !important;
  padding: 11px 18px;
  border-radius: 999px;
  font-weight: 800;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--primary);
  display: block;
  margin: 5px auto;
  border-radius: 999px;
}

/* Hero */
.hero {
  background:
    radial-gradient(circle at top right, rgba(200, 155, 60, 0.2), transparent 30%),
    radial-gradient(circle at bottom left, rgba(11, 31, 58, 0.1), transparent 40%),
    linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f5f7fa 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 56px;
  align-items: center;
}

.hero-content p {
  max-width: 660px;
  margin-top: 22px;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-card {
  background: var(--primary);
  color: #fff;
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-card::after {
  content: "";
  position: absolute;
  right: -70px;
  top: -70px;
  width: 190px;
  height: 190px;
  background: rgba(200, 155, 60, 0.22);
  border-radius: 50%;
}

.hero-card-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  position: relative;
  z-index: 1;
  padding-bottom: 44px;
}

.hero-card-top span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.hero-card-top strong {
  color: var(--accent);
}

.hero-card-body {
  position: relative;
  z-index: 1;
}

.hero-card-body h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.hero-card-body p {
  color: rgba(255, 255, 255, 0.72);
  margin-top: 18px;
}

.hero-stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.hero-stats div {
  background: rgba(255, 255, 255, 0.08);
  padding: 16px;
  border-radius: 16px;
}

.hero-stats strong {
  display: block;
  color: var(--accent);
  font-size: 1.55rem;
  line-height: 1;
}

.hero-stats span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
}

/* Sections */
.section-heading {
  max-width: 720px;
  margin-bottom: 42px;
}

.section-heading h2 {
  margin-bottom: 16px;
}

.services-section {
  background: #fff;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius);
  padding: 28px;
  background: #fff;
  transition: 0.25s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 55px rgba(15, 23, 42, 0.12);
  border-color: rgba(200, 155, 60, 0.22);
}

.card-number {
  color: var(--accent);
  font-weight: 900;
  font-size: 0.86rem;
}

.service-card h3 {
  margin-top: 18px;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.95rem;
}

/* Split */
.split-section {
  background: #f8fafc;
}

.split-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: start;
}

.split-grid p {
  font-size: 1.05rem;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.check-list span {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.92rem;
}

.check-list span::before {
  content: "✓";
  color: var(--accent);
  margin-right: 8px;
  font-weight: 900;
}

/* CTA */
.cta-section {
  padding: 78px 0;
  background: #fff;
}

.cta-box {
  background:
    radial-gradient(circle at top right, rgba(200, 155, 60, 0.28), transparent 30%),
    var(--primary);
  color: #fff;
  border-radius: 28px;
  padding: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.cta-box h2 {
  color: #fff;
  max-width: 680px;
}

/* Footer */
.site-footer {
  background: #06111f;
  color: #fff;
  padding: 64px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 1fr;
  gap: 48px;
  align-items: start;
}

.footer-logo {
  height: 52px;
  width: auto;
  margin-bottom: 18px;
}

.footer-description {
  max-width: 340px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.8;
  font-size: 0.95rem;
}

.footer-grid h3,
.footer-grid h4 {
  color: #fff;
  margin-bottom: 16px;
}

.footer-grid p,
.footer-grid span,
.footer-grid a {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
  margin-bottom: 10px;
}

.footer-grid a:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
  padding-top: 20px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.86rem;
}
/* Responsive */
@media (max-width: 900px) {
  .section {
    padding: 70px 0;
  }

  .menu-toggle {
    display: block;
  }

.nav-menu {
  position: absolute;
  top: 82px;
  right: 20px;

  display: none;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;

  width: auto;
  min-width: 0;

  padding: 10px;

  background: #071527;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;

  box-shadow:
    0 24px 60px rgba(7, 21, 39, 0.38),
    0 8px 24px rgba(7, 21, 39, 0.18);

  backdrop-filter: blur(14px);
}

  .nav-menu.show {
  display: inline-flex;
}


.nav-menu a {
  display: inline-flex;
  align-items: center;

  width: auto;

  padding: 10px 14px;

  border-radius: 12px;

  color: rgba(255, 255, 255, 0.86);

  font-size: 0.92rem;
  font-weight: 600;

  white-space: nowrap;

  transition: 0.22s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
  background: rgba(200, 155, 60, 0.14);
  color: var(--accent);
}
  .nav-cta {
    text-align: center;
    margin-top: 8px;
  }

.nav-menu .nav-cta {
  margin-top: 8px;
  background: var(--accent);
  color: var(--dark) !important;
  text-align: center;
}

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

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

  .cta-box {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .container {
    width: min(90%, var(--container));
  }

  .nav-wrapper {
    min-height: 70px;
  }

  .brand {
    min-width: auto;
  }

  .brand-text small {
    display: none;
  }

  .nav-menu {
    top: 70px;
  }

  .hero-grid {
    gap: 34px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .services-grid,
  .check-list,
  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-card,
  .cta-box {
    border-radius: 22px;
    padding: 26px;
  }

  .section {
    padding: 58px 0;
  }
}
form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

input,
textarea {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
}
/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
}

.fade-up-delay {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 0.3s;
}

.fade-up-delay-2 {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 0.6s;
}

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

/* subtle floating effect */
.hero-card {
  animation: floatCard 6s ease-in-out infinite;
}

@keyframes floatCard {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0px); }
}
/* ===== PAGE HERO ===== */
.page-hero {
  background:
    radial-gradient(circle at top right, rgba(200, 155, 60, 0.18), transparent 32%),
    linear-gradient(135deg, #f8fafc 0%, #ffffff 58%, #f5f7fa 100%);
}

.page-hero-text {
  max-width: 760px;
  margin-top: 22px;
  font-size: 1.08rem;
}

/* ===== SERVICES DETAIL PAGE ===== */
.services-detail-section {
  background: #fff;
}

.services-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-detail-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  transition: 0.25s ease;
}

.service-detail-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: rgba(200, 155, 60, 0.38);
}

.service-detail-card h2 {
  font-size: 1.55rem;
  margin-top: 16px;
  margin-bottom: 14px;
}

.service-detail-card p {
  margin-bottom: 18px;
}

.service-detail-card ul {
  list-style: none;
  display: grid;
  gap: 10px;
}

.service-detail-card li {
  color: var(--text);
  font-weight: 600;
  font-size: 0.94rem;
  padding-left: 24px;
  position: relative;
}

.service-detail-card li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 900;
  position: absolute;
  left: 0;
}

.wide-card {
  grid-column: 1 / -1;
}

/* ===== PROCESS LIST ===== */
.process-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 30px;
}

.process-list div {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
}

.process-list strong {
  display: block;
  color: var(--accent);
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.process-list span {
  color: var(--primary);
  font-weight: 800;
}

/* ===== RESPONSIVE ADDITIONS ===== */
@media (max-width: 900px) {
  .services-detail-grid {
    grid-template-columns: 1fr;
  }

  .wide-card {
    grid-column: auto;
  }
}

@media (max-width: 600px) {
  .service-detail-card {
    padding: 24px;
  }

  .process-list {
    grid-template-columns: 1fr;
  }
}
/* ===== HERO IMAGE VISUAL ===== */
.hero-visual {
  position: relative;
  min-height: 540px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #dfe6ee;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(11, 31, 58, 0.15);
}

.hero-badge-top {
  top: 20px;
  left: 20px;
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-badge-top span {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 600;
}

.hero-badge-top strong {
  color: var(--accent);
  font-size: 1rem;
}

.hero-badge-bottom {
  left: 20px;
  right: 20px;
  bottom: 20px;
  padding: 20px;
}

.hero-badge-bottom h3 {
  margin-bottom: 8px;
  color: var(--primary);
  font-size: 1.15rem;
}

.hero-badge-bottom p {
  margin: 0;
  font-size: 0.95rem;
}

/* Mobile */
@media (max-width: 600px) {
  .hero-visual {
    min-height: 420px;
    border-radius: 22px;
  }

  .hero-badge-top,
  .hero-badge-bottom {
    left: 14px;
    right: 14px;
  }

  .hero-badge-top {
    top: 14px;
  }

  .hero-badge-bottom {
    bottom: 14px;
    padding: 16px;
  }
}
/* ===== ABOUT IMAGE SECTION ===== */
.about-image-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 460px;
  background: #dfe6ee;
}

.about-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(11, 31, 58, 0.05),
    rgba(11, 31, 58, 0.18)
  );
}

.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-checks {
  grid-template-columns: 1fr;
}

@media (max-width: 900px) {
  .about-image-grid {
    grid-template-columns: 1fr;
  }

  .about-image-wrap {
    min-height: 360px;
  }
}

@media (max-width: 600px) {
  .about-image-wrap {
    min-height: 300px;
    border-radius: 22px;
  }
}
/* ===== SERVICES INTRO IMAGE SECTION ===== */
.services-intro-section {
  background: #fff;
  padding-top: 24px;
}

.services-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.services-intro-image-wrap {
  min-height: 420px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #dfe6ee;
  position: relative;
}

.services-intro-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(11, 31, 58, 0.04),
    rgba(11, 31, 58, 0.16)
  );
}

.services-intro-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.services-intro-content p {
  margin-top: 18px;
  max-width: 620px;
}

.services-checks {
  margin-top: 24px;
  grid-template-columns: 1fr;
}

/* Responsive */
@media (max-width: 900px) {
  .services-intro-grid {
    grid-template-columns: 1fr;
  }

  .services-intro-image-wrap {
    min-height: 340px;
  }
}

@media (max-width: 600px) {
  .services-intro-image-wrap {
    min-height: 280px;
    border-radius: 22px;
  }
}
/* ===== HERO CAROUSEL ===== */
.hero-carousel {
  position: relative;
  min-height: calc(100vh - 78px);
  overflow: hidden;
  background: var(--primary);
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.carousel-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.carousel-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.carousel-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(7, 21, 39, 0.9) 0%,
      rgba(7, 21, 39, 0.72) 45%,
      rgba(7, 21, 39, 0.25) 100%
    ),
    radial-gradient(circle at top right, rgba(200, 155, 60, 0.22), transparent 34%);
}

.carousel-content {
  position: relative;
  z-index: 3;
  min-height: calc(100vh - 78px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 760px;
  padding-top: 0;
  padding-bottom: 80px;
}

.carousel-content .eyebrow {
  margin-bottom: 24px;
}

.carousel-content h1 {
  color: #fff;
  max-width: 760px;
}

.carousel-content p {
  color: rgba(255, 255, 255, 0.78);
  max-width: 600px;
  margin-top: 22px;
  font-size: 1.08rem;
}

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

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

.carousel-control {
  position: absolute;
  top: 50%;
  z-index: 5;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(7, 21, 39, 0.45);
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  transition: 0.25s ease;
}

.carousel-control:hover {
  background: rgba(200, 155, 60, 0.9);
  border-color: rgba(200, 155, 60, 0.9);
}

.carousel-control.prev {
  left: 24px;
}

.carousel-control.next {
  right: 24px;
}

.carousel-dots {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.carousel-dot {
  width: 34px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  cursor: pointer;
  transition: 0.25s ease;
}

.carousel-dot.active {
  background: var(--accent);
  width: 48px;
}

/* Mobile carousel */
@media (max-width: 900px) {
  .hero-carousel,
  .carousel-content {
    min-height: 680px;
  }

  .carousel-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(7, 21, 39, 0.88) 0%,
        rgba(7, 21, 39, 0.72) 55%,
        rgba(7, 21, 39, 0.5) 100%
      );
  }

  .carousel-control {
    display: none;
  }

  .carousel-content {
    justify-content: flex-end;
    padding-bottom: 92px;
  }
}

@media (max-width: 600px) {
  .hero-carousel,
  .carousel-content {
    min-height: 620px;
  }

  .carousel-content p {
    font-size: 1rem;
  }

  .carousel-dots {
    bottom: 24px;
  }
}
/* WELCOME SECTION */
.welcome-section {
  padding-top: 110px;
  padding-bottom: 110px;
  background: #ffffff;
}

.welcome-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 70px;
  align-items: center;
}

.welcome-content h2 {
  font-size: 2.8rem;
  line-height: 1.2;
  margin: 18px 0 24px;
  color: #0f172a;
  max-width: 620px;
}

.welcome-content p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #475569;
  margin-bottom: 22px;
  max-width: 640px;
}

.welcome-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.12);
}

@media (max-width: 980px) {
  .welcome-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .welcome-content h2 {
    font-size: 2.2rem;
  }

  .welcome-image img {
    height: 420px;
  }
}
.page-hero h1,
main > .section:first-child h1 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  max-width: 920px;
}

.menu-toggle {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.menu-toggle span {
  background: #ffffff;
}
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1200;
  background: #25d366;
  color: #ffffff;
  padding: 13px 18px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.9rem;
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.35);
}

.whatsapp-float:hover {
  transform: translateY(-2px);
}
.brand-logo {
  height: 60px;
  width: auto;
  display: block;
}

.footer-logo {
  height: 60px;
  width: auto;
  margin-bottom: 18px;
}

.footer-description {
  max-width: 320px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.8;
  font-size: 0.95rem;
}