:root {
  --green-900: #022d20;
  --green-850: #033425;
  --green-800: #074530;
  --green-700: #0d5a3f;
  --gold-500: #d8ad54;
  --gold-400: #e8c771;
  --gold-300: #f1dfb1;
  --cream-100: #fbf7ef;
  --cream-200: #f2eadb;
  --ink-900: #1f1a16;
  --border-soft: rgba(188, 145, 67, 0.32);
  --shadow-soft: 0 18px 50px rgba(6, 43, 29, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background: var(--cream-100);
  color: #473b30;
}

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

a {
  text-decoration: none;
}

.site-shell {
  overflow-x: hidden;
}

.container {
  position: relative;
  z-index: 2;
}

.hero-section {
  position: relative;
  min-height: 100vh;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(0, 14, 10, 0.55) 0%, rgba(0, 14, 10, 0.25) 30%, rgba(0, 14, 10, 0.72) 100%),
    url("Images/Banner.webp") center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top center, rgba(222, 173, 74, 0.22), transparent 38%),
    linear-gradient(90deg, rgba(5, 34, 24, 0.84) 0%, rgba(5, 34, 24, 0.1) 45%, rgba(5, 34, 24, 0.68) 100%);
}

.navbar {
  z-index: 3;
  transition: background-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.navbar.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(2, 33, 23, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  animation: navbarSlideDown 0.25s ease-out;
}

.navbar::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(1240px, calc(100% - 2rem));
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(221, 178, 89, 0.9), transparent);
  transform: translateX(-50%);
}

.brand-logo {
  width: clamp(200px, 25vw, 360px);
}

.navbar-nav {
  gap: 0.4rem;
}

.navbar .nav-link {
  position: relative;
  color: rgba(255, 247, 231, 0.88);
  text-transform: uppercase;
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  padding: 0.75rem 0.95rem !important;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus,
.navbar .nav-link.active {
  color: #fff8df;
}

.navbar .nav-link.active::after,
.navbar .nav-link:hover::after {
  content: "";
  position: absolute;
  left: 0.95rem;
  right: 0.95rem;
  bottom: -0.1rem;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #d3a84d, #f0d286);
}

.navbar .dropdown-toggle::after {
  margin-left: 0.45rem;
  vertical-align: 0.18em;
}

.navbar .dropdown-menu {
  margin-top: 0.6rem;
  padding: 0.6rem;
  min-width: 250px;
  border-radius: 1rem;
  border: 1px solid rgba(223, 187, 102, 0.22);
  background: rgba(4, 34, 24, 0.96);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
}

@media (min-width: 1200px) {
  .navbar .dropdown:hover .dropdown-menu,
  .navbar .dropdown:focus-within .dropdown-menu {
    display: block;
  }
}

.navbar .dropdown-item {
  border-radius: 0.75rem;
  color: rgba(255, 247, 231, 0.9);
  font-size: 0.84rem;
  letter-spacing: 0.05em;
  padding: 0.7rem 0.9rem;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus,
.navbar .dropdown-item.active {
  color: #fff8df;
  background: rgba(223, 187, 102, 0.14);
}

.navbar .dropdown-divider {
  border-top-color: rgba(223, 187, 102, 0.16);
  margin: 0.45rem 0;
}

.nav-cta {
  white-space: nowrap;
}

.btn {
  border-radius: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
}

.btn-gold {
  background: linear-gradient(180deg, #efcb77 0%, #c99941 100%);
  border: 1px solid rgba(255, 226, 158, 0.55);
  color: #1b1b14;
  box-shadow: 0 14px 28px rgba(190, 137, 38, 0.25);
}

.btn-gold:hover,
.btn-gold:focus {
  color: #111;
  background: linear-gradient(180deg, #f5d88f 0%, #d8a84b 100%);
}

.btn-outline-gold {
  background: rgba(4, 48, 34, 0.36);
  border: 1px solid rgba(223, 187, 102, 0.7);
  color: #f7edd1;
}

.btn-outline-gold:hover,
.btn-outline-gold:focus {
  background: rgba(223, 187, 102, 0.14);
  color: #fff6dc;
  border-color: rgba(244, 208, 124, 0.95);
}

.btn-darkgreen {
  background: linear-gradient(180deg, var(--green-900), #0a5138);
  border: 1px solid rgba(204, 170, 94, 0.45);
  color: #f5e7ba;
}

.btn-darkgreen:hover,
.btn-darkgreen:focus {
  background: linear-gradient(180deg, #08412d, #0c6647);
  color: #fff4d1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 6rem 0 7rem;
}

.hero-kicker,
.arabic-callout {
  font-family: "Cinzel", serif;
  color: var(--gold-400);
  letter-spacing: 0.06em;
}

.hero-kicker {
  font-size: clamp(1rem, 1.7vw, 1.7rem);
  margin-bottom: 1rem;
}

.hero-subtitle,
.hero-role,
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-500);
}

.hero-subtitle {
  font-size: clamp(0.95rem, 1.4vw, 1.45rem);
  font-weight: 700;
}

.hero-title,
.section-copy h2,
.section-heading h2,
.article-body h3,
.testimonial-card h3,
.newsletter-box h2 {
  font-family: "Cormorant Garamond", serif;
}

.hero-title {
  font-size: clamp(3.7rem, 5vw, 7.5rem);
  font-weight: 600;
  line-height: 0.96;
  margin-bottom: 0.75rem;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.28);
}

.hero-role {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.6rem;
}

.hero-role::before,
.hero-role::after {
  content: "";
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(224, 183, 95, 0.85), transparent);
}

.hero-text {
  max-width: 650px;
  font-size: 1.08rem;
  line-height: 1.9;
  color: rgba(255, 244, 223, 0.9);
}

.hero-actions {
  margin-top: 2rem;
}

.hero-form-card {
  padding: 2rem;
  max-width: 420px;
  margin-left: auto;
  border-radius: 1.3rem;
  background: rgba(5, 38, 28, 0.76);
  border: 1px solid rgba(225, 190, 106, 0.3);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(10px);
}

.hero-form-card h2 {
  margin-bottom: 0.75rem;
  color: #fff7df;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1rem, 2vw, 3rem);
  line-height: 1.05;
}

.hero-form-text {
  color: rgba(255, 243, 220, 0.82);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.hero-form .form-label {
  color: #f5dfab;
  font-weight: 700;
  margin-bottom: 0.45rem;
}

.hero-form .form-label span {
  color: #ffd77b;
}

.hero-form .form-control {
  min-height: 54px;
  border-radius: 0.9rem;
  border: 1px solid rgba(225, 190, 106, 0.24);
  background: rgba(255, 251, 243, 0.08);
  color: #fff7e5;
  padding-inline: 1rem;
}

.hero-form .form-control:focus {
  background: rgba(255, 251, 243, 0.12);
  border-color: rgba(238, 203, 120, 0.72);
  box-shadow: none;
  color: #fffef8;
}

.section-light {
  position: relative;
  background:
    radial-gradient(circle at top left, rgba(216, 173, 84, 0.12), transparent 20%),
    radial-gradient(circle at bottom right, rgba(216, 173, 84, 0.1), transparent 24%),
    var(--cream-100);
}

.section-light::before,
.section-light::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.section-light::before {
  background:
    linear-gradient(90deg, rgba(225, 201, 149, 0.2), transparent 7%, transparent 93%, rgba(225, 201, 149, 0.2)),
    linear-gradient(180deg, rgba(225, 201, 149, 0.2), transparent 7%, transparent 93%, rgba(225, 201, 149, 0.2));
  opacity: 0.55;
}

.services-strip,
.about-section,
.steps-section,
.testimonials-section,
.articles-section {
  padding: 5rem 0;
}

.service-grid {
  border: 1px solid var(--border-soft);
  background: rgba(255, 252, 245, 0.88);
}

.service-tile {
  height: 100%;
  padding: 2.2rem 1.25rem;
  text-align: center;
  border-right: 1px solid rgba(188, 145, 67, 0.2);
}

.service-grid > div:last-child .service-tile {
  border-right: 0;
}

.service-tile i {
  font-size: 2.5rem;
  color: var(--green-800);
  margin-bottom: 1rem;
}

.service-tile h3,
.step-card h3,
.footer-links a,
.footer-contact span,
.newsletter-form input,
.consult-pill span {
  font-size: 1rem;
}

.service-tile h3 {
  min-height: 3rem;
  color: #1f3228;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.45;
}

.service-tile p,
.section-copy p,
.step-card p,
.testimonial-card p,
.article-body p,
.footer-text,
.newsletter-box p {
  color: #5c5144;
  line-height: 1.9;
}

.eyebrow {
  font-size: 0.85rem;
  font-weight: 800;
  margin-bottom: 0.8rem;
}

.section-copy h2,
.section-heading h2 {
  color: #231d17;
  font-size: clamp(2.4rem, 4vw, 2.5rem);
  line-height: 1.05;
  margin-bottom: 1rem;
}

.portrait-frame {
  position: relative;
  border-radius: 1.2rem;
  overflow: hidden;
  border: 1px solid rgba(201, 160, 80, 0.28);
  box-shadow: var(--shadow-soft);
}

.portrait-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 18px solid rgba(255, 250, 241, 0.42);
  pointer-events: none;
}

.quote-card,
.consult-card,
.testimonial-card,
.article-card,
.newsletter-box {
  border-radius: 1.2rem;
  box-shadow: var(--shadow-soft);
}

.quote-card {
  background: linear-gradient(180deg, #053524 0%, #012919 100%);
  color: #fff5d6;
  padding: 2.25rem;
  border: 1px solid rgba(228, 195, 120, 0.34);
}

.quote-card p {
  color: rgba(255, 243, 220, 0.94);
  font-size: 1.55rem;
  line-height: 1.55;
  margin: 1rem 0 0;
  font-family: "Cormorant Garamond", serif;
}

.arabic-callout {
  font-size: 1.55rem;
}

.consult-card {
  background: rgba(255, 253, 247, 0.94);
  padding: 1.6rem;
  border: 1px solid rgba(201, 160, 80, 0.3);
}

.consult-pill {
  border: 1px solid rgba(201, 160, 80, 0.28);
  border-radius: 1rem;
  padding: 1rem 0.5rem;
  height: 100%;
  background: linear-gradient(180deg, #fffdf7, #f7f0e1);
}

.consult-pill i {
  display: block;
  color: var(--green-800);
  font-size: 1.35rem;
  margin-bottom: 0.55rem;
}

.section-heading {
  margin-bottom: 3rem;
}

.step-card {
  position: relative;
  text-align: center;
  padding: 1rem 1rem 0;
}

.step-icon {
  width: 92px;
  height: 92px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  border: 2px solid rgba(201, 160, 80, 0.46);
  display: grid;
  place-items: center;
  color: var(--green-800);
  background: rgba(255, 255, 255, 0.9);
  font-size: 2rem;
}

.step-number {
  width: 34px;
  height: 34px;
  margin: -1.4rem auto 1rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  background: linear-gradient(180deg, #eed28c, #cda04f);
  color: #2f2418;
  border: 3px solid var(--cream-100);
}

.step-card h3 {
  color: #203126;
  font-weight: 800;
  margin-bottom: 0.65rem;
}

.testimonial-card {
  background: rgba(255, 253, 247, 0.96);
  border: 1px solid rgba(201, 160, 80, 0.3);
  padding: 2rem;
  height: 100%;
}

.quote-mark {
  color: var(--gold-500);
  font-size: 3.25rem;
  font-family: "Cormorant Garamond", serif;
  line-height: 1;
}

.stars {
  color: #d7a842;
  letter-spacing: 0.18em;
  margin: 1rem 0 0.8rem;
}

.testimonial-card h3 {
  font-size: 1.8rem;
  color: #1f221c;
  margin-bottom: 0;
}

.article-card {
  overflow: hidden;
  border: 1px solid rgba(201, 160, 80, 0.28);
  background: rgba(255, 253, 247, 0.96);
  height: 100%;
}

.article-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.article-body {
  padding: 1.5rem;
}

.article-body h3 {
  color: #211b16;
  font-size: 2rem;
  line-height: 1.05;
  margin-bottom: 0.85rem;
}

.article-body a {
  color: var(--green-800);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.newsletter-section {
  position: relative;
  background:
    linear-gradient(180deg, rgba(2, 41, 28, 0.94), rgba(1, 30, 20, 0.96)),
    url("Images/Banner.webp") center/cover no-repeat;
  padding: 3rem 0;
}

.inner-hero {
  position: relative;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(0, 14, 10, 0.6) 0%, rgba(0, 14, 10, 0.4) 42%, rgba(0, 14, 10, 0.78) 100%),
    url("Images/Banner.webp") center/cover no-repeat;
}

.inner-hero-content {
  padding: 4.5rem 0 4rem;
}

.page-kicker {
  color: var(--gold-400);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
  margin-bottom: 0.9rem;
}

.page-title {
  color: #fff8e2;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 0.96;
  margin-bottom: 1rem;
}

.page-intro {
  max-width: 780px;
  color: rgba(255, 244, 223, 0.88);
  line-height: 1.9;
  margin: 0 auto;
}

.page-section {
  padding: 5rem 0;
}

.feature-card,
.value-card,
.service-detail-card,
.contact-card,
.hours-card,
.map-card {
  height: 100%;
  border-radius: 1.2rem;
  border: 1px solid rgba(201, 160, 80, 0.28);
  background: rgba(255, 253, 247, 0.96);
  box-shadow: var(--shadow-soft);
}

.feature-card,
.value-card,
.contact-card,
.hours-card,
.map-card {
  padding: 2rem;
}

.service-detail-card {
  overflow: hidden;
}

.service-detail-link,
.service-tile-link {
  color: inherit;
}

.service-detail-link {
  display: block;
  height: 100%;
}

.service-detail-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-detail-body {
  padding: 1.6rem;
}

.service-badge,
.feature-icon,
.contact-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(180deg, #f4e0ae, #d8ad54);
  color: var(--green-900);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.feature-card h3,
.value-card h3,
.service-detail-body h3,
.contact-card h3,
.hours-card h3,
.map-card h3 {
  color: #1d211c;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.mini-stat {
  padding: 1.35rem;
  border-radius: 1rem;
  border: 1px solid rgba(201, 160, 80, 0.24);
  background: rgba(255, 252, 245, 0.85);
  text-align: center;
}

.mini-stat strong {
  display: block;
  color: var(--green-800);
  font-size: 1.9rem;
  font-weight: 800;
}

.mini-stat span {
  color: #5a4f43;
  font-size: 0.95rem;
}

.service-detail-body p,
.feature-card p,
.value-card p,
.contact-card p,
.hours-card p,
.map-card p {
  color: #5c5144;
  line-height: 1.85;
}

.service-link-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1rem;
  color: var(--green-800);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
}

.service-link-inline:hover,
.service-link-inline:focus {
  color: var(--green-700);
}

.service-tile-link {
  display: block;
  height: 100%;
}

.service-page-hero {
  display: grid;
  gap: 1.5rem;
}

.service-overview-card,
.service-process-card,
.service-cta-panel {
  border-radius: 1.2rem;
  border: 1px solid rgba(201, 160, 80, 0.28);
  box-shadow: var(--shadow-soft);
}

.service-overview-card {
  overflow: hidden;
  background: rgba(255, 253, 247, 0.98);
}

.service-overview-card img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
}

.service-overview-body {
  padding: 2rem;
}

.service-overview-body h2,
.service-process-card h3,
.service-cta-panel h2 {
  color: #1d211c;
  font-family: "Cormorant Garamond", serif;
}

.service-overview-body h2 {
  font-size: clamp(2.2rem, 3.2vw, 3.4rem);
  margin-bottom: 1rem;
}

.service-overview-body p,
.service-process-card p,
.service-cta-panel p {
  color: #5c5144;
  line-height: 1.85;
}

.service-focus-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.service-focus-list li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(201, 160, 80, 0.16);
}

.service-focus-list li:last-child {
  border-bottom: 0;
}

.service-focus-list i {
  color: var(--green-800);
  font-size: 1.1rem;
  margin-top: 0.25rem;
}

.service-process-card {
  height: 100%;
  padding: 2rem;
  background: rgba(255, 253, 247, 0.96);
}

.service-process-card h3 {
  font-size: 2rem;
  margin-bottom: 0.8rem;
}

.service-cta-panel {
  padding: 2.5rem;
  background: linear-gradient(135deg, rgba(2, 45, 32, 0.96), rgba(7, 69, 48, 0.94));
}

.service-cta-panel h2,
.service-cta-panel p {
  color: #fff3d8;
}

.contact-card a,
.map-card a {
  color: var(--green-800);
  font-weight: 800;
}

.contact-list,
.hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-list li,
.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(201, 160, 80, 0.16);
}

.contact-list li:last-child,
.hours-list li:last-child {
  border-bottom: 0;
}

.contact-form-panel {
  padding: 2rem;
  border-radius: 1.2rem;
  background: linear-gradient(180deg, #053524 0%, #012919 100%);
  border: 1px solid rgba(228, 195, 120, 0.3);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.18);
}

.contact-form-panel h2 {
  color: #fff7df;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3vw, 3.1rem);
  margin-bottom: 0.8rem;
}

.contact-form-panel p {
  color: rgba(255, 244, 223, 0.82);
  line-height: 1.8;
}

.contact-form-panel .form-label {
  color: #f5dfab;
  font-weight: 700;
}

.contact-form-panel .form-control,
.contact-form-panel .form-select,
.contact-form-panel textarea {
  min-height: 54px;
  border-radius: 0.9rem;
  border: 1px solid rgba(225, 190, 106, 0.24);
  background: rgba(255, 251, 243, 0.08);
  color: #fff7e5;
}

.contact-form-panel .form-select option {
  color: #1f1a16;
  background: #fffdf7;
}

.contact-form-panel .form-select option:checked,
.contact-form-panel .form-select option:hover,
.contact-form-panel .form-select option:focus {
  color: #fff7e5;
  background: var(--green-800);
  box-shadow: inset 0 0 0 9999px var(--green-800);
}

.contact-form-panel textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form-panel .form-control::placeholder,
.contact-form-panel textarea::placeholder {
  color: rgba(255, 247, 227, 0.65);
}

.contact-form-panel .form-control:focus,
.contact-form-panel .form-select:focus,
.contact-form-panel textarea:focus {
  background: rgba(255, 251, 243, 0.12);
  border-color: rgba(238, 203, 120, 0.72);
  box-shadow: none;
  color: #fffef8;
}

.thank-you-panel {
  max-width: 760px;
  padding: 3rem;
  border-radius: 1.4rem;
  background: linear-gradient(180deg, #053524 0%, #012919 100%);
  border: 1px solid rgba(228, 195, 120, 0.3);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.18);
}

.thank-you-badge {
  width: 92px;
  height: 92px;
  margin: 0 auto 1.5rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(180deg, #f4e0ae, #d8ad54);
  color: var(--green-900);
  font-size: 2.5rem;
  box-shadow: 0 16px 30px rgba(216, 173, 84, 0.22);
}

.thank-you-panel h2 {
  color: #fff7df;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.3rem, 4vw, 3.4rem);
  margin-bottom: 1rem;
}

.thank-you-panel p {
  color: rgba(255, 244, 223, 0.84);
  line-height: 1.9;
}

.thank-you-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.newsletter-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2.25rem 2.5rem;
  border: 1px solid rgba(225, 190, 106, 0.28);
  background: rgba(0, 40, 28, 0.64);
}

.newsletter-box h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  color: #fff7df;
  margin-bottom: 0.4rem;
}

.newsletter-box p {
  color: rgba(255, 247, 227, 0.8);
  margin: 0;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  width: min(100%, 620px);
}

.newsletter-form .form-control {
  min-height: 58px;
  border-radius: 0.85rem;
  background: rgba(255, 252, 245, 0.08);
  border: 1px solid rgba(225, 190, 106, 0.25);
  color: #fff8e1;
}

.newsletter-form .form-control::placeholder {
  color: rgba(255, 247, 227, 0.72);
}

.newsletter-form .form-control:focus {
  background: rgba(255, 252, 245, 0.12);
  color: #fffef7;
  border-color: rgba(237, 202, 123, 0.6);
  box-shadow: none;
}

.site-footer {
  position: relative;
  padding: 4rem 0 2rem;
  color: rgba(250, 242, 227, 0.86);
  background:
    linear-gradient(180deg, #012416 0%, #011a10 100%);
  border-top: 1px solid rgba(225, 190, 106, 0.15);
}

.footer-logo {
  width: min(300px, 100%);
  margin-bottom: 1rem;
}

.site-footer h3 {
  color: var(--gold-400);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.footer-text {
  color: rgba(250, 242, 227, 0.72);
}

.social-links {
  display: flex;
  gap: 0.85rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(216, 173, 84, 0.1);
  color: var(--gold-400);
  border: 1px solid rgba(216, 173, 84, 0.22);
}

.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(250, 242, 227, 0.78);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.footer-contact i {
  color: var(--gold-400);
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(225, 190, 106, 0.14);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-bottom p,
.footer-meta a {
  color: rgba(250, 242, 227, 0.68);
  margin: 0;
}

.footer-meta {
  display: flex;
  gap: 1.2rem;
}

.mobile-contact-bar {
  display: none;
}

@keyframes navbarSlideDown {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }

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

@media (max-width: 1199.98px) {
  .navbar-collapse {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 1rem;
    background: rgba(2, 34, 24, 0.9);
    border: 1px solid rgba(225, 190, 106, 0.18);
  }

  .nav-cta {
    display: inline-flex;
    width: fit-content;
  }

  .service-grid > div:nth-child(2n) .service-tile {
    border-right: 0;
  }
}

@media (max-width: 991.98px) {
  .hero-section {
    min-height: auto;
  }

  .hero-content {
    padding: 4.5rem 0 5rem;
  }

  .hero-form-card {
    max-width: 620px;
    margin: 0 auto;
  }

  .services-strip,
  .about-section,
  .steps-section,
  .testimonials-section,
  .articles-section {
    padding: 4rem 0;
  }

  .newsletter-box {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .newsletter-form {
    width: 100%;
  }

  .inner-hero-content,
  .page-section {
    padding: 4rem 0;
  }
}

@media (max-width: 767.98px) {
  body {
    padding-bottom: 88px;
  }

  .brand-logo {
    width: 210px;
  }

  .hero-kicker {
    line-height: 1.5;
  }

  .hero-role {
    font-size: 0.95rem;
    gap: 0.65rem;
  }

  .hero-role::before,
  .hero-role::after {
    width: 38px;
  }

  .service-tile {
    border-right: 0;
    border-bottom: 1px solid rgba(188, 145, 67, 0.2);
  }

  .service-grid > div:last-child .service-tile,
  .service-grid > div:nth-last-child(2) .service-tile {
    border-bottom: 0;
  }

  .quote-card p {
    font-size: 1.3rem;
  }

  .article-body h3 {
    font-size: 1.7rem;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .thank-you-panel {
    padding: 2.2rem 1.3rem;
  }

  .thank-you-actions {
    flex-direction: column;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .mobile-contact-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1100;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    padding: 0.8rem 0.9rem calc(0.8rem + env(safe-area-inset-bottom));
    background: rgba(2, 33, 23, 0.96);
    border-top: 1px solid rgba(225, 190, 106, 0.2);
    box-shadow: 0 -14px 30px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(10px);
  }

  .mobile-contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    min-height: 52px;
    border-radius: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .mobile-contact-btn.call-btn {
    background: linear-gradient(180deg, #efcb77 0%, #c99941 100%);
    border: 1px solid rgba(255, 226, 158, 0.55);
    color: #1b1b14;
  }

  .mobile-contact-btn.whatsapp-btn {
    background: linear-gradient(180deg, #0f7f55 0%, #07553a 100%);
    border: 1px solid rgba(154, 234, 194, 0.28);
    color: #f5fffb;
  }
}
