/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 12px;
}
::-webkit-scrollbar-track {
  background: #1a1a2e;
}
::-webkit-scrollbar-thumb {
  background-color: #d4af37;
  border-radius: 6px;
  border: 3px solid #1a1a2e;
}
::-webkit-scrollbar-thumb:hover {
  background-color: #e2c78e;
}

:root {
  --c-dark-blue: #1a1a2e;
  --c-dark-blue-light: #24243e;
  --c-gold: #d4af37;
  --c-gold-light: #e2c78e;
  --c-red-accent: #e63946;
  --c-white: #ffffff;
  --c-gray-light: #f4f5f7;
  --c-gray-text: #666666;
  --c-border: #e2e8f0;

  --f-heading: "Playfair Display", serif;
  --f-body: "Outfit", sans-serif;

  --rad-sm: 4px;
  --rad-md: 12px;
  --rad-lg: 24px;

  --trans: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
  --shadow-strong: 0 20px 40px rgba(26, 26, 46, 0.15);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}
body {
  font-family: var(--f-body);
  background-color: var(--c-white);
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
}
body.scroll-locked {
  overflow: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--trans);
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--rad-md);
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-padding {
  padding: 120px 0;
  position: relative;
  z-index: 1;
}

.bg-slate {
  background-color: var(--c-gray-light);
}
.bg-dark {
  background-color: var(--c-dark-blue);
}

.text-gold {
  color: var(--c-gold) !important;
}
.text-white {
  color: var(--c-white) !important;
}
.text-gray {
  color: #a0aec0 !important;
}

h1,
h2,
h3,
h4 {
  font-family: var(--f-heading);
  color: var(--c-dark-blue);
  line-height: 1.2;
  font-weight: 700;
}
.bg-dark h2,
.bg-dark h3 {
  color: var(--c-white);
}

.header-centered {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}
.section-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  margin-bottom: 20px;
}
.section-subtitle {
  font-size: 1.2rem;
  color: var(--c-gray-text);
}
.body-text {
  font-size: 1.1rem;
  color: var(--c-gray-text);
  margin-bottom: 20px;
  line-height: 1.7;
}
.body-text:last-child {
  margin-bottom: 0;
}

.btn-primary-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  background-color: var(--c-gold);
  color: var(--c-dark-blue);
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 1.05rem;
  border: none;
  border-radius: var(--rad-sm);
  cursor: pointer;
  transition: var(--trans);
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}
.btn-primary-gold:hover {
  background-color: var(--c-gold-light);
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(212, 175, 55, 0.5);
}
.btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 34px;
  border: 2px solid var(--c-gray-light);
  color: var(--c-white);
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 1.05rem;
  border-radius: var(--rad-sm);
  transition: var(--trans);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.btn-outline-light:hover {
  background-color: var(--c-white);
  color: var(--c-dark-blue);
  border-color: var(--c-white);
}
.btn-wrap-mt {
  margin-top: 30px;
}

/* Header */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 25px 0;
  transition: var(--trans);
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.main-header.scrolled {
  padding: 15px 0;
  background: rgba(26, 26, 46, 0.98);
  box-shadow: var(--shadow-strong);
  border-color: transparent;
}
.header-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}
.brand-identity {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-svg {
  width: 45px;
  height: 45px;
}
.brand-name {
  font-family: var(--f-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--c-white);
  letter-spacing: 0.5px;
}

.nav-controls {
  display: flex;
  align-items: center;
  gap: 30px;
}
.explicit-home-link {
  font-family: var(--f-body);
  font-weight: 600;
  color: var(--c-white);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.95rem;
  display: none;
}
@media (min-width: 768px) {
  .explicit-home-link {
    display: block;
  }
}
.explicit-home-link:hover {
  color: var(--c-gold);
}

.burger-trigger {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--rad-sm);
  color: var(--c-white);
  padding: 10px 15px;
  cursor: pointer;
  transition: var(--trans);
  display: flex;
  align-items: center;
  gap: 10px;
}
.burger-trigger:hover {
  border-color: var(--c-gold);
  color: var(--c-gold);
}
.burger-text {
  font-family: var(--f-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Menu Overlay */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: var(--trans);
}
.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}
.side-navigation {
  position: fixed;
  top: 0;
  right: -450px;
  width: 450px;
  max-width: 100vw;
  height: 100vh;
  background-color: var(--c-white);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  transition: right 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: -20px 0 50px rgba(0, 0, 0, 0.2);
}
.side-navigation.active {
  right: 0;
}
.side-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 40px;
  border-bottom: 1px solid var(--c-border);
}
.close-menu-btn {
  background: var(--c-gray-light);
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--c-dark-blue);
  cursor: pointer;
  transition: var(--trans);
}
.close-menu-btn:hover {
  background: var(--c-red-accent);
  color: var(--c-white);
  transform: rotate(90deg);
}

.side-nav-scroll {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
/* Scrollbar inside menu */
.side-nav-scroll::-webkit-scrollbar {
  width: 6px;
}
.side-nav-scroll::-webkit-scrollbar-track {
  background: var(--c-white);
}
.side-nav-scroll::-webkit-scrollbar-thumb {
  background-color: var(--c-border);
  border-radius: 10px;
}

.side-nav-links {
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}
.nav-item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--f-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--c-dark-blue);
  transition: var(--trans);
}
.nav-item i {
  color: var(--c-gold);
  width: 24px;
  height: 24px;
  transition: var(--trans);
}
.nav-item:hover {
  color: var(--c-gold);
  transform: translateX(10px);
}
.nav-item:hover i {
  transform: scale(1.2);
}
.highlight-nav-item {
  color: var(--c-red-accent);
  margin-top: 15px;
}
.highlight-nav-item i {
  color: var(--c-red-accent);
}
.highlight-nav-item:hover {
  color: var(--c-red-accent);
}

.side-nav-footer {
  padding: 30px 40px;
  border-top: 1px solid var(--c-border);
  color: var(--c-gray-text);
}
.nav-email {
  color: var(--c-gold);
  font-weight: 700;
  font-family: var(--f-heading);
  font-size: 1.2rem;
  margin-top: 5px;
}

/* Hero Typography (No Bg Image) */
.hero-typography {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-top: 80px;
  background-color: var(--c-dark-blue);
  overflow: hidden;
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: 0;
}
.hero-glow-1 {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(
    circle,
    rgba(212, 175, 55, 0.1) 0%,
    transparent 60%
  );
  z-index: 0;
  border-radius: 50%;
}
.hero-glow-2 {
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(
    circle,
    rgba(230, 57, 70, 0.05) 0%,
    transparent 60%
  );
  z-index: 0;
  border-radius: 50%;
}
.hero-container {
  position: relative;
  z-index: 2;
}
.hero-content-wrapper {
  max-width: 900px;
  padding: 40px 0;
  border-left: 4px solid var(--c-gold);
  padding-left: 40px;
}
.hero-badge {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid var(--c-gold);
  color: var(--c-gold);
  font-family: var(--f-body);
  font-weight: 600;
  border-radius: 30px;
  margin-bottom: 24px;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 2px;
}
.hero-headline {
  font-size: clamp(3rem, 6vw, 5.5rem);
  color: var(--c-white);
  margin-bottom: 30px;
  letter-spacing: -1px;
}
.hero-headline span {
  font-style: italic;
  color: var(--c-gold);
  display: block;
}
.hero-lead {
  font-size: 1.25rem;
  color: #e2e8f0;
  margin-bottom: 25px;
  max-width: 750px;
  line-height: 1.8;
}
.hero-action-bar {
  display: flex;
  gap: 30px;
  align-items: center;
  margin-top: 50px;
  flex-wrap: wrap;
}

/* Split Layouts */
.layout-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.reverse-split {
  grid-template-columns: 1fr 1fr;
}
.split-content {
  position: relative;
}
.split-image {
  position: relative;
}

.image-stack {
  position: relative;
  padding: 20px 0 0 20px;
}
.img-front {
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-strong);
}
.image-accent-border {
  position: absolute;
  top: 0;
  left: 0;
  width: 90%;
  height: 90%;
  border: 3px solid var(--c-gold);
  border-radius: var(--rad-md);
  z-index: 1;
}

.glass-panel-visual {
  position: relative;
}
.glass-panel-visual img {
  box-shadow: var(--shadow-strong);
}
.stats-overlay {
  position: absolute;
  bottom: -30px;
  left: -30px;
  background: var(--c-white);
  padding: 25px 35px;
  border-radius: var(--rad-md);
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: var(--shadow-strong);
  z-index: 3;
  border-top: 4px solid var(--c-red-accent);
}
.stats-overlay i {
  color: var(--c-red-accent);
  width: 40px;
  height: 40px;
}
.stats-overlay span {
  font-family: var(--f-heading);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--c-dark-blue);
}

/* Cards */
.cards-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}
.info-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  padding: 50px 40px;
  border-radius: var(--rad-lg);
  transition: var(--trans);
  box-shadow: var(--shadow-soft);
}
.info-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-strong);
  border-color: var(--c-gold);
}
.card-icon-box {
  width: 70px;
  height: 70px;
  background: var(--c-gray-light);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--c-dark-blue);
  margin-bottom: 25px;
  transition: var(--trans);
  border: 1px solid var(--c-border);
}
.info-card:hover .card-icon-box {
  background: var(--c-gold);
  color: var(--c-white);
  border-color: var(--c-gold);
}
.card-icon-box i {
  width: 32px;
  height: 32px;
}
.info-card h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

/* Geo Banner */
.geo-banner {
  background: var(--c-dark-blue-light);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--rad-lg);
  padding: 80px;
  display: flex;
  gap: 80px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.geo-icon {
  width: 120px;
  height: 120px;
  border: 2px dashed var(--c-gold);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--c-gold);
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
.geo-icon i {
  width: 60px;
  height: 60px;
}
.geo-text {
  position: relative;
  z-index: 2;
}

/* Timeline */
.timeline-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  position: relative;
}
.timeline-block {
  background: var(--c-white);
  padding: 40px;
  border-radius: var(--rad-md);
  box-shadow: var(--shadow-soft);
  border-top: 4px solid var(--c-dark-blue);
  transition: var(--trans);
  position: relative;
  overflow: hidden;
}
.timeline-block:hover {
  border-top-color: var(--c-red-accent);
  box-shadow: var(--shadow-strong);
  transform: translateY(-5px);
}
.timeline-dot {
  font-family: var(--f-heading);
  font-size: 6rem;
  font-weight: 700;
  color: var(--c-gray-light);
  line-height: 1;
  position: absolute;
  top: 10px;
  right: 20px;
  z-index: 0;
  transition: var(--trans);
}
.timeline-block:hover .timeline-dot {
  color: rgba(230, 57, 70, 0.1);
}
.timeline-content {
  position: relative;
  z-index: 1;
}
.timeline-content h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

/* CTA Box */
.call-to-action-box {
  background: var(--c-dark-blue);
  border-radius: var(--rad-lg);
  padding: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  box-shadow: var(--shadow-strong);
  position: relative;
  overflow: hidden;
}
.call-to-action-box::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(212, 175, 55, 0.2) 0%,
    transparent 70%
  );
}
.cta-text {
  flex: 1;
  position: relative;
  z-index: 2;
}
.cta-text h2,
.cta-text p {
  color: var(--c-white);
}
.cta-text p {
  color: #a0aec0;
}
.cta-icon {
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
.cta-icon i {
  width: 160px;
  height: 160px;
  color: rgba(255, 255, 255, 0.05);
}

/* FAQ Accordion */
.accordion-wrapper {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.accordion-item {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--rad-sm);
  overflow: hidden;
  transition: var(--trans);
  box-shadow: var(--shadow-soft);
}
.accordion-item:hover {
  border-color: var(--c-gold);
}
.accordion-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 35px;
  background: none;
  border: none;
  font-family: var(--f-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--c-dark-blue);
  cursor: pointer;
  text-align: left;
}
.acc-icon {
  color: var(--c-red-accent);
  transition: transform 0.4s ease;
  flex-shrink: 0;
  margin-left: 20px;
}
.accordion-item.active .acc-icon {
  transform: rotate(45deg);
  color: var(--c-dark-blue);
}
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.acc-content {
  padding: 0 35px 35px;
}

/* Contact Form */
.contact-grid-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.contact-details-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.contact-details-list li {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.icon-bubble {
  width: 50px;
  height: 50px;
  background: var(--c-gray-light);
  border: 1px solid var(--c-border);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--c-dark-blue);
  flex-shrink: 0;
}
.detail-text strong {
  display: block;
  font-family: var(--f-heading);
  font-size: 1.15rem;
  color: var(--c-dark-blue);
  margin-bottom: 5px;
}
.detail-text span {
  color: var(--c-gray-text);
}

.contact-form-panel {
  background: var(--c-white);
  padding: 50px;
  border-radius: var(--rad-lg);
  box-shadow: var(--shadow-strong);
  border-top: 6px solid var(--c-gold);
}
.form-title {
  font-size: 2rem;
  margin-bottom: 30px;
  text-align: center;
}
.corporate-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.input-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.input-wrap label {
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--c-dark-blue);
}
.input-relative {
  position: relative;
  display: flex;
  align-items: center;
}
.input-relative i {
  position: absolute;
  left: 16px;
  color: var(--c-gray-text);
  width: 20px;
  height: 20px;
}
.input-relative input {
  width: 100%;
  padding: 16px 16px 16px 48px;
  background: var(--c-gray-light);
  border: 1px solid var(--c-border);
  border-radius: var(--rad-sm);
  font-family: var(--f-body);
  font-size: 1rem;
  color: #333;
  transition: var(--trans);
}
.input-relative input:focus {
  outline: none;
  border-color: var(--c-gold);
  background: var(--c-white);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}
.captcha-container {
  padding-top: 16px;
  border-top: 1px dashed var(--c-border);
}
.checkbox-wrap {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 8px;
}
.checkbox-wrap input {
  margin-top: 5px;
  width: 20px;
  height: 20px;
  accent-color: var(--c-gold);
  cursor: pointer;
  flex-shrink: 0;
}
.legal-notice {
  font-size: 0.9rem !important;
  color: var(--c-gray-text) !important;
  font-weight: 400 !important;
  cursor: pointer;
  line-height: 1.5;
}
.anchor-link {
  color: var(--c-dark-blue);
  text-decoration: underline;
  font-weight: 600;
}
.anchor-link:hover {
  color: var(--c-gold);
}
.submit-btn {
  width: 100%;
  margin-top: 10px;
  padding: 18px;
  font-size: 1.15rem;
}

/* Footer */
.site-footer {
  background: var(--c-dark-blue);
  color: var(--c-white);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  max-width: 350px;
  margin-top: 20px;
}
.footer-heading {
  color: var(--c-white);
  font-size: 1.25rem;
  margin-bottom: 25px;
}
.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav-list a {
  color: rgba(255, 255, 255, 0.6);
  transition: var(--trans);
}
.footer-nav-list a:hover {
  color: var(--c-gold);
}
.footer-contact-info p {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 12px;
}
.footer-contact-info i {
  color: var(--c-red-accent);
  width: 18px;
  height: 18px;
  margin-top: 4px;
}
.highlight-contact {
  color: var(--c-gold) !important;
  font-weight: 600;
  text-decoration: underline;
  font-family: var(--f-body);
  font-size: 1.05rem;
  margin-bottom: 15px;
  display: inline-block;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

/* Cookie Flyout */
.cookie-flyout {
  position: fixed;
  bottom: -150%;
  left: 0;
  width: 100%;
  background: var(--c-white);
  z-index: 3000;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.1);
  border-top: 4px solid var(--c-gold);
  padding: 25px 0;
  transition: bottom 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.cookie-flyout.show {
  bottom: 0;
}
.cookie-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.cookie-content {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1 1 400px;
}
.cookie-icon-wrapper {
  background: var(--c-gray-light);
  color: var(--c-dark-blue);
  padding: 16px;
  border-radius: 50%;
  display: flex;
  flex-shrink: 0;
  border: 1px solid var(--c-border);
}
.cookie-text-area h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: var(--c-dark-blue);
}
.cookie-text-area p {
  color: var(--c-gray-text);
  font-size: 0.95rem;
  margin: 0;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .header-grid {
    padding: 0 24px;
  }
  .layout-split,
  .reverse-split,
  .contact-grid-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .split-content,
  .contact-info-panel {
    text-align: center;
  }
  .split-image {
    order: -1;
    padding: 0 20px;
  }
  .reverse-split .split-image {
    order: -1;
  }
  .image-stack {
    padding: 0;
  }
  .image-accent-border {
    top: -15px;
    left: 15px;
    width: 100%;
    height: 100%;
  }
  .stats-overlay {
    bottom: -20px;
    left: 20px;
    right: 20px;
    justify-content: center;
  }
  .geo-banner,
  .call-to-action-box {
    flex-direction: column;
    text-align: center;
    padding: 50px 30px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
}

@media (max-width: 768px) {
  .header-grid {
    height: 75px;
  }
  .side-navigation {
    width: 100vw;
    right: -100vw;
  }
  .section-padding {
    padding: 80px 0;
  }
  .hero-typography {
    padding-top: 100px;
    text-align: center;
  }
  .hero-content-wrapper {
    border-left: none;
    padding-left: 0;
    padding: 20px 0;
  }
  .hero-headline {
    font-size: 2.8rem;
  }
  .hero-action-bar {
    flex-direction: column;
    justify-content: center;
  }
  .hero-action-bar a {
    width: 100%;
    text-align: center;
  }
  .contact-form-panel {
    padding: 30px 20px;
  }
  .contact-details-list li {
    justify-content: center;
    text-align: left;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .brand-identity,
  .footer-contact-info p {
    justify-content: center;
  }
  .footer-brand {
    align-items: center;
  }
  .footer-desc {
    margin: 16px auto 0;
  }
  .cookie-flex {
    flex-direction: column;
    text-align: center;
  }
  .cookie-content {
    flex-direction: column;
  }
  #btn-accept-cookie {
    width: 100%;
  }
}

.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;
  display: flex;
  justify-content: center;
}

.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;
  }
}
