:root {
  --gold: #c5a059;
  --gold-hover: #b08d4a;
  --navy: #0f172a;
  --navy-light: #1e293b;
  --white: #ffffff;
  --gray: #f8f9fa;
  --text: #333333;
  --text-light: #64748b;
  --font-serif: "Playfair Display", serif;
  --font-sans: "Lato", sans-serif;
  --container: 1200px;
}

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

body {
  font-family: var(--font-sans);
  background-color: var(--white);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 100px 0;
}

/* Typography */
h1,
h2,
h3,
h4 {
  font-family: var(--font-serif);
  color: var(--navy);
  line-height: 1.2;
}

h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  margin-bottom: 30px;
}

h2 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 20px;
}

.italic-accent {
  font-style: italic;
  color: var(--gold);
}

.center {
  text-align: center;
}

.divider {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 20px auto 30px;
}

/* Buttons */
.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  padding: 15px 35px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: 0.3s;
}

.btn-gold:hover {
  background: transparent;
  color: var(--gold);
}

.btn-gold-outline {
  display: inline-block;
  background: transparent;
  color: var(--gold);
  padding: 12px 25px;
  border: 1px solid var(--gold);
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
}

.btn-gold-outline:hover {
  background: var(--gold);
  color: #fff;
}

.btn-link {
  color: var(--navy);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
}

.link-arrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-weight: 700;
}

.link-arrow:hover {
  gap: 15px;
  color: var(--gold);
}

.full {
  width: 100%;
  text-align: center;
}

.sm {
  padding: 8px 20px;
  font-size: 14px;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 15px 0;
  border-bottom: 1px solid #eee;
  transition: 0.3s;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.d-nav {
  display: flex;
  gap: 30px;
}

.d-nav a {
  font-size: 14px;
  text-transform: uppercase;
  color: var(--text);
  letter-spacing: 1px;
}

.d-nav a:hover,
.d-nav a.active {
  color: var(--gold);
}

.h-act {
  display: flex;
  align-items: center;
  gap: 20px;
}

.link-u {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
}

.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--navy);
}

/* Mobile Menu */
.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--white);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  padding: 20px;
  transform: translateY(-100%);
  transition: 0.5s ease;
}

.mobile-overlay.active {
  transform: translateY(0);
}

.mo-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.mo-logo {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
}

.icon-btn {
  background: none;
  border: none;
  cursor: pointer;
}

.mo-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.mo-nav a {
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--navy);
}

.mo-foot {
  margin-top: auto;
}

/* Hero */
.hero {
  padding-top: 140px;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: #fff;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.pill {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  padding: 5px 15px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-desc {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 40px;
  max-width: 550px;
}

.hero-btns {
  display: flex;
  gap: 30px;
  align-items: center;
  margin-bottom: 30px;
}

.hero-note {
  font-size: 12px;
  color: #999;
  font-style: italic;
}

.hero-img {
  position: relative;
}

.hero-img img {
  border-radius: 4px;
}

.float-stat {
  position: absolute;
  bottom: -30px;
  left: -30px;
  background: var(--white);
  padding: 20px 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  border: 1px solid #eee;
}

.fs-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 32px;
  color: var(--gold);
}

.fs-lbl {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Expertise */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.srv-card {
  padding: 40px;
  background: var(--gray);
  transition: 0.3s;
  border-top: 3px solid transparent;
}

.srv-card:hover {
  background: var(--white);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  border-top-color: var(--gold);
  transform: translateY(-10px);
}

.srv-num {
  font-family: var(--font-serif);
  font-size: 40px;
  color: #ddd;
  display: block;
  margin-bottom: 20px;
}

.srv-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.srv-card p {
  color: var(--text-light);
  font-size: 15px;
}

/* Blog */
.bg-light {
  background: var(--gray);
}

.flex-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
}

.blog-featured {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
}

.bf-main {
  background: var(--white);
  padding: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.bf-img {
  height: 350px;
  overflow: hidden;
}

.bf-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.bf-main:hover img {
  transform: scale(1.05);
}

.bf-content {
  padding: 30px;
}

.meta {
  font-size: 12px;
  color: var(--gold);
  margin-bottom: 10px;
  font-weight: 700;
}

.bf-content h3 {
  font-size: 28px;
  margin-bottom: 15px;
}

.read-btn {
  display: inline-block;
  margin-top: 20px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--navy);
  border-bottom: 2px solid var(--gold);
}

.bf-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bf-item {
  background: var(--white);
  padding: 25px;
  border-left: 2px solid transparent;
  transition: 0.3s;
}

.bf-item:hover {
  border-left-color: var(--gold);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.date {
  font-size: 11px;
  color: #999;
  display: block;
  margin-bottom: 5px;
}

.bf-item h4 {
  font-size: 18px;
  margin-bottom: 5px;
}

.bf-item p {
  font-size: 14px;
  color: var(--text-light);
}

/* Methodology */
.split-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.split-block.reverse {
  /* Logic handled by grid order if needed, but here structure is simple */
}

.sb-content h2 {
  margin-bottom: 30px;
}

.sb-content p {
  margin-bottom: 20px;
  color: var(--text-light);
}

.gold-list {
  list-style: none;
  margin-top: 30px;
}

.gold-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-weight: 700;
  color: var(--navy);
}

.gold-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 15px;
  height: 2px;
  background: var(--gold);
}

/* Interactive Assessment */
.bg-dark {
  background: var(--navy);
  color: var(--white);
}

.bg-dark h2 {
  color: var(--white);
}

.bg-dark p {
  color: #ccc;
}

.assess-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 60px;
}

.ab-text {
  max-width: 600px;
}

.ab-action {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.sm-note {
  font-size: 12px;
  color: #888;
}

/* Trust */
.logos-grid {
  display: flex;
  justify-content: space-between;
  opacity: 0.6;
  margin-bottom: 80px;
  flex-wrap: wrap;
  gap: 20px;
}

.logo-item {
  font-family: var(--font-serif);
  font-size: 24px;
  font-style: italic;
  color: #ccc;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
}

.stat strong {
  display: block;
  font-size: 48px;
  color: var(--gold);
  font-family: var(--font-serif);
}

.stat span {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Steps */
.steps-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
  position: relative;
}

.steps-timeline::before {
  content: "";
  position: absolute;
  top: 25px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #ddd;
  z-index: 0;
}

.step {
  position: relative;
  z-index: 1;
  background: var(--gray);
  padding: 20px;
  text-align: center;
}

.step-icon {
  width: 50px;
  height: 50px;
  background: var(--gold);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-serif);
  font-weight: 700;
}

/* FAQ */
.narrow {
  max-width: 800px;
  margin: 0 auto;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.acc-item {
  border-bottom: 1px solid #eee;
}

.acc-btn {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 0;
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.acc-content {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s;
}

.acc-content p {
  padding-bottom: 20px;
  color: var(--text-light);
}

/* Form */
.form-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.fl-info h2 {
  color: var(--white);
  margin-bottom: 20px;
}

.contacts-block {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cb-row {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--gold);
}

.cb-row a,
.cb-row span {
  color: #fff;
}

.fl-form {
  background: #fff;
  padding: 40px;
  border-radius: 4px;
}

.form-grp {
  margin-bottom: 20px;
  position: relative;
}

.form-grp label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 5px;
}

.form-grp input {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  font-family: var(--font-sans);
}

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

.err {
  position: absolute;
  bottom: -20px;
  left: 0;
  font-size: 11px;
  color: #d9534f;
  display: none;
}

.form-grp.error .err {
  display: block;
}

.form-grp.error input {
  border-color: #d9534f;
}

.chk-grp {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
}

.chk-grp input {
  margin-top: 5px;
}

.chk-grp label {
  font-size: 12px;
  color: #666;
}

.chk-grp a {
  text-decoration: underline;
  color: var(--navy);
}

/* Footer */
.footer {
  background: var(--navy);
  color: #fff;
  padding: 80px 0 20px;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.f-logo {
  font-family: var(--font-serif);
  font-size: 24px;
  margin-bottom: 20px;
  color: var(--gold);
}

.fg-col p {
  color: #aaa;
  margin-bottom: 20px;
  font-size: 14px;
}

.f-addr a {
  display: block;
  color: var(--gold);
}

.fg-col h5 {
  font-family: var(--font-serif);
  color: #fff;
  margin-bottom: 20px;
}

.fg-col a {
  display: block;
  color: #aaa;
  margin-bottom: 10px;
  font-size: 14px;
}

.fg-col a:hover {
  color: var(--gold);
}

.f-copy {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
  font-size: 12px;
  color: #666;
}

/* Cookie */
.cookie-modal {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--white);
  padding: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  display: none;
  z-index: 5000;
  max-width: 300px;
}

.cm-content p {
  margin-bottom: 15px;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 1024px) {
  .d-nav,
  .h-act {
    display: none;
  }
  .burger {
    display: flex;
    margin-left: auto;
  }
  .hero-layout,
  .blog-featured,
  .split-block,
  .form-layout,
  .foot-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-txt {
    text-align: center;
  }
  .hero-btns {
    justify-content: center;
  }
  .assess-box {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  .grid-3,
  .steps-timeline {
    grid-template-columns: 1fr;
  }
  .steps-timeline::before {
    display: none;
  }
}
.pages {
  padding: 120px 0;
}

.pages-wrap {
  max-width: 1000px;
  padding: 0 20px;
  margin: 0 auto 20px;
}

.pages h1 {
  font-size: 40px;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 40px;
  text-align: center;
}

.text-wrapper {
  background: #f8fafc;
  padding: 50px 40px;
  border-radius: 20px;
  line-height: 1.8;
}

.text-wrapper h2 {
  font-size: 28px;
  font-weight: 700;
  color: #1e293b;
  margin-top: 40px;
  margin-bottom: 15px;
  border-bottom: 2px solid rgba(99, 102, 241, 0.2);
  padding-bottom: 5px;
}

.text-wrapper h3 {
  color: #000000;
  margin-bottom: 20px;
}

.text-wrapper p {
  color: #64748b;
  margin-bottom: 20px;
}

.text-wrapper ul {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.text-wrapper ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 15px;
  color: #1e293b;
}

.text-wrapper ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  font-size: 20px;
  line-height: 1;
  color: var(--primary);
  top: 0;
}

.text-wrapper strong {
  color: var(--color-error);
}

.text-wrapper a {
  color: #001eff;
  text-decoration: underline;
  font-weight: 600;
}

.text-wrapper ol {
  display: flex;
  flex-direction: column;
  padding: 20px;
  color: #000000;
}

.margin {
  margin: 120px 0 50px;
  font-size: 40px;
  color: var(--accent);
}

@media (max-width: 768px) {
  .pages {
    padding: 100px 0 60px;
  }
  .pages h1 {
    text-align: left;
    font-size: 20px;
    margin-bottom: 30px;
  }
  .text-wrapper {
    padding: 30px 20px;
  }
  .text-wrapper h2 {
    font-size: 24px;
    margin-top: 30px;
  }
  h3 {
    font-size: 20px;
  }
  .margin {
    font-size: 28px;
  }
}

/* --- CONTACT PAGE SPECIFIC STYLES --- */
.contact-page-main {
  padding-top: 180px;
  padding-bottom: 120px;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cp-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 400;
  letter-spacing: -2px;
  color: var(--accent);
  margin-bottom: 30px;
  line-height: 1;
}

.cp-divider {
  width: 60px;
  height: 1px;
  background-color: var(--accent);
  margin: 0 auto 40px auto;
}

.cp-status {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--text-muted);
  border: 1px solid var(--line);
  display: inline-block;
  padding: 10px 20px;
  margin-bottom: 60px;
  background: #fcfcfc;
}

.cp-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.cp-label {
  font-family: var(--font-sans);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: var(--text-muted);
}

.cp-phone-link {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--accent);
  line-height: 1.2;
  border-bottom: 2px solid transparent;
  transition: 0.3s;
  margin-bottom: 40px;
}

.cp-phone-link:hover {
  border-bottom-color: var(--accent);
  opacity: 0.8;
}

.cp-address-box {
  border-top: 1px solid var(--line);
  padding-top: 40px;
  width: 100%;
  max-width: 400px;
}

.cp-addr {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 10px;
}

.cp-email {
  font-family: var(--font-sans);
  color: var(--text-muted);
  font-size: 1rem;
}

.cp-email a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.cp-email a:hover {
  color: var(--accent);
}

@media (max-width: 600px) {
  .contact-page-main {
    padding-top: 140px;
    text-align: center;
  }

  .cp-phone-link {
    font-size: 2rem;
  }
}
