:root {
  --primary: #1b4332; /* Deep Green */
  --primary-dark: #081c15;
  --accent: #d8f3dc; /* Light Green/Mint for contrast */
  --gold: #d4a373; /* Gold/Bronze */
  --bg-light: #f5f5f0; /* Cream */
  --white: #ffffff;
  --text-main: #2d3436;
  --text-muted: #636e72;
  --font-head: "Playfair Display", serif;
  --font-body: "Roboto Flex", sans-serif;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

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

html {
  scroll-behavior: smooth;
}

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

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

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin-bottom: 25px;
  color: var(--white);
}
h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

p {
  margin-bottom: 20px;
  font-size: 1.05rem;
  color: var(--text-muted);
}

.center {
  text-align: center;
}
.italic {
  font-style: italic;
  color: var(--gold);
}

/* Buttons */
.btn-solid {
  display: inline-block;
  padding: 14px 30px;
  background: var(--primary);
  color: var(--white);
  border-radius: 4px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: 1px solid var(--primary);
  cursor: pointer;
  transition: 0.3s;
}

.btn-solid:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--primary-dark);
}
.btn-solid.lg {
  padding: 16px 40px;
  font-size: 1.1rem;
}
.btn-solid.full {
  width: 100%;
  text-align: center;
}

.btn-ghost {
  display: inline-block;
  padding: 14px 30px;
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
}

.btn-ghost:hover {
  background: var(--primary);
  color: var(--white);
}
.btn-ghost.text-white {
  color: var(--white);
  border-color: var(--white);
}
.btn-ghost.text-white:hover {
  background: var(--white);
  color: var(--primary);
}

.link-arr {
  font-weight: 600;
  color: var(--gold);
  border-bottom: 1px solid transparent;
}
.link-arr:hover {
  border-bottom-color: var(--gold);
}

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

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-sym {
  background: var(--primary);
  color: #fff;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-head);
}
.logo-txt {
  display: flex;
  flex-direction: column;
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 0.9;
  color: var(--primary);
}

.desk-nav {
  display: flex;
  gap: 30px;
}
.nav-lnk {
  font-weight: 500;
  color: var(--text-main);
  font-size: 0.95rem;
}
.nav-lnk:hover {
  color: var(--gold);
}

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

.burger {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--primary);
  cursor: pointer;
}

/* Mobile Menu */
.mob-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: var(--white);
  z-index: 2000;
  padding: 25px;
  display: flex;
  flex-direction: column;
  transition: 0.4s ease;
}
.mob-menu.active {
  right: 0;
}

.mm-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
}
.mm-head span {
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 1px;
}
#closeMm {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--primary);
}

.mm-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow-y: auto;
}
.mm-body a {
  font-size: 1.5rem;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--primary);
}
.mm-cta {
  color: var(--gold) !important;
  margin-top: 20px;
  font-style: italic;
}

.mm-foot {
  margin-top: auto;
  border-top: 1px solid #eee;
  padding-top: 20px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Hero */
.hero {
  position: relative;
  padding-top: 100px; /* Offset for header */
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
}

.hero-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(8, 28, 21, 0.75); /* Dark Green Overlay for readability */
}

.hero-container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}

.hero-card {
  max-width: 800px;
  text-align: center;
}

.badge {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
  padding: 8px 16px;
  font-size: 0.8rem;
  letter-spacing: 2px;
  margin-bottom: 25px;
}

.hero-desc {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  margin-bottom: 40px;
}
.hero-btns {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-note {
  margin-top: 30px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Ticker */
.ticker-bar {
  background: var(--gold);
  padding: 15px 0;
  overflow: hidden;
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1px;
}
.ticker-track {
  white-space: nowrap;
  animation: scroll 30s linear infinite;
}
.ticker-track span {
  margin: 0 10px;
}
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Services */
.section {
  padding: 80px 0;
}
.bg-light {
  background: var(--bg-light);
}
.bg-dark {
  background: var(--primary);
  color: var(--white);
}
.text-white p {
  color: rgba(255, 255, 255, 0.8);
}
.text-white h2 {
  color: #fff;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.srv-card {
  padding: 40px 30px;
  background: var(--white);
  border: 1px solid #eee;
  transition: 0.3s;
}
.srv-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow);
  border-color: var(--gold);
}

.srv-icon {
  width: 60px;
  height: 60px;
  background: var(--bg-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 25px;
}

/* Blog */
.split-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 20px;
}

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

.bm-img img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 20px;
}
.bm-content h3 {
  font-size: 2rem;
  margin-bottom: 15px;
}
.date {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}
.btn-link {
  font-weight: 700;
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
}

.blog-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.bl-item {
  border-bottom: 1px solid #ddd;
  padding-bottom: 20px;
}
.bl-item:last-child {
  border-bottom: none;
}
.bl-item h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.bl-item p {
  font-size: 0.95rem;
  margin: 0;
}

/* FAQ */
.narrow {
  max-width: 800px;
  margin: 0 auto;
}
.accordion {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.acc-item {
  border: 1px solid #eee;
  border-radius: 4px;
  overflow: hidden;
}
.acc-btn {
  width: 100%;
  text-align: left;
  padding: 20px;
  background: var(--white);
  border: none;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  color: var(--primary);
  font-family: var(--font-head);
}
.acc-btn::after {
  content: "+";
  color: var(--gold);
  font-size: 1.5rem;
}
.acc-btn.active::after {
  content: "—";
}
.acc-content {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s;
  background: var(--bg-light);
}
.acc-content p {
  padding: 20px;
  margin: 0;
}

/* Contact Form */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
}

.cw-info h2 {
  color: #fff;
  margin-bottom: 20px;
}
.cw-info p {
  color: rgba(255, 255, 255, 0.8);
}
.cw-list {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.cw-row {
  display: flex;
  gap: 10px;
  align-items: center;
}
.cw-row i {
  color: var(--gold);
}

.inp-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.inp-group {
  margin-bottom: 20px;
}
.inp-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}
.inp-group input {
  width: 100%;
  padding: 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  outline: none;
}
.inp-group input:focus {
  border-color: var(--gold);
}

.err {
  color: #ff6b6b;
  font-size: 0.8rem;
  margin-top: 5px;
  display: none;
}
.inp-group.error input {
  border-color: #ff6b6b;
}
.inp-group.error .err {
  display: block;
}

.cap-box input {
  width: 100px;
}

.chk-box {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 30px;
}
.chk-box label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}
.chk-box a {
  color: var(--gold);
  text-decoration: underline;
}

.btn-submit {
  width: 100%;
  padding: 15px;
  background: var(--gold);
  border: none;
  font-weight: 700;
  color: var(--primary-dark);
  cursor: pointer;
  transition: 0.3s;
}
.btn-submit:hover {
  background: #fff;
}

/* Footer */
.footer {
  background: #111;
  color: #fff;
  padding: 80px 0 20px;
}
.f-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 50px;
}

.f-logo {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 15px;
  letter-spacing: 1px;
}
.f-brand p {
  color: #888;
  font-size: 0.9rem;
}

.f-col h5 {
  color: var(--gold);
  margin-bottom: 20px;
  font-size: 0.9rem;
  letter-spacing: 1px;
}
.f-col a {
  display: block;
  color: #aaa;
  margin-bottom: 10px;
  font-size: 0.95rem;
}
.f-col a:hover {
  color: #fff;
  padding-left: 5px;
}

.contact-col p {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  color: #aaa;
  align-items: center;
}
.contact-col i {
  width: 18px;
  color: var(--gold);
}
.contact-col a {
  display: inline;
  color: #aaa;
  margin: 0;
}
.contact-col a:hover {
  color: #fff;
  padding: 0;
}

.f-btn {
  margin-top: 15px;
  display: inline-block !important;
  border-bottom: 1px solid var(--gold);
  color: var(--gold) !important;
  padding-bottom: 2px;
}

.f-copy {
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 20px;
  color: #555;
  font-size: 0.85rem;
}

/* Cookie */
.cookie-popup {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 300px;
  background: var(--white);
  padding: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  display: none;
  border-left: 5px solid var(--primary);
}
.cookie-content button {
  width: 100%;
  margin-top: 10px;
  padding: 10px;
  background: var(--primary);
  color: #fff;
  border: none;
  cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  .f-grid {
    grid-template-columns: 1fr 1fr;
  }
  h1 {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  /* Header */
  .desk-nav,
  .h-act .btn-ghost,
  .h-act .btn-solid {
    display: none;
  }
  .burger {
    display: block;
  }

  /* Hero */
  .hero {
    padding-top: 80px;
    align-items: center;
    text-align: center;
  }
  h1 {
    font-size: 2.2rem;
  }
  .hero-btns {
    flex-direction: column;
    width: 100%;
  }
  .btn-solid.lg,
  .btn-ghost.lg {
    width: 100%;
  }

  /* General Layouts */
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .split-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .inp-row {
    grid-template-columns: 1fr;
  }
  .f-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  /* Padding adjustments */
  .section {
    padding: 60px 0;
  }
}

.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 {
    font-size: 22px;
    margin-bottom: 30px;
  }
  .text-wrapper {
    padding: 30px 20px;
  }
  .text-wrapper h2 {
    font-size: 24px;
    margin-top: 30px;
  }
  .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;
  }
}
