/* =========================================================
   SLIMCORP ADVISORIES — COMPLETE WEBSITE STYLESHEET
   ========================================================= */

:root {
  --navy: #08172d;
  --navy-light: #102746;
  --gold: #d59a12;
  --gold-light: #f1bf43;
  --gold-dark: #a87300;
  --white: #ffffff;
  --off-white: #fafafa;
  --light-bg: #f4f7fb;
  --text: #111c31;
  --muted: #5c6677;
  --border: #dfe4eb;
  --shadow: 0 16px 40px rgba(8, 23, 45, 0.08);
  --shadow-hover: 0 20px 50px rgba(8, 23, 45, 0.15);
  --radius: 16px;
}

/* =========================================================
   RESET
   ========================================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

ul {
  list-style-position: inside;
}

/* =========================================================
   HEADER AND NAVIGATION
   ========================================================= */

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(8, 23, 45, 0.08);
  box-shadow: 0 4px 18px rgba(8, 23, 45, 0.04);
}

.nav {
  width: min(1200px, calc(100% - 40px));
  min-height: 88px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.logo {
  font-size: 29px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.5px;
}

.nav-logo {
  width: 190px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  position: relative;
  padding: 10px 0;
  color: var(--navy);
  font-weight: 600;
  transition: color 0.25s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.25s ease;
}

.nav-links a:hover {
  color: var(--gold-dark);
}

.nav-links a:hover::after {
  width: 100%;
}

/* =========================================================
   BUTTONS
   ========================================================= */

.btn,
.nav-btn,
.card-btn,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}

.btn:hover,
.nav-btn:hover,
.card-btn:hover,
button:hover {
  transform: translateY(-2px);
}

.primary,
.nav-btn,
.card-btn,
button {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  box-shadow: 0 8px 20px rgba(8, 23, 45, 0.15);
}

.primary:hover,
.nav-btn:hover,
.card-btn:hover,
button:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  box-shadow: 0 12px 25px rgba(213, 154, 18, 0.25);
}

.secondary {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--navy);
}

.secondary:hover {
  background: var(--navy);
  color: var(--white);
}

/* =========================================================
   SMALL GOLD HEADINGS
   ========================================================= */

.tagline,
.section-title p,
.why-us .section-title p,
.about-preview .tagline,
.service-detail .tagline,
.cta-label {
  color: var(--gold);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2.4px;
  margin-bottom: 12px;
}

.section-title p::after,
.tagline::after {
  content: "";
  display: block;
  width: 58px;
  height: 2px;
  margin: 12px auto 0;
  background: linear-gradient(
    90deg,
    transparent,
    var(--gold),
    transparent
  );
}

/* Avoid centered line on left-aligned labels */

.about-preview .tagline::after,
.service-detail .tagline::after {
  margin-left: 0;
}

/* =========================================================
   HERO
   ========================================================= */

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 20%, rgba(213, 154, 18, 0.17), transparent 30%),
    linear-gradient(135deg, #071427 0%, #0a1d37 55%, #102746 100%);
  color: var(--white);
  padding: 105px 24px 115px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 42px 42px;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  left: -5%;
  bottom: -80px;
  width: 110%;
  height: 130px;
  background: var(--white);
  border-radius: 50% 50% 0 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1100px, 100%);
  margin: auto;
  text-align: center;
}

.hero-logo {
  width: min(500px, 85%);
  max-height: 260px;
  object-fit: contain;
  margin: 0 auto 32px;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.28));
}

.hero h1 {
  max-width: 950px;
  margin: 18px auto 24px;
  color: var(--white);
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.08;
  letter-spacing: -1.5px;
}

.hero h1 strong,
.hero h1 span {
  color: var(--gold-light);
}

.hero-content > p:not(.tagline) {
  max-width: 790px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.83);
  font-size: 18px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 34px;
}

.hero .primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-color: var(--gold);
  color: var(--navy);
}

.hero .primary:hover {
  background: var(--white);
  border-color: var(--white);
}

.hero .secondary {
  color: var(--gold-light);
  border-color: var(--gold);
}

.hero .secondary:hover {
  color: var(--navy);
  background: var(--gold-light);
}

/* =========================================================
   SHARED SECTION STYLES
   ========================================================= */

.section,
.why-us,
.about-preview {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  padding: 95px 0;
}

.section-title {
  max-width: 900px;
  margin: 0 auto 52px;
  text-align: center;
}

.section-title h2 {
  color: var(--navy);
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.18;
  letter-spacing: -1px;
}

/* =========================================================
   WHY SLIMCORP
   ========================================================= */

.why-us {
  padding-top: 80px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.trust-grid > div {
  position: relative;
  min-height: 235px;
  padding: 42px 34px 38px;
  background: #ffffff;
  border: 1px solid #dfe4eb;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(8, 23, 45, 0.08);
  text-align: center;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.trust-grid > div::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
    #a87300,
    #f1bf43
  );
}

.trust-grid > div::after {
  content: none;
}

.trust-grid > div:hover {
  transform: translateY(-7px);
  border-color: rgba(213, 154, 18, 0.55);
  box-shadow: 0 22px 50px rgba(8, 23, 45, 0.14);
}

.trust-grid h3 {
  margin-bottom: 16px;
  color: #08172d;
  font-size: 24px;
}

.trust-grid p {
  color: #5c6677;
  font-size: 16px;
  line-height: 1.65;
}

/* =========================================================
   SERVICES AND PACKAGES
   ========================================================= */

#services {
  position: relative;
}

#services::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 100%;
  transform: translateX(-50%);
  background:
    radial-gradient(circle at 10% 10%, rgba(213, 154, 18, 0.05), transparent 20%),
    var(--light-bg);
}

.category-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 54px 0 24px;
  color: var(--navy);
  font-size: 27px;
  line-height: 1.2;
}

.category-title::before {
  content: "";
  width: 7px;
  height: 31px;
  border-radius: 5px;
  background: linear-gradient(var(--gold-light), var(--gold-dark));
}

.category-title::after {
  content: "";
  width: 55px;
  height: 1px;
  background: var(--gold);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.pricing-grid:has(.card:nth-child(2):last-child) {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 330px;
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  border-color: rgba(213, 154, 18, 0.55);
  box-shadow: var(--shadow-hover);
}

.card:hover::before {
  opacity: 1;
}

.card h3 {
  min-height: 58px;
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.3;
}

.card p {
  color: var(--muted);
}

.card .price {
  min-height: auto;
  margin: 6px 0 18px;
  color: var(--gold-dark) !important;
  font-size: 29px;
  font-weight: 800;
}

.card .btn {
  align-self: flex-start;
  margin-top: auto;
}

.featured {
  border-color: rgba(213, 154, 18, 0.6);
}

.featured::before {
  opacity: 1;
}

/* =========================================================
   ADDITIONAL SERVICES
   ========================================================= */

.light {
  position: relative;
  width: 100%;
  max-width: none;
  padding: 90px 24px;
  background: var(--light-bg);
}

.light .section-title {
  max-width: 900px;
}

.services-grid {
  width: min(1200px, 100%);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.services-grid > div {
  position: relative;
  padding: 26px 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 13px;
  color: var(--navy);
  font-weight: 700;
  box-shadow: 0 8px 22px rgba(8, 23, 45, 0.05);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease;
}

.services-grid > div::before {
  content: "✓";
  margin-right: 10px;
  color: var(--gold-dark);
}

.services-grid > div:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
}

/* =========================================================
   ABOUT PREVIEW
   ========================================================= */

.about-preview {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}

.about-preview > div {
  position: relative;
  max-width: 950px;
  padding: 48px;
  background: var(--white);
  border-left: 5px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: var(--shadow);
}

.about-preview h2 {
  max-width: 800px;
  margin-bottom: 22px;
  color: var(--navy);
  font-size: clamp(31px, 4vw, 44px);
  line-height: 1.2;
}

.about-preview p {
  max-width: 850px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 17px;
}

/* =========================================================
   CTA
   ========================================================= */

.cta {
  position: relative;
  overflow: hidden;
  padding: 85px 24px;
  background:
    radial-gradient(circle at top right, rgba(213, 154, 18, 0.18), transparent 30%),
    var(--navy);
  color: var(--white);
  text-align: center;
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 40px 40px;
}

.cta > * {
  position: relative;
  z-index: 2;
}

.cta h2 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: clamp(34px, 4vw, 48px);
}

.cta p {
  max-width: 680px;
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.cta .primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-color: var(--gold);
  color: var(--navy);
}

/* =========================================================
   CONTACT
   ========================================================= */

.contact-box {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 42px;
  padding: 44px;
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-box h3 {
  margin-bottom: 16px;
  color: var(--navy);
  font-size: 26px;
}

.contact-box p {
  margin-bottom: 10px;
  color: var(--muted);
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

input,
select,
textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid #ccd3de;
  border-radius: 9px;
  background: var(--white);
  color: var(--text);
  font: inherit;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(213, 154, 18, 0.12);
}

textarea {
  min-height: 145px;
  resize: vertical;
}

/* =========================================================
   SERVICE DETAIL PAGES
   ========================================================= */

.service-detail {
  width: min(900px, calc(100% - 40px));
  margin: 70px auto;
  padding: 54px;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 5px solid var(--gold);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.service-detail h1 {
  margin: 10px 0 10px;
  color: var(--navy);
  font-size: clamp(36px, 5vw, 52px);
  line-height: 1.15;
}

.service-detail .price {
  margin-bottom: 25px;
  color: var(--gold-dark);
  font-size: 34px;
  font-weight: 800;
}

.service-detail h2 {
  margin: 35px 0 14px;
  color: var(--navy);
  font-size: 27px;
}

.service-detail p {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 18px;
}

.service-detail ul {
  margin: 20px 0 25px;
  padding: 22px 25px;
  list-style: none;
  background: var(--light-bg);
  border-radius: 12px;
}

.service-detail li {
  margin-bottom: 11px;
  color: var(--text);
  font-size: 17px;
}

.service-detail li::before {
  content: "✓";
  margin-right: 10px;
  color: var(--gold-dark);
  font-weight: 800;
}

.service-detail .btn {
  margin: 14px 10px 0 0;
}

/* =========================================================
   FOOTER
   ========================================================= */

.footer {
  padding: 38px 24px;
  background: #050e1d;
  color: rgba(255, 255, 255, 0.78);
  text-align: center;
  border-top: 3px solid var(--gold);
}

.footer p:first-child {
  margin-bottom: 4px;
  color: var(--white);
  font-weight: 700;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 950px) {
  .pricing-grid,
  .trust-grid,
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-box {
    grid-template-columns: 1fr;
  }

  .nav {
    min-height: auto;
    padding: 20px 0;
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 680px) {
  .nav {
    justify-content: center;
  }

  .logo {
    width: 100%;
    text-align: center;
  }

  .nav-links {
    gap: 16px;
    font-size: 14px;
  }

  .nav-btn {
    display: none;
  }

  .hero {
    padding: 70px 20px 100px;
  }

  .hero-logo {
    width: min(360px, 95%);
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero-content > p:not(.tagline) {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .section,
  .why-us,
  .about-preview {
    width: min(100% - 28px, 1200px);
    padding: 70px 0;
  }

  .pricing-grid,
  .pricing-grid:has(.card:nth-child(2):last-child),
  .trust-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .section-title h2 {
    font-size: 34px;
  }

  .category-title {
    font-size: 23px;
  }

  .card {
    min-height: auto;
    padding: 28px;
  }

  .card h3 {
    min-height: auto;
  }

  .about-preview > div,
  .service-detail,
  .contact-box {
    padding: 30px 22px;
  }

  .service-detail .btn {
    width: 100%;
    margin-right: 0;
  }
}

/* =========================================================
   CONTACT PAGE
   ========================================================= */

.page-hero {
  padding: 90px 24px;
  background:
    radial-gradient(
      circle at 85% 15%,
      rgba(213, 154, 18, 0.14),
      transparent 32%
    ),
    linear-gradient(
      135deg,
      #071427,
      #102746
    );
  color: #ffffff;
  text-align: center;
}

.page-hero-content {
  max-width: 850px;
  margin: 0 auto;
}

.page-hero h1 {
  margin: 12px 0 18px;
  font-size: clamp(40px, 5vw, 60px);
  line-height: 1.15;
}

.page-hero-content > p:not(.tagline) {
  max-width: 700px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.contact-section {
  padding: 90px 24px;
  background: #f5f7fb;
}

.contact-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 42px;
  align-items: start;
}

.contact-information {
  padding: 42px;
  background: #08172d;
  color: #ffffff;
  border-radius: 18px;
  box-shadow: 0 20px 45px rgba(8, 23, 45, 0.16);
}

.contact-information h2 {
  margin-bottom: 18px;
  font-size: 34px;
  line-height: 1.2;
}

.contact-information > p:not(.tagline) {
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.72);
}

.contact-detail {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-detail span {
  display: block;
  margin-bottom: 4px;
  color: #d59a12;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.contact-detail a,
.contact-detail p {
  color: #ffffff;
  font-size: 17px;
}

.contact-form-card {
  padding: 42px;
  background: #ffffff;
  border: 1px solid #dfe4eb;
  border-top: 4px solid #d59a12;
  border-radius: 18px;
  box-shadow: 0 20px 45px rgba(8, 23, 45, 0.08);
}

.contact-form-card h2 {
  margin-bottom: 7px;
  color: #08172d;
  font-size: 32px;
}

.contact-form-card > p {
  margin-bottom: 28px;
  color: #687386;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 19px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  color: #08172d;
  font-size: 14px;
  font-weight: 750;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 14px 15px;
  border: 1px solid #ccd4df;
  border-radius: 9px;
  background: #ffffff;
  color: #111c31;
  font: inherit;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.contact-form textarea {
  min-height: 145px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #d59a12;
  box-shadow: 0 0 0 4px rgba(213, 154, 18, 0.12);
}

.form-submit {
  width: 100%;
  margin-top: 5px;
  background: linear-gradient(
    135deg,
    #f1bf43,
    #d59a12
  );
  border-color: #d59a12;
  color: #08172d;
}

.form-submit:hover {
  background: #08172d;
  border-color: #08172d;
  color: #ffffff;
}

@media (max-width: 850px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .contact-section {
    padding: 60px 16px;
  }

  .contact-information,
  .contact-form-card {
    padding: 28px 22px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   ABOUT PAGE
   ========================================================= */

.about-page {
  background: #ffffff;
  color: #111c31;
}

/* Gold small headings */

.about-eyebrow {
  margin-bottom: 13px;
  color: #d59a12;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2.4px;
}

.about-eyebrow::after {
  content: "";
  display: block;
  width: 54px;
  height: 2px;
  margin-top: 11px;
  background: linear-gradient(
    90deg,
    #a87300,
    #f1bf43
  );
}

/* About hero */

.about-hero {
  position: relative;
  overflow: hidden;
  padding: 115px 24px;
  background:
    radial-gradient(
      circle at 85% 20%,
      rgba(213, 154, 18, 0.17),
      transparent 30%
    ),
    linear-gradient(
      135deg,
      #071427 0%,
      #0a1d37 58%,
      #102746 100%
    );
  color: #ffffff;
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px
    );
  background-size: 42px 42px;
}

.about-hero-content {
  position: relative;
  z-index: 2;
  width: min(1000px, 100%);
  margin: 0 auto;
  text-align: center;
}

.about-hero .about-eyebrow::after {
  margin-right: auto;
  margin-left: auto;
}

.about-hero h1 {
  max-width: 930px;
  margin: 15px auto 22px;
  color: #ffffff;
  font-size: clamp(42px, 5vw, 67px);
  line-height: 1.12;
  letter-spacing: -1.4px;
}

.about-hero-content > p:last-child {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.78);
  font-size: 19px;
  line-height: 1.75;
}

/* Introduction */

.about-introduction {
  padding: 95px 24px;
}

.about-intro-grid {
  width: min(1160px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 75px;
  align-items: start;
}

.about-intro-heading h2 {
  color: #08172d;
  font-size: clamp(36px, 4vw, 50px);
  line-height: 1.18;
  letter-spacing: -1px;
}

.about-intro-copy {
  position: relative;
  padding: 10px 0 10px 55px;
  border-left: 4px solid #d59a12;
}

.about-intro-copy::before {
  content: "“";
  position: absolute;
  top: -40px;
  left: 18px;
  font-family: Georgia, serif;
  font-size: 160px;
  color: rgba(213, 154, 18, 0.10);
  line-height: 1;
  pointer-events: none;
}

.about-intro-copy p {
  margin-bottom: 28px;
  color: #55657d;
  font-size: 20px;
  line-height: 1.9;
  position: relative;
  z-index: 1;
}

.about-intro-copy p:last-child {
  margin-bottom: 0;
}

/* Shared headings */

.about-section-heading {
  max-width: 820px;
  margin: 0 auto 50px;
  text-align: center;
}

.about-section-heading .about-eyebrow::after {
  margin-right: auto;
  margin-left: auto;
}

.about-section-heading h2 {
  color: #08172d;
  font-size: clamp(36px, 4vw, 50px);
  line-height: 1.18;
}

/* Core services */

.about-services-section {
  padding: 95px 24px;
  background:
    radial-gradient(
      circle at 10% 10%,
      rgba(213, 154, 18, 0.05),
      transparent 25%
    ),
    #f5f7fb;
}

.about-services-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 23px;
}

.about-service-card {
  position: relative;
  min-height: 270px;
  padding: 31px 28px;
  background: #ffffff;
  border: 1px solid #dfe4eb;
  border-radius: 15px;
  box-shadow: 0 13px 32px rgba(8, 23, 45, 0.06);
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.about-service-card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
    #a87300,
    #f1bf43
  );
}

.about-service-card:hover {
  transform: translateY(-7px);
  border-color: rgba(213, 154, 18, 0.55);
  box-shadow: 0 21px 46px rgba(8, 23, 45, 0.12);
}

.about-service-card span {
    width: 64px;
    height: 64px;
    border: 1.5px solid var(--gold);
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 30px;

    color: var(--gold);
    font-size: 1.5rem;
    font-weight: 700;
}

.about-service-card h3 {
  margin-bottom: 13px;
  color: #08172d;
  font-size: 21px;
  line-height: 1.35;
}

.about-service-card p {
  color: #5c6677;
  font-size: 15px;
  line-height: 1.7;
}

/* Why clients choose us */

.about-why-section {
    padding: 100px 24px;
    background: #ffffff;
}

.about-why-grid {
    width: min(1200px, 100%);
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.about-why-card {
    background: #ffffff;

    border: 1px solid #e4e8ef;
    border-top: 6px solid #d59a12;
    border-radius: 16px;

    padding: 38px 32px;

    min-height: 260px;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;

    box-shadow: 0 14px 35px rgba(8, 23, 45, 0.06);

    transition: all .35s ease;
}

.about-why-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 22px 45px rgba(8,23,45,.12);
}

.about-why-card h3{
    margin-bottom:18px;

    color:#08172d;

    font-size:30px;
    font-weight:700;
    line-height:1.3;
}

.about-why-card p{
    color:#5c6677;

    font-size:17px;
    line-height:1.8;

    margin:0;
}

@media (max-width:1000px){

.about-why-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media (max-width:700px){

.about-why-grid{

grid-template-columns:1fr;

}

.about-why-card{

min-height:auto;

}

}
/* CTA */

/* ===========================
   ABOUT CTA
=========================== */

.about-cta {
    position: relative;
    overflow: hidden;
    padding: 110px 24px;
    background: linear-gradient(135deg, #08172d 0%, #102544 100%);
    text-align: center;
    color: #ffffff;
}

.about-cta::before {
    content: "";
    position: absolute;
    top: -180px;
    right: -180px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(213,154,18,0.08);
}

.about-cta::after {
    content: "";
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: rgba(213,154,18,0.05);
}

.about-cta > div {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: auto;
}

.about-cta .about-eyebrow {
    color: #d59a12;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.about-cta .about-eyebrow::after {
    margin: 16px auto 0;
}

.about-cta h2 {
    color: #ffffff;
    font-size: clamp(42px, 5vw, 64px);
    line-height: 1.15;
    margin-bottom: 24px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.about-cta p:not(.about-eyebrow) {
    max-width: 760px;
    margin: 0 auto 45px;
    font-size: 20px;
    line-height: 1.9;
    color: rgba(255,255,255,0.82);
}

.about-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.about-cta .btn {
    min-width: 230px;
    padding: 16px 34px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 12px;
    transition: all .3s ease;
}

.about-cta .btn.primary {
    background: linear-gradient(135deg,#f4c44d,#d59a12);
    color: #08172d;
    border: none;
    box-shadow: 0 12px 30px rgba(213,154,18,.30);
}

.about-cta .btn.primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(213,154,18,.45);
}

.about-cta .btn.secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255,255,255,.25);
}

.about-cta .btn.secondary:hover {
    background: #ffffff;
    color: #08172d;
    border-color: #ffffff;
}

@media (max-width:768px){

.about-cta{
    padding:80px 20px;
}

.about-cta h2{
    font-size:38px;
}

.about-cta p:not(.about-eyebrow){
    font-size:17px;
}

.about-cta-buttons{
    flex-direction:column;
    align-items:center;
}

.about-cta .btn{
    width:100%;
    max-width:320px;
}

}
/* Responsive */

@media (max-width: 1050px) {
  .about-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-why-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 800px) {
  .about-intro-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .about-intro-copy {
    padding: 30px;
  }
}

@media (max-width: 650px) {
  .about-hero {
    padding: 80px 20px;
  }

  .about-introduction,
  .about-services-section,
  .about-why-section,
  .about-cta {
    padding: 70px 18px;
  }

  .about-services-grid,
  .about-why-grid {
    grid-template-columns: 1fr;
  }

  .about-service-card {
    min-height: auto;
  }

  .about-intro-copy {
    padding: 25px 22px;
  }
}

/* =========================================================
   CONTACT FORM VALIDATION
   ========================================================= */

.field-help {
  display: block;
  color: #6b7485;
  font-size: 12px;
  line-height: 1.45;
}

.field-error {
  display: block;
  min-height: 18px;
  color: #c62828;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.4;
}

.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
  border-color: #d32f2f;
  background: #fffafa;
  box-shadow: 0 0 0 4px rgba(211, 47, 47, 0.1);
}

.form-group.has-error label {
  color: #b71c1c;
}

.form-group.has-success input,
.form-group.has-success select,
.form-group.has-success textarea {
  border-color: #2e7d32;
}

.form-status {
  margin-bottom: 24px;
  padding: 15px 17px;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.5;
}

.form-status-error {
  color: #8f1d1d;
  background: #fff1f1;
  border: 1px solid #efb4b4;
  border-left: 5px solid #c62828;
}

.form-status-success {
  color: #1b5e20;
  background: #effaf0;
  border: 1px solid #a9d7ad;
  border-left: 5px solid #2e7d32;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.7;
  transform: none;
}

.submit-note {
  margin-top: -4px;
  color: #6b7485;
  font-size: 12px;
  text-align: center;
}

.website-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

```css
/* =========================================================
   PREMIUM THANK-YOU PAGE
   ========================================================= */

.thank-you-page {
  position: relative;
  min-height: calc(100vh - 190px);
  padding: 110px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 15% 20%,
      rgba(241, 191, 67, 0.16),
      transparent 28%
    ),
    radial-gradient(
      circle at 88% 80%,
      rgba(8, 23, 45, 0.1),
      transparent 32%
    ),
    linear-gradient(
      135deg,
      #f7f9fc 0%,
      #ffffff 52%,
      #f3f6fa 100%
    );
}

/* Decorative background grid */

.thank-you-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(
      rgba(8, 23, 45, 0.025) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(8, 23, 45, 0.025) 1px,
      transparent 1px
    );
  background-size: 42px 42px;
  pointer-events: none;
}

/* Gold glow */

.thank-you-page::after {
  content: "";
  position: absolute;
  top: -180px;
  right: -130px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(213, 154, 18, 0.08);
  filter: blur(15px);
  pointer-events: none;
}

/* Main card */

.thank-you-card {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
  padding: 68px 54px 58px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.99),
      rgba(255, 255, 255, 0.96)
    );
  border: 1px solid rgba(8, 23, 45, 0.1);
  border-top: 5px solid #d59a12;
  border-radius: 22px;
  box-shadow:
    0 30px 70px rgba(8, 23, 45, 0.12),
    0 8px 24px rgba(8, 23, 45, 0.06);
  text-align: center;
  overflow: hidden;
}

/* Soft gold highlight inside card */

.thank-you-card::before {
  content: "";
  position: absolute;
  top: -90px;
  left: 50%;
  width: 280px;
  height: 180px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: rgba(241, 191, 67, 0.12);
  filter: blur(12px);
  pointer-events: none;
}

/* Bottom gold detail */

.thank-you-card::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 150px;
  height: 3px;
  transform: translateX(-50%);
  background: linear-gradient(
    90deg,
    transparent,
    #d59a12,
    transparent
  );
}

/* Success icon */

.thank-you-icon {
  position: relative;
  display: flex;
  width: 88px;
  height: 88px;
  margin: 0 auto 28px;
  align-items: center;
  justify-content: center;
  border: 3px solid #f1bf43;
  border-radius: 50%;
  background:
    linear-gradient(
      145deg,
      #102746,
      #071427
    );
  color: #f1bf43;
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
  box-shadow:
    0 16px 32px rgba(8, 23, 45, 0.2),
    0 0 0 10px rgba(213, 154, 18, 0.08);
  animation: success-pop 0.65s ease both;
}

.thank-you-icon::after {
  content: "";
  position: absolute;
  inset: -12px;
  border: 1px solid rgba(213, 154, 18, 0.28);
  border-radius: 50%;
}

/* Small gold heading */

.thank-you-card .contact-eyebrow {
  margin-bottom: 15px;
  color: #b67d00;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2.6px;
}

.thank-you-card .contact-eyebrow::after {
  content: "";
  display: block;
  width: 58px;
  height: 2px;
  margin: 12px auto 0;
  background: linear-gradient(
    90deg,
    transparent,
    #d59a12,
    transparent
  );
}

/* Main title */

.thank-you-card h1 {
  max-width: 650px;
  margin: 0 auto 20px;
  color: #08172d;
  font-size: clamp(38px, 5vw, 56px);
  line-height: 1.12;
  letter-spacing: -1.2px;
}

/* Supporting text */

.thank-you-card > p:not(.contact-eyebrow) {
  max-width: 610px;
  margin: 0 auto 33px;
  color: #5c6677;
  font-size: 18px;
  line-height: 1.75;
}

/* Return-home button */

.thank-you-card .btn.primary {
  min-width: 190px;
  min-height: 52px;
  padding: 14px 27px;
  background:
    linear-gradient(
      135deg,
      #f1bf43,
      #d59a12
    );
  border: 1px solid #d59a12;
  color: #08172d;
  box-shadow: 0 12px 26px rgba(213, 154, 18, 0.24);
}

.thank-you-card .btn.primary:hover {
  transform: translateY(-3px);
  background: #08172d;
  border-color: #08172d;
  color: #ffffff;
  box-shadow: 0 16px 32px rgba(8, 23, 45, 0.22);
}

/* Success icon entrance */

@keyframes success-pop {
  0% {
    opacity: 0;
    transform: scale(0.65) rotate(-10deg);
  }

  70% {
    transform: scale(1.08) rotate(2deg);
  }

  100% {
    opacity: 1;
    transform: scale(1) rotate(0);
  }
}

/* Accessibility */

@media (prefers-reduced-motion: reduce) {
  .thank-you-icon {
    animation: none;
  }
}

/* Tablet */

@media (max-width: 800px) {
  .thank-you-page {
    min-height: 72vh;
    padding: 85px 20px;
  }

  .thank-you-card {
    padding: 58px 38px 50px;
  }
}

/* Mobile */

@media (max-width: 550px) {
  .thank-you-page {
    padding: 65px 15px;
  }

  .thank-you-card {
    padding: 48px 23px 42px;
    border-radius: 17px;
  }

  .thank-you-icon {
    width: 74px;
    height: 74px;
    margin-bottom: 24px;
    font-size: 34px;
  }

  .thank-you-card h1 {
    font-size: 36px;
  }

  .thank-you-card > p:not(.contact-eyebrow) {
    font-size: 16px;
  }

  .thank-you-card .btn.primary {
    width: 100%;
  }
}

/* =========================================================
   HEADER ACTION BUTTONS
   ========================================================= */

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  white-space: nowrap;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 13px 21px;
  border: 1px solid #1fa855;
  border-radius: 8px;
  background: #25d366;
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 9px 22px rgba(37, 211, 102, 0.22);
  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    box-shadow 0.25s ease;
}

.whatsapp-btn:hover {
  transform: translateY(-2px);
  background: #1ebe5d;
  color: #ffffff;
  box-shadow: 0 13px 28px rgba(37, 211, 102, 0.32);
}

.whatsapp-icon {
  width: 21px;
  height: 21px;
  flex-shrink: 0;
}

/* Adjust header columns for two buttons */

.nav {
  grid-template-columns: 300px 1fr auto;
}

/* Tablet */

@media (max-width: 1050px) {
  .header-actions {
    gap: 8px;
  }

  .nav-btn,
  .whatsapp-btn {
    padding: 11px 15px;
    font-size: 14px;
  }
}

/* Mobile */

@media (max-width: 700px) {
  .nav {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .logo-link {
    justify-self: center;
  }

  .nav-links {
    grid-column: 1;
  }

  .header-actions {
    width: 100%;
    justify-content: center;
  }

  .nav-btn,
  .whatsapp-btn {
    flex: 1;
    max-width: 180px;
  }
}

@media (max-width: 430px) {
  .whatsapp-btn span {
    display: none;
  }

  .whatsapp-btn {
    flex: 0 0 50px;
    padding: 12px;
  }

  .whatsapp-icon {
    width: 24px;
    height: 24px;
  }
}

/* ===========================
   EXPLORE MORE SERVICES BUTTON
=========================== */

.back-services{
    margin-top:40px;
    text-align:center;
}

.ghost-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:14px 32px;
    border:2px solid #D4AF37;
    border-radius:12px;
    color:#D4AF37;
    font-weight:600;
    text-decoration:none;
    transition:all .3s ease;
}

.ghost-btn:hover{
    background:#D4AF37;
    color:#0F172A;
    transform:translateY(-2px);
}

.price-card{

display:inline-block;

margin:35px 0;

padding:22px 40px;

background:#ffffff;

border:2px solid #d4af37;

border-radius:16px;

box-shadow:0 10px 30px rgba(0,0,0,.08);

text-align:center;

}

.price-label{

display:block;

font-size:.8rem;

font-weight:700;

letter-spacing:2px;

color:#777;

text-transform:uppercase;

margin-bottom:8px;

}

.price-amount{

font-size:3.5rem;

font-weight:800;

line-height:1;

color:#d4af37;

margin-bottom:8px;

}

.price-period{

display:block;

font-size:1rem;

font-weight:600;

color:#1b2b45;

}
/* ==========================================
   SERVICE CATEGORY CARDS
========================================== */

.service-category-card {
    position: relative;
    min-height: 270px;
    padding: 31px 28px;
    background: #ffffff;
    border: 1px solid #dfe4eb;
    border-radius: 15px;
    box-shadow: 0 13px 32px rgba(8, 23, 45, 0.06);
    overflow: hidden;
    text-align: center;

    display: flex;
    flex-direction: column;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}

.service-category-card::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(
        90deg,
        #a87300,
        #f1bf43
    );
}

.service-category-card:hover {
    transform: translateY(-7px);
    border-color: rgba(213,154,18,.55);
    box-shadow: 0 21px 46px rgba(8,23,45,.12);
}

.service-category-card h3 {
    margin-bottom: 13px;
    color: #08172d;
    font-size: 21px;
    line-height: 1.35;
}

.service-category-card p {
    color: #5c6677;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 28px;
}

.service-category-card .card-btn {
    margin-top: auto;
}
.service-category-grid{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:23px;
}
@media(max-width:1050px){

.service-category-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:650px){

.service-category-grid{
grid-template-columns:1fr;
}

}