/* === VARIABLES & RESET === */
:root {
  --bg-dark: #0f172a;
  --bg-light: #f8fafc;
  --bg-paper: #f1f5f9;
  --gold: #c5a059;
  --gold-hover: #d4af37;
  --text-main: #334155;
  --text-dark: #1e293b;
  --white: #ffffff;
  --font-head: "Playfair Display", serif;
  --font-body: "Lato", sans-serif;
  --container: 1200px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  background-color: var(--bg-light);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}
a {
  text-decoration: none;
  transition: 0.3s;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
ul {
  list-style: none;
}

/* === UTILS === */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  padding: 100px 0;
  position: relative;
}
h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  color: var(--text-dark);
  line-height: 1.2;
}
h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin-bottom: 20px;
  color: var(--white);
}
h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
}
p {
  margin-bottom: 20px;
  font-size: 1.1rem;
}
.serif-italic {
  font-style: italic;
  color: var(--gold);
}

/* Buttons */
.btn-gold {
  display: inline-block;
  padding: 15px 35px;
  background: var(--gold);
  color: var(--white);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
}
.btn-gold:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
}

.btn-gold-outline {
  display: inline-block;
  padding: 12px 30px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
}
.btn-gold-outline:hover {
  background: var(--gold);
  color: var(--white);
}

.btn-text-w {
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}
.btn-text-w:hover {
  color: var(--gold);
  gap: 15px;
}

.full {
  width: 100%;
  text-align: center;
}
.sm {
  padding: 8px 20px;
  font-size: 0.9rem;
}

/* === HEADER === */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 15px 0;
}
.h-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-text {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--bg-dark);
  text-transform: uppercase;
}

.d-nav {
  display: flex;
  gap: 30px;
}
.d-nav a {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.95rem;
  text-transform: uppercase;
}
.d-nav a:hover,
.d-nav a.active {
  color: var(--gold);
}

.h-act {
  display: flex;
  align-items: center;
  gap: 20px;
}
.link-u {
  text-decoration: underline;
  font-weight: 600;
  font-size: 0.9rem;
}
.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-dark);
}

/* === MOBILE MENU === */
.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--bg-light);
  z-index: 2000;
  padding: 20px;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: 0.4s ease;
}
.mobile-overlay.open {
  transform: translateX(0);
}
.mo-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.mo-logo {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.4rem;
}
.icon-btn {
  background: none;
  border: none;
  cursor: pointer;
}
.mo-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  margin-bottom: auto;
}
.mo-nav a {
  font-size: 1.5rem;
  font-family: var(--font-head);
  color: var(--text-dark);
}

/* === HERO (UPDATED) === */
.hero {
  height: 120vh;
  display: flex;
  align-items: center;
  position: relative;
  background: url("https://images.unsplash.com/photo-1477959858617-67f85cf4f1df?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80")
    center/cover no-repeat fixed;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.9),
    rgba(15, 23, 42, 0.7)
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 5px 15px;
  border-radius: 50px;
  margin-bottom: 30px;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 2px;
}
.hero-desc {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  font-size: 1.2rem;
}
.hero-btns {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 60px;
}
.hero-trust {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.trust-icons {
  display: flex;
  gap: 15px;
  color: var(--gold);
}

/* === SECTIONS === */
.bg-paper {
  background: var(--bg-paper);
}
.bg-dark {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.8);
}
.bg-dark h2,
.bg-dark h3,
.bg-dark h4 {
  color: var(--white);
}
.bg-gold {
  background: var(--gold);
  color: var(--white);
}
.bg-gold h2 {
  color: var(--white);
}
.bg-gold p {
  color: rgba(255, 255, 255, 0.9);
}

.split-layout {
  display: flex;
  gap: 60px;
  align-items: center;
}
.sl-txt {
  flex: 1;
}
.sl-img {
  flex: 1;
  position: relative;
}
.sl-img img {
  width: 100%;
  border-radius: 4px;
  box-shadow: 20px 20px 0 var(--gold);
}
.float-card {
  position: absolute;
  bottom: -30px;
  left: -30px;
  background: var(--white);
  padding: 20px 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-left: 5px solid var(--gold);
}
.fc-num {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--bg-dark);
  line-height: 1;
}
.fc-lbl {
  font-size: 0.9rem;
  color: var(--text-main);
}
.link-gold {
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
}
.lead {
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 30px;
}

/* Grid */
.sec-head {
  margin-bottom: 60px;
}
.sec-head.center {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}
.sec-head.flex-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.srv-card {
  background: var(--white);
  padding: 40px 30px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: 0.3s;
  height: 100%;
}
.srv-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  border-color: var(--gold);
}
.icon-box {
  color: var(--gold);
  margin-bottom: 20px;
}
.icon-box i {
  width: 40px;
  height: 40px;
}

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
}
.blog-item.big {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.bi-img {
  height: 300px;
  overflow: hidden;
}
.bi-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}
.blog-item.big:hover .bi-img img {
  transform: scale(1.1);
}
.bi-content {
  padding: 30px;
}
.date {
  font-size: 0.8rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 10px;
}
.read-more {
  color: var(--gold);
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 700;
  margin-top: 20px;
  display: block;
}
.blog-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.blog-mini {
  padding: 25px;
  border-left: 2px solid rgba(255, 255, 255, 0.2);
  transition: 0.3s;
}
.blog-mini:hover {
  border-left-color: var(--gold);
  background: rgba(255, 255, 255, 0.02);
}
.blog-mini a {
  color: var(--gold);
  font-size: 0.85rem;
  margin-top: 10px;
  display: block;
}

/* Stats */
.stats-wrap {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 40px 0;
}
.stat-item {
  text-align: center;
}
.stat-item .num {
  display: block;
  font-family: var(--font-head);
  font-size: 3rem;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 10px;
}
.stat-item .lbl {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* CTA Box */
.cta-box {
  text-align: center;
  max-width: 800px;
}
.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin-top: 30px;
}
.btn-dark {
  background: var(--bg-dark);
  color: var(--white);
  padding: 15px 40px;
  font-weight: 700;
  text-transform: uppercase;
}
.btn-dark:hover {
  background: #000;
}
.note {
  font-size: 0.85rem;
  opacity: 0.8;
}

/* Steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.step {
  padding: 30px 20px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  text-align: center;
  position: relative;
}
.step-num {
  font-size: 4rem;
  color: rgba(0, 0, 0, 0.05);
  font-weight: 700;
  position: absolute;
  top: 10px;
  left: 10px;
  font-family: var(--font-head);
}
.step h4 {
  margin-top: 20px;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

/* FAQ */
.narrow {
  max-width: 800px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.faq-item {
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: var(--white);
}
.faq-head {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 700;
  font-family: var(--font-head);
  font-size: 1.1rem;
}
.faq-head:hover {
  color: var(--gold);
}
.faq-body {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: 0.4s ease;
  opacity: 0;
}
.faq-item.active .faq-body {
  padding-bottom: 20px;
  max-height: 200px;
  opacity: 1;
}
.faq-item.active i {
  transform: rotate(180deg);
}

/* Form */
.contact-wrapper {
  display: flex;
  gap: 80px;
}
.contact-info {
  flex: 1;
}
.ci-row {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  font-size: 1.1rem;
}
.ci-row i {
  color: var(--gold);
}
.clean-form {
  flex: 1;
  background: var(--white);
  padding: 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
  border-top: 5px solid var(--gold);
}
.inp-grp {
  margin-bottom: 20px;
}
.inp-grp label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  color: var(--text-dark);
}
.inp-grp input {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  background: #f9f9f9;
  font-size: 1rem;
}
.inp-grp input:focus {
  outline: none;
  border-color: var(--gold);
  background: #fff;
}
.chk-grp {
  margin-bottom: 30px;
  font-size: 0.85rem;
  display: flex;
  gap: 10px;
  color: #666;
}
.chk-grp a {
  text-decoration: underline;
  color: var(--text-dark);
}

/* Footer */
.footer {
  background: var(--bg-dark);
  color: #888;
  padding: 80px 0 20px;
}
.f-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}
.f-logo {
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.f-col h5 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.f-col a {
  display: block;
  margin-bottom: 10px;
  font-size: 0.9rem;
}
.f-col a:hover {
  color: var(--gold);
}
.f-contact-link {
  color: var(--gold) !important;
  font-weight: 700;
  margin-top: 20px;
  display: inline-block;
}
.f-btm {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  font-size: 0.8rem;
}

/* Cookie */
.cookie-popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--white);
  padding: 25px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border-left: 5px solid var(--gold);
  z-index: 5000;
  max-width: 350px;
  display: none;
}
.cp-content p {
  font-size: 0.9rem;
  margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 1024px) {
  .d-nav,
  .h-act {
    display: none;
  }
  .burger {
    display: block;
  }
  .split-layout,
  .contact-wrapper,
  .blog-grid,
  .stats-wrap,
  .f-grid {
    flex-direction: column;
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero {
    background-attachment: scroll;
  } /* Disable parallax on mobile */
  .sl-img {
    order: -1;
  }
  .hero {
    height: 150vh;
  }
  .grid-3,
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .stat-item {
    padding: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  .stats-wrap {
    flex-direction: column;
    padding: 0;
  }
  h1 {
    font-size: 2.5rem;
  }
  .hero-content {
    text-align: center;
  }
  .hero-btns {
    justify-content: center;
  }
}
.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;
  }
}
