/*
Theme Name: Alturaitz International
Theme URI: http://www.alturaitz.com
Author: Alturaitz International
Author URI: http://www.alturaitz.com
Description: Simple and Responsive Wordpress theme.
*/
@font-face {
  font-family: "Inter";
  src: url("assets/fonts/Inter-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Inter";
  src: url("assets/fonts/Inter-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Inter";
  src: url("assets/fonts/Inter-Bold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "TrajanPro-Regular";
  src: url("assets/fonts/TrajanPro-Regular.ttf");
}

@font-face {
  font-family: "TrajanPro-Bold";
  src: url("assets/fonts/TrajanPro-Bold.otf");
}

/* -- style for common -- */
:root {
  --primary-teal: #012b30;
  --primary-teal-hover: #003d45;
  --gold-accent: #c89b3f;
  --gold-light: #e6c073;
  --text-dark: #333333;
  --text-light: #666666;
  --bg-offwhite: #eaeaea;
  --white: #ffffff;
  --black: #000000;
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.9);
  --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.05);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
  /* background-color: var(--bg-offwhite); */
  background-color: var(--white);
  color: var(--text-dark);
}

p {
  margin: 0;
  padding: 0;
  font-size: 18px;
  line-height: 28px;
  color: var(--black);
  font-family: 'Inter', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  color: var(--primary-teal);
  font-family: "TrajanPro-Bold";
}

a,
input,
textarea,
button,
select {
  outline: none;
}

a:hover,
a:focus,
input:focus,
textarea:focus,
button:focus,
select:focus {
  outline: none;
  text-decoration: none;
}

a:hover {
  color: var(--black);
  text-decoration: none;
}

input,
textarea,
button,
select,
label,
a,
span,
img {
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
}

img {
  max-width: 100%;
  height: auto;
}

:focus {
  box-shadow: none !important;
}

.container {
  width: 100%;
  max-width: 1200px;
}

ul,
ol {
  text-decoration: none;
  padding: 0;
  margin: 0;
}

a {
  color: var(--black);
  text-decoration: none;
}

/* Common Style */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-teal);
  color: var(--white) !important;
  padding: 14px 30px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid var(--primary-teal);
  font-size: 16px;
  text-transform: uppercase;
}

.btn-primary:hover,
.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show>.btn-primary.dropdown-toggle {
  background-color: var(--primary-teal-hover) !important;
  border-color: var(--primary-teal-hover) !important;
}

.offcanvas-contact .btn-primary {
  width: 100%;
}

.btn-primary svg {
  margin-left: 10px;
  fill: var(--gold-accent);
  transition: transform 0.3s ease;
}

.btn-primary:hover svg {
  transform: translateX(5px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  color: var(--primary-teal) !important;
  padding: 14px 30px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid #ccc;
  font-size: 16px;
  text-transform: uppercase;
}

.btn-outline:hover {
  border-color: var(--primary-teal);
  background-color: rgba(1, 43, 48, 0.05);
}

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

/* --- Header Styles --- */
.header {
  background-color: var(--white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo-wrapper {
  flex: 0 0 250px;
}

.logo-text {
  font-family: 'TrajanPro-Bold', serif;
  color: var(--primary-teal);
  font-size: 24px;
  line-height: 1;
  letter-spacing: 1px;
  text-decoration: none;
  display: block;
}

.logo-text small {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--text-light);
  display: block;
  margin-top: 4px;
}

.header_nav_img {
  height: 40px;
}

.header-menu-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
}

.header-menu-wrapper ul.nav {
  display: flex;
  list-style: none;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.header-menu-wrapper ul.nav>li>a {
  color: var(--primary-teal);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: color 0.3s;
}

.header-menu-wrapper ul.nav>li>a:hover {
  color: var(--gold-accent);
}

.header-right-action {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 25px;
}

.header-location {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-teal);
  font-size: 14px;
  font-weight: 600;
}

.header-location svg {
  margin-bottom: 2px;
}

/* --- Hero Section Styles --- */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background-color: var(--bg-offwhite);
  display: flex;
  align-items: center;
  padding-bottom: 80px;
  /* Space for the floating bottom bar */
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -91px;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(to bottom, rgb(234 234 234 / 9%) 0%, #eaeaea 50%, rgb(255 255 255) 100%);
  z-index: 2;
  pointer-events: none;
}

.hero-bg-graphic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
  mask-image: linear-gradient(to right, transparent, black 15%);
  -webkit-mask-image: linear-gradient(to right, transparent, black 15%);
}

.hero-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

/* Left Content */
.hero-content-left {
  flex: 0 0 50%;
  padding-right: 50px;
}

.hero-subtitle {
  color: var(--gold-accent);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.hero-title {
  font-size: 68px;
  line-height: 1.1;
  color: var(--primary-teal);
  margin-bottom: 25px;
  font-weight: 600;
}

.hero-title .gold-italic {
  color: var(--gold-accent);
  font-family: 'TrajanPro-Regular', serif;
}

.hero-divider {
  width: 50px;
  height: 3px;
  background-color: var(--gold-accent);
  margin-bottom: 25px;
}

.hero-description {
  font-size: 19px;
  line-height: 1.6;
  color: var(--text-light);
  margin-bottom: 40px;
  max-width: 100%;
}

.hero-description .gold-text {
  font-weight: 900;
}

.hero-actions {
  display: flex;
  gap: 20px;
}

/* Right Content & Glassmorphism */
.hero-graphic-right {
  flex: 0 0 50%;
  position: relative;
  height: 600px;
}

.glass-card {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 1);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.05), inset 0 0 0 2px rgba(255, 255, 255, 0.5);
  border-radius: 16px;
  padding: 20px 25px;
  display: flex;
  align-items: center;
  gap: 20px;
  position: absolute;
  width: 270px;
  transition: transform 0.3s ease;
  z-index: 2;
}

.glass-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.08), inset 0 0 0 2px rgba(255, 255, 255, 0.8);
}

.contact-card-icon {
  width: 70px;
  height: 70px;
  background: rgba(184, 147, 69, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #b89345;
}

.icon-circle {
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-circle svg {
  width: 22px;
  height: 22px;
  stroke: #FCE18D;
  /* Shiny metallic gold */
}

.card-text strong {
  display: block;
  font-size: 14px;
  color: #062b32;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  text-transform: uppercase;
  font-weight: 700;
}

.skeleton-lines .line {
  height: 3px;
  background-color: #e0e0e0;
  border-radius: 2px;
  margin-bottom: 4px;
  width: 100%;
}

.skeleton-lines .line.short {
  width: 60%;
}

.card-text span {
  font-size: 11px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Positioning the cards (Adjusted for 4 cards) */
.card-brand {
  top: 50px;
  left: 40px;
}

.card-lead {
  top: 150px;
  left: 363px;
}

.card-system {
  top: 280px;
  left: 43px;
}

.card-data {
  top: 390px;
  left: 360px;
}

/* Connecting Lines */
.connecting-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  /* Behind the cards */
}

/* Responsive basics */
@media (max-width: 1024px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-content-left {
    padding-right: 0;
    margin-bottom: 40px;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-divider {
    margin: 0 auto 25px auto;
  }

  .hero-graphic-right {
    width: 100%;
    transform: scale(0.8);
  }

  .features-bar {
    flex-wrap: wrap;
    bottom: -100px;
  }

  .feature-item {
    flex: 0 0 33.33%;
    margin-bottom: 20px;
  }

  .feature-item::after {
    display: none;
  }
}

/* ==========================================================================
   Premium Glassmorphism Footer Styles
   ========================================================================== */
.premium-site-footer {
  color: #ffffff;
  position: relative;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
  padding: 80px 0 2%;
}

/* Glowing Ambient Orbs */
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  z-index: 0;
  opacity: 0.5;
  pointer-events: none;
}

.orb-1 {
  width: 400px;
  height: 400px;
  background: rgba(164, 252, 246, 0.15);
  /* Cyan glow */
  top: -100px;
  right: -100px;
}

.orb-2 {
  width: 500px;
  height: 500px;
  background: rgba(200, 155, 63, 0.1);
  /* Gold glow */
  bottom: -200px;
  left: -200px;
}

.premium-footer-container {
  margin: 0 auto;
  max-width: 96%;
  width: 100%;
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg, #021a1f 0%, #062f3a 100%);
  border-radius: 30px;
}

/* The Glass Card */
.footer-glass-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  padding: 50px 50px 35px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

/* Top CTA Section */
.premium-footer-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
  gap: 30px;
}

.premium-cta-left {
  position: relative;
}

.cta-sparkle {
  color: var(--gold-accent);
  font-size: 24px;
  position: absolute;
  top: -10px;
  left: -20px;
  animation: pulse 2s infinite ease-in-out;
}

.premium-cta-title {
  font-family: "TrajanPro-Bold", serif;
  font-size: 72px;
  line-height: 1.1;
  margin: 0;
  color: #fff;
  letter-spacing: -1px;
}

.text-gradient-gold {
  background: linear-gradient(90deg, #e6c073, #c89b3f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.premium-cta-right {
  max-width: 400px;
}

.premium-cta-right p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.btn-premium-solid {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(90deg, #c89b3f, #e6c073);
  color: #000;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(200, 155, 63, 0.2);
}

.btn-premium-solid:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(200, 155, 63, 0.4);
}

.btn-premium-solid .arrow {
  transition: transform 0.3s ease;
}

.btn-premium-solid:hover .arrow {
  transform: translateX(5px);
}

.footer-glass-divider {
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0) 100%);
  margin-bottom: 50px;
}

/* Footer Columns */
.premium-footer-columns {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 40px;
}

.premium-footer-logo img {
  height: 45px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.brand-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 25px;
  max-width: 280px;
}

.premium-social-dock {
  display: flex;
  gap: 12px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #fff;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-icon:hover {
  background: var(--gold-accent);
  color: #000;
  border-color: var(--gold-light);
  transform: translateY(-5px) scale(1.1);
}

.social-icon svg {
  width: 18px;
  height: 18px;
}

/* Headings */
.premium-footer-heading {
  font-family: "TrajanPro-Bold";
  font-size: 18px;
  letter-spacing: 1px;
  margin-bottom: 25px;
  color: #fff;
}

/* Links with Underline FX */
.premium-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.premium-footer-links li {
  margin-bottom: 15px;
}

.premium-footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.link-hover-fx {
  position: relative;
}

.link-hover-fx::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -3px;
  left: 0;
  background-color: var(--gold-light);
  transition: width 0.3s ease;
}

.premium-footer-links a:hover {
  color: #fff;
}

.premium-footer-links a:hover .link-hover-fx::after {
  width: 100%;
}

/* Contact List */
.premium-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.premium-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  color: var(--gold-light);
  flex-shrink: 0;
}

.text-wrap {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.8;
  padding-top: 0px;
}

/* Bottom Bar */
.premium-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.premium-bottom-bar p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}

.card-content-body .service-title {
  padding: 0 2%;
}

.bottom-links {
  display: flex;
  gap: 20px;
}

.bottom-links a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.3s ease;
}

.bottom-links a:hover {
  color: #fff;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }

  50% {
    transform: scale(1.2);
    opacity: 1;
  }

  100% {
    transform: scale(1);
    opacity: 0.7;
  }
}

/* --- Who We Are Section --- */
.who-we-are-section {
  margin: 100px 0 50px;
  /* background-color: var(--bg-offwhite); */
  position: relative;
  overflow: hidden;
  z-index: 3;
}

.who-we-are-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* Left Content */
.who-we-are-content {
  flex: 0 0 45%;
}

.section-subtitle {
  color: var(--gold-accent);
  font-family: 'Inter';
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.section-title {
  font-size: 52px;
  line-height: 1.15;
  color: var(--primary-teal);
  margin-bottom: 25px;
  font-weight: 600;
}

.section-description {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 35px;
}

.section-description p {
  margin-bottom: 15px;
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-accent);
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  border-bottom: 2px solid rgba(200, 155, 63, 0.3);
  padding-bottom: 5px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-link svg {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-link:hover {
  color: var(--primary-teal);
  border-bottom-color: var(--primary-teal);
  text-decoration: none;
}

.btn-link:hover svg {
  transform: translateX(8px);
}

/* Right Content Graphic */
.who-we-are-graphic {
  flex: 0 0 50%;
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-height: 550px;
}


.globe-graphic {
  position: absolute;
  top: 52%;
  left: 0%;
  transform: translateY(-50%);
  max-width: none;
  opacity: 0.9;
  z-index: 1;
  width: 96%;
  margin: auto;
}

.stats-card.glass-dark {
  background: var(--primary-teal);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 40px;
  z-index: 2;
  position: relative;
  width: 320px;
  box-shadow: 0 20px 40px rgba(0, 43, 48, 0.2);
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.stat-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid var(--gold-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-icon svg {
  stroke: var(--gold-accent);
}

.stat-text {
  display: flex;
  flex-direction: column;
}

.stat-title {
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
}

.stat-highlight {
  color: var(--gold-accent);
  font-weight: 700;
  font-size: 18px;
}

.stat-subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin-top: 2px;
}

/* Responsive */
@media (max-width: 1024px) {
  .premium-footer-cta {
    flex-direction: column;
    text-align: center;
  }

  .premium-cta-right {
    max-width: 100%;
  }

  .cta-sparkle {
    left: auto;
    right: -20px;
  }

  .premium-footer-columns {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .footer-glass-card {
    padding: 30px;
  }

  .premium-cta-title {
    font-size: 50px;
  }

  .premium-footer-columns {
    grid-template-columns: 1fr;
  }

  .premium-bottom-bar {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

/* ========================================= */
/* PREMIUM SERVICES SECTION (3D Glassmorphism) */
/* ========================================= */
.premium-services-section {
  position: relative;
  overflow: visible;
  /* FIXED: hidden breaks position: sticky! */
}

/* Subtle background glow/watermark */
.services-bg-glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: radial-gradient(circle at 80% 20%, rgba(0, 0, 0, 0.02) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.services-header {
  text-align: center;
}

.services-subtitle {
  font-size: 14px;
  font-weight: 600;
  color: #ad8322;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.services-title {
  font-size: 56px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
}

.gold-text {
  background: linear-gradient(135deg, #c39c3e 0%, #d4af37 25%, #e7c675 50%, #c4993a 75%, #dcb554 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.services-description {
  max-width: 600px;
  margin: 0 auto;
  font-size: 18px;
  color: #666;
  line-height: 1.6;
}

.services-grid-3d {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: -40px;
}

/* Base Card */
.service-card-3d {
  position: relative;
  padding-top: 80px;
  flex: 0 0 calc(33.333% - 20px);
  max-width: calc(33.333% - 20px);
}

/* White glassmorphism base card */
.card-content-body {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 80px 30px 40px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03), inset 0 0 0 1px rgba(255, 255, 255, 1);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 100%;
}

.service-card-3d:hover .card-content-body {
  transform: translateY(-5px);
}

.service-title {
  font-size: 18px;
  font-weight: 600;
  color: #b58529;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
  line-height: 28px;
}

.service-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* 3D Platform Wrapper */
.card-graphic-wrapper {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 140px;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
}

/* Stage Image */
.stage-image {
  position: absolute;
  bottom: 5px;
  width: 140px;
  height: auto;
  z-index: -1;
  transition: transform 0.5s ease;
}

/* Floating SVG Icon Container */
.glass-coin {
  position: absolute;
  top: 40px;
  /* Adjusted to sit right on top of the stage */
  width: 75px;
  height: 75px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #c9a44b;
  /* Premium gold */
  animation: float-svg 3s ease-in-out infinite;
  z-index: 3;
}

.glass-coin svg {
  width: 72px;
  height: 72px;
  filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.3));
  transition: transform 0.3s ease;
}

.glass-coin svg path,
.glass-coin svg rect,
.glass-coin svg circle,
.glass-coin svg polyline,
.glass-coin svg line {
  stroke: url(#premium-gold-grad) !important;
  /* stroke-dasharray: 150;
  stroke-dashoffset: 150;
  animation: premium-line-illusion 8s cubic-bezier(0.4, 0, 0.2, 1) infinite; */
  stroke-width: 1px;
}

.glass-coin svg [fill="currentColor"] {
  fill: url(#premium-gold-grad) !important;
}

@keyframes premium-line-illusion {
  0% {
    stroke-dashoffset: 150;
  }

  50% {
    stroke-dashoffset: 0;
  }

  100% {
    stroke-dashoffset: -150;
  }
}

@keyframes float-svg {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-8px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* Hover Animations */
.service-card-3d:hover .glass-coin svg {
  transform: scale(1.15) translateY(-5px);
}

/* Responsive */
@media (max-width: 992px) {
  .service-card-3d {
    flex: 0 0 calc(50% - 15px);
    max-width: calc(50% - 15px);
  }
}

@media (max-width: 768px) {

  .services-title {
    font-size: 40px;
  }
}

/* ==========================================================================
   Our Journal / Latest Insights Section (Fade Overlay Cards)
   ========================================================================== */
.journal-section {
  position: relative;
  padding: 100px 0 20px;
}

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

/* Header Styles */
.services-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-subtitle {
  color: #c9a44b;
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 15px;
}

.services-title {
  font-size: 48px;
  font-weight: 500;
  color: #2c2f33;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.services-description {
  color: #666;
  font-size: 16px;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Grid Layout */
.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 80px;
  align-items: start;
}

.journal-grid>a:nth-child(2) {
  transform: translateY(-30px);
}

/* Card Styles */
.testimonial-blog-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 12px;
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.journal-grid>a.testimonial-blog-card:nth-child(2):hover {
  transform: translateY(-35px);
}

.card-image-wrapper {
  position: relative;
  height: 250px;
}

.card-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.image-fade-overlay {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 70%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 95%);
  pointer-events: none;
}

.card-category-pill {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(15, 15, 15, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: 6px;
  color: #dcb554;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid rgba(220, 181, 84, 0.4);
  z-index: 3;
}

.card-content {
  padding: 0 30px 40px;
  position: relative;
  z-index: 2;
  margin-top: -30px;
}

.quote-mark {
  font-family: Georgia, serif;
  font-size: 60px;
  color: #111;
  line-height: 1;
  margin-bottom: -10px;
  font-weight: bold;
}

.card-category {
  color: #c9a44b;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

.card-title {
  color: #111;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.4;
  font-family: 'Inter', sans-serif;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card-excerpt {
  color: #555;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Responsive */
@media (max-width: 992px) {
  .journal-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .journal-grid>a:nth-child(2) {
    transform: none;
  }

  .journal-grid>a.testimonial-blog-card:nth-child(2):hover {
    transform: translateY(-5px);
  }
}

@media (max-width: 768px) {
  .journal-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .photo-banner-hero {
    height: 400px;
  }
}

/* ==========================================================================
   Bottom Floating Navigation (Premium Design)
   ========================================================================== */
.bottom-floating-header {
  position: fixed;
  bottom: 30px;
  left: 0;
  width: 100%;
  z-index: 9999;
  pointer-events: none;
  /* Allows clicking through the empty space between capsules */
}

.header-container-floating {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Base Capsule Styles */
.floating-capsule {
  background: #fff;
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 50px;
  display: flex;
  align-items: center;
  box-shadow: 0 0px 20px #00000021;
  pointer-events: auto;
  /* Re-enable clicks on the capsules themselves */
  padding: 8px 12px;
}

/* Left Capsule (Logo) */
.left-capsule {
  padding: 10px 20px;
}

.floating-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.floating-logo img {
  height: 36px;
  /* Adjust as needed for the logo */
  width: auto;
  display: block;
}

/* Right Capsule (Menu & Contact) */
.right-capsule {
  gap: 15px;
  padding: 8px 8px 8px 30px;
}

.floating-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 25px;
  align-items: center;
}

.floating-menu ul li {
  margin: 0;
  padding: 0;
}

.floating-menu ul li a {
  color: #111;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: color 0.3s ease;
  font-family: 'Inter', sans-serif;
}

.floating-menu ul li a:hover,
.floating-menu ul li.current-menu-item a {
  color: #c9a44b;
  /* Theme Gold */
}

.floating-contact-btn {
  background: linear-gradient(135deg, #c39c3e 0%, #d4af37 25%, #e7c675 50%, #c4993a 75%, #dcb554 100%);
  color: #111;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 26px;
  border-radius: 40px;
  text-decoration: none;
  transition: transform 0.3s ease, background-color 0.3s ease;
  margin-left: 15px;
  text-transform: uppercase;
}

.floating-contact-btn:hover {
  transform: translateY(-2px);
  background-color: #b1eb62;
}

/* ==========================================================================
   Hexagon Hive Section (Premium Glass)
   ========================================================================== */
.hexagon-hive-section {
  position: relative;
  background: var(--bg-offwhite);
  padding: 100px 0 120px;
  overflow: hidden;
}

.hexagon-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 0 20px;
}

.hexagon-header {
  margin-bottom: 80px;
}

.hexagon-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  padding-bottom: 50px;
}

.hex-item {
  width: 250px;
  height: 288px;
  /* height = width * 1.1547 for perfect hexagon */
  position: relative;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Creating the interlocking effect by moving alternating items down */
.hex-offset-down {
  transform: translateY(144px);
}

.hex-item:hover {
  transform: translateY(-15px) scale(1.05);
  z-index: 10;
}

.hex-offset-down:hover {
  transform: translateY(129px) scale(1.05);
  /* 144 - 15 */
}

.hex-glass {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px;
  text-align: center;
  border: 1px solid rgba(201, 164, 75, 0.3);
  /* Base border color */
}

/* Using pseudo-elements to create a continuous glowing gold border illusion */
.hex-item::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, #c9a44b, transparent, #e7c675);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  z-index: -1;
  opacity: 0.5;
  transition: opacity 0.4s ease;
}

.hex-item:hover::before {
  opacity: 1;
  background: linear-gradient(135deg, #c9a44b, #e7c675, #c9a44b);
}

.hex-item::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150%;
  height: 150%;
  background: radial-gradient(circle, rgba(201, 164, 75, 0.2) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -2;
  pointer-events: none;
}

.hex-item:hover::after {
  opacity: 1;
}

.hex-icon {
  margin-bottom: 20px;
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.1));
}

.hex-title {
  font-family: 'TrajanPro-Bold', serif;
  color: #c39c3e;
  font-size: 15px;
  letter-spacing: 1px;
  margin-bottom: 12px;
  text-transform: uppercase;
  background: linear-gradient(135deg, #c39c3e 0%, #d4af37 25%, #e7c675 50%, #c4993a 75%, #dcb554 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hex-desc {
  font-size: 13px;
  color: #444;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Handling */
@media (max-width: 1200px) {
  .hexagon-grid {
    gap: 15px;
  }
}

@media (max-width: 992px) {
  .hexagon-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding-bottom: 0;
  }

  .hex-item {
    margin: 0 auto;
    width: 280px;
    height: 323px;
  }

  .hex-offset-down {
    transform: none;
    /* Remove interlocking offset for simpler grid */
  }

  .hex-offset-down:hover {
    transform: translateY(-15px) scale(1.05);
  }

  .hex-desc {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .hexagon-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Exact Why Choose Us Section Styles */
.exact-why-choose-us {
  padding: 0 0;
  color: #35332c;
}

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

.exact-header {
  margin-bottom: 60px;
}

.exact-subtitle-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}

.exact-line {
  width: 60px;
  height: 1px;
  background-color: #b68d40;
}

.exact-diamond {
  width: 6px;
  height: 6px;
  background-color: #b68d40;
  transform: rotate(45deg);
}

.exact-subtitle {
  color: #b68d40;
  font-size: 14px;
  letter-spacing: 4px;
  margin: 0;
  font-weight: 600;
}

.exact-title {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 48px;
  line-height: 1.2;
  margin: 0 0 20px 0;
  color: #35332c;
  font-weight: 500;
}

.exact-gold-text {
  background: linear-gradient(90deg, #c59f4f 0%, #ead48c 25%, #b48831 50%, #ddc071 75%, #9a7122 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 56px;
}

.exact-bottom-subtitle {
  margin: 30px 0;
}

.exact-description {
  font-size: 16px;
  color: #4a4843;
  line-height: 1.6;
}

/* Content Grid */
.exact-content-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

.exact-left-column,
.exact-right-column {
  display: flex;
  flex-direction: column;
  gap: 120px;
  width: 300px;
  z-index: 2;
}

.exact-center-logo {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

.golden-eagle-img {
  max-width: 450px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

.golden-eagle-placeholder {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  box-shadow: 0 0 50px rgba(184, 147, 69, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.golden-eagle-placeholder svg {
  width: 100%;
  height: 100%;
}

/* Feature Items */
.exact-feature-item {
  display: flex;
  flex-direction: column;
  position: relative;
}

.exact-feature-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.exact-right-header {
  justify-content: flex-end;
}

.exact-number-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid #b68d40;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-family: "Playfair Display", serif;
  font-weight: 600;
  color: #b68d40;
  background: #fdfbf7;
  box-shadow: inset 0 0 10px rgba(184, 147, 69, 0.1);
}

.exact-icon-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #b68d40;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  position: relative;
  z-index: 2;
}

.exact-connector-line {
  position: absolute;
  width: 150px;
  height: 60px;
  z-index: 0;
  pointer-events: none;
}

.exact-line-left-top {
  left: 80px;
  top: 25px;
}

.exact-line-left-bottom {
  left: 80px;
  bottom: 40px;
}

.exact-line-right-top {
  right: 80px;
  top: 25px;
}

.exact-line-right-bottom {
  right: 80px;
  bottom: 40px;
}

.exact-feature-content {
  padding: 0 10px;
}

.exact-text-right {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.exact-feature-title {
  color: #b68d40;
  font-weight: 700;
  letter-spacing: 1px;
  margin: 0 0 10px 0;
}

.exact-feature-desc {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 992px) {
  .exact-content-area {
    flex-direction: column;
    gap: 50px;
  }

  .exact-left-column,
  .exact-right-column {
    width: 100%;
    align-items: center;
    gap: 50px;
  }

  .exact-feature-item {
    align-items: center;
    text-align: center;
  }

  .exact-right-header {
    justify-content: center;
  }

  .exact-text-right {
    text-align: center;
  }

  .exact-connector-line {
    display: none;
  }
}

/* Premium Overrides for Exact Why Choose Us Section */
.exact-why-choose-us::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at center, rgba(184, 147, 69, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.exact-gold-text {
  background: linear-gradient(to right, #b89345, #ead48c, #c1963b, #ead48c, #b89345);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shineGold 6s linear infinite;
}

@keyframes shineGold {
  to {
    background-position: 200% center;
  }
}

/* Beautiful Eagle Image Integration */
.exact-center-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.golden-eagle-container {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  /* animation: floatEagle 6s ease-in-out infinite; */
  margin-top: -20px;
}

.golden-eagle-container::after {
  /* content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, 0.4) 40%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0.4) 60%, transparent 80%);
  background-size: 200% 100%;
  animation: eagleShineSweep 10s infinite linear;
  pointer-events: none;
  z-index: 5;
  mix-blend-mode: overlay;

  -webkit-mask-image: url('./assets/images/why-choose.png');
  -webkit-mask-size: contain;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat; */
}

@keyframes eagleShineSweep {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

.golden-eagle-img {
  mix-blend-mode: multiply;
  max-width: 550px;
  width: 100%;
  transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  filter: grayscale(1);
  opacity: 0.6;
}


@keyframes floatEagle {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-12px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* Clean up connecting lines - replace with elegant straight fading gradients */
.exact-connector-line svg {
  display: none !important;
}

.exact-connector-line {
  height: 1px;
  width: 100px;
  top: 50% !important;
  transform: translateY(-50%) !important;
  bottom: auto !important;
  opacity: 0.6;
}

.exact-line-left-top,
.exact-line-left-bottom {
  background: linear-gradient(90deg, #b68d40, transparent);
  left: 100px !important;
}

.exact-line-right-top,
.exact-line-right-bottom {
  background: linear-gradient(270deg, #b68d40, transparent);
  right: 100px !important;
}

/* Feature Item Enhancements */
.exact-feature-item {
  transition: all 0.4s ease;
}

.exact-feature-item:hover {
  transform: translateY(-8px);
}

.exact-number-circle {
  box-shadow: 0 10px 25px rgba(184, 147, 69, 0.15), inset 0 0 0 2px rgba(184, 147, 69, 0.2);
  border: none;
  background: #fff;
  transition: all 0.4s ease;
}

.exact-feature-item:hover .exact-number-circle {
  background: #b89345;
  color: #fff;
  box-shadow: 0 15px 35px rgba(184, 147, 69, 0.3);
}

.exact-icon-circle {
  border: 1px solid rgba(184, 147, 69, 0.4);
  background: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.exact-feature-item:hover .exact-icon-circle {
  transform: rotate(360deg) scale(1.1);
  border-color: #b89345;
  background: #fdfbf7;
}

.exact-feature-title {
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: color 0.3s ease;
}

.exact-feature-item:hover .exact-feature-title {
  color: #9a7122;
}

.exact-feature-desc {
  font-size: 15px;
  color: #5a5853;
  max-width: 230px;
}

/* Bottom 5th Item Styles */
.exact-bottom-row {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  position: relative;
  z-index: 2;
}

.exact-bottom-feature {
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.4s ease;
  padding: 15px 30px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0 10px 25px rgba(184, 147, 69, 0.08);
  border: 1px solid rgba(184, 147, 69, 0.2);
}

.exact-bottom-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(184, 147, 69, 0.15);
}

.exact-bottom-icon {
  display: flex;
  align-items: center;
}

.exact-bottom-icon svg {
  transition: transform 0.6s ease;
}

.exact-bottom-feature:hover .exact-bottom-icon svg {
  transform: rotate(180deg);
}

.exact-bottom-text {
  text-align: left;
}

.exact-bottom-title {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 500;
  background: linear-gradient(to right, #b89345, #ead48c, #c1963b, #ead48c, #b89345);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shineGold 6s linear infinite;
  letter-spacing: 0.5px;
}

.exact-bottom-desc {
  margin: 3px 0 0 0;
  color: #5a5853;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Fix SVG icon colors to gold gradient */
.exact-icon-circle svg,
.exact-icon-circle svg path,
.exact-icon-circle svg circle,
.exact-icon-circle svg polygon,
.exact-icon-circle svg polyline,
.exact-icon-circle svg line {
  stroke: url(#gold-gradient) !important;
  color: #b89345;
}

/* Hero Banner Responsive Video */
.mobile-video {
  display: none;
}

@media (max-width: 768px) {
  .desktop-video {
    display: none;
  }

  .mobile-video {
    display: block;
  }
}

/* ============================================================
   WHO WE ARE PAGE STYLES
   ============================================================ */
/* Common Elements */
.wwa-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.wwa-subtitle {
  color: #b68d40;
  font-size: 14px;
  letter-spacing: 4px;
  margin: 0 0 15px 0;
  font-weight: 700;
  text-transform: uppercase;
  font-family: 'Inter';
}

.wwa-subtitle.center {
  text-align: center;
}

.wwa-section-title {
  font-size: 42px;
  margin: 0 0 20px 0;
}


/* 1. Hero Section */
.wwa-hero {
  padding: 120px 0 140px;
  position: relative;
  background: url('./assets/images/who-we-are-banner.png') no-repeat center center;
  background-size: cover;
  min-height: 100vh;
  height: 100%;
}

.wwa-hero::after {
  content: '';
  position: absolute;
  bottom: -91px;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(to bottom, rgb(234 234 234 / 9%) 0%, #eaeaea 50%, rgb(255 255 255) 100%);
  z-index: 1;
  pointer-events: none;
}

.photo-banner-hero::after {
  content: '';
  position: absolute;
  bottom: -91px;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(to bottom, rgb(234 234 234 / 9%) 0%, #eaeaea 50%, rgb(255 255 255) 100%);
  z-index: 1;
  pointer-events: none;
}

.wwa-hero-grid {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.wwa-hero-content {
  max-width: 800px;
}

.wwa-title {
  font-size: 64px;
  line-height: 1.1;
  color: #1a1a1a;
  margin-bottom: 25px;
}

.contact-action-link {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-action-link:hover {
  color: var(--white);
}

.wwa-gold-text {
  background: linear-gradient(to right, #b89345, #ead48c, #c1963b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.wwa-hero-desc {
  font-size: 20px;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.wwa-hero-text {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  margin: 0 auto 40px auto;
  max-width: 500px;
}

.wwa-hero-actions {
  display: flex;
  gap: 20px;
  margin-bottom: 50px;
}

.wwa-btn {
  padding: 15px 30px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.wwa-btn-dark {
  background: #111;
  color: #fff;
  border: 1px solid #111;
}

.wwa-btn-dark:hover {
  background: #b89345;
  border-color: #b89345;
}

.wwa-btn-transparent {
  background: transparent;
  color: #111;
  border: 1px solid transparent;
}

.wwa-btn-transparent:hover {
  color: #b89345;
}

.wwa-arrow {
  color: #b89345;
  font-size: 16px;
}

.wwa-btn-dark:hover .wwa-arrow {
  color: #fff;
}

.wwa-pill {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: #fff;
  padding: 10px 25px 10px 10px;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.wwa-pill-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fdfbf7;
  border: 1px solid #ead48c;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b89345;
  font-weight: 700;
  font-size: 18px;
}

.wwa-pill-text {
  font-size: 12px;
  font-weight: 700;
  color: #333;
  line-height: 1.3;
}

.wwa-hero-graphic {
  flex: 1.2;
  position: relative;
  z-index: 1;
}

.wwa-hero-graphic img {
  width: 100%;
  height: auto;
  max-width: 650px;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.08));
  animation: wwaFloat 6s ease-in-out infinite;
}

@keyframes wwaFloat {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0);
  }
}

/* 2. Services Section */
.wwa-services {
  padding: 100px 0;
  background: #fff;
  position: relative;
}

.wwa-services::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(to top, rgba(184, 147, 69, 0.03), transparent);
}

.wwa-services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 900px;
  margin: 50px auto 0 auto;
}

.wwa-service-card {
  background: #fff;
  border-radius: 15px;
  padding: 25px 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  width: calc(50% - 15px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(184, 147, 69, 0.1);
}

.wwa-service-card.offset {
  transform: translateX(30px);
}

.wwa-service-card:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 15px 50px rgba(184, 147, 69, 0.1);
}

.wwa-service-card h4 {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: #111;
  line-height: 1.4;
}

.wwa-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid rgba(184, 147, 69, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #faf9f6;
  color: #b89345;
  transition: all 0.4s ease;
}

.wwa-service-card:hover .wwa-icon-wrapper {
  background: #b89345;
  color: #fff;
}

/* 3. Core Ethos */
.wwa-ethos {
  padding: 50px 0 100px;
  position: relative;
  z-index: 2;
}

.wwa-ethos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 60px;
}

@media(max-width: 991px) {
  .wwa-ethos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media(max-width: 768px) {
  .wwa-ethos-grid {
    gap: 20px;
  }
}

.wwa-ethos-item {
  text-align: center;
  padding: 40px 20px 30px;
  background: linear-gradient(145deg, #ffffff 0%, rgba(255, 255, 255, 0.7) 100%);
  border: 1px solid rgba(184, 147, 69, 0.25);
  border-radius: 20px;
  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.02),
    inset 0 0 0 1px rgba(255, 255, 255, 1);
  backdrop-filter: blur(10px);
  position: relative;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.wwa-ethos-item:hover {
  transform: translateY(-8px);
  box-shadow:
    0 25px 45px rgba(184, 147, 69, 0.1),
    inset 0 0 0 2px rgba(255, 255, 255, 1);
  border-color: rgba(184, 147, 69, 0.5);
}

.wwa-ethos-icon {
  width: 70px;
  height: 70px;
  background: #fdfbf7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  box-shadow:
    inset 2px 2px 5px rgba(255, 255, 255, 1),
    inset -3px -3px 7px rgba(0, 0, 0, 0.03),
    4px 4px 12px rgba(0, 0, 0, 0.06);
  /* Neumorphic embossed look */
  color: #b89345;
}

.wwa-ethos-icon svg {
  stroke: #b89345 !important;
  height: 28px;
  width: 28px;
}

.wwa-ethos-item h4 {
  font-family: 'TrajanPro-Bold', serif;
  font-size: 19px;
  color: #012b30;
  letter-spacing: 1px;
  margin-bottom: 15px;
  font-weight: 700;
  text-transform: uppercase;
}

.wwa-ethos-item p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 25px;
  flex-grow: 1;
}

.wwa-ethos-link {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #b89345;
  text-decoration: none;
  transition: all 0.3s ease;
}

.wwa-ethos-link:hover {
  color: #012b30;
  letter-spacing: 0.5px;
}

/* 4. Commitment */
.wwa-commitment {
  padding: 120px 0;
  background: #fdfbf7;
  position: relative;
  overflow: hidden;
}

.wwa-commitment::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(184, 147, 69, 0.08) 0%, transparent 70%);
  z-index: 0;
}

.wwa-commitment-header {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.wwa-commitment-desc {
  font-size: 22px;
  color: #444;
  margin-bottom: 0px;
  line-height: 1.6;
}

.wwa-cursive-text {
  font-size: 28px;
  color: #b89345;
  margin: 0;
  font-weight: 600;
  letter-spacing: 1px;
}

.blog-list-section-light .journal-grid>a:nth-child(2) {
  transform: none;
}

.blog-list-section-light .journal-grid>a.testimonial-blog-card:nth-child(2):hover {
  transform: translateY(-5px);
}

/* 5. Team */
.wwa-team {
  padding: 100px 0 20px;
}

.wwa-team-subtitle {
  font-size: 15px;
  color: #555;
  max-width: 450px;
  margin: 0 auto;
}

.wwa-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 60px;
}

/* --- Premium Overlay Team Card Design --- */
.wwa-team-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  background: #012b30;
  cursor: pointer;
  transform: translateZ(0);
  /* Force hardware acceleration */
}

.wwa-team-card img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
}

.wwa-team-card:hover img {
  transform: scale(1.08);
}

.wwa-team-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 50px 20px 25px;
  background: linear-gradient(to top, rgba(1, 43, 48, 0.95) 0%, rgba(1, 43, 48, 0.5) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  z-index: 2;
}

.wwa-team-name {
  font-size: 22px;
  color: #fff;
  margin: 0 0 5px 0;
  font-family: 'TrajanPro-Bold', serif;
}

.wwa-team-role {
  font-size: 13px;
  color: #b89345;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

@media (max-width: 992px) {
  .wwa-hero {
    padding: 150px 0 0px;
  }

  .wwa-hero {
    display: flex;
    align-items: center;
  }

  .wwa-ethos {
    padding: 60px 0;
  }

  .wwa-team {
    padding: 60px 0 20px;
  }

  .wwa-hero-grid,
  .wwa-commitment-grid {
    flex-direction: column;
    text-align: center;
  }

  .wwa-hero-actions {
    justify-content: center;
  }

  .wwa-services-grid {
    flex-direction: column;
  }

  .wwa-service-card {
    width: 100%;
  }

  .wwa-service-card.offset {
    transform: none;
  }

  .wwa-ethos-grid {
    flex-direction: column;
  }

  .wwa-ethos-item {
    border-right: none;
    border-bottom: 1px solid rgba(184, 147, 69, 0.2);
    padding-bottom: 40px;
  }

  .wwa-team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Make reveal accordion permanently open on touch devices */
  .wwa-reveal-content p {
    max-height: 500px;
    opacity: 1;
    transform: none;
    margin-top: 15px;
  }
}

/* Our Commitment Reveal Rows Styles */
.wwa-reveal-list {
  max-width: 900px;
  margin: 60px auto 0;
  position: relative;
  z-index: 1;
}

.wwa-reveal-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 30px;
  border-bottom: 1px solid rgba(184, 147, 69, 0.2);
  position: relative;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.4s ease;
}

.wwa-reveal-row:first-child {
  border-top: 1px solid rgba(184, 147, 69, 0.2);
}

.wwa-reveal-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(184, 147, 69, 0.08) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 0;
}

.wwa-reveal-num {
  font-family: 'TrajanPro-Bold', serif;
  font-size: 30px;
  color: rgba(184, 147, 69, 0.3);
  position: relative;
  z-index: 1;
  transition: color 0.4s ease;
  width: 60px;
}

.wwa-reveal-row .wwa-reveal-num {
  color: #b89345;
}

.wwa-reveal-content {
  flex: 1;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

.wwa-reveal-content h4 {
  font-family: 'TrajanPro-Bold', serif;
  font-size: 26px;
  color: #012b30;
  margin: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.4s ease;
}

.wwa-reveal-row:hover .wwa-reveal-content h4 {
  color: #b89345;
}

.wwa-reveal-content p {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin: 0;
  max-height: 0;
  opacity: 0;
  transform: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.wwa-reveal-row .wwa-reveal-content p {
  max-height: 500px;
  opacity: 1;
  transform: none;
  margin-top: 15px;
}

.wwa-reveal-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(184, 147, 69, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b89345;
  position: relative;
  z-index: 1;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.wwa-reveal-row:hover .wwa-reveal-icon {
  background: rgba(184, 147, 69, 0.1);
  border-color: #b89345;
  transform: scale(1.1) rotate(5deg);
}

@media (max-width: 768px) {
  .wwa-hero {
    padding: 150px 0 0px;
  }

  .wwa-title {
    font-size: 42px;
  }

  .wwa-section-title {
    font-size: 32px;
  }

  .wwa-hero-desc {
    font-size: 18px;
  }

  .wwa-team-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 40px auto 0;
  }

  .wwa-reveal-row {
    flex-direction: column-reverse;
    text-align: center;
    padding: 30px 20px;
    gap: 20px;
  }

  .wwa-reveal-num {
    display: none;
  }

  .wwa-reveal-num {
    width: auto;
  }

  .wwa-reveal-content {
    padding: 0;
  }

  .wwa-reveal-row:hover .wwa-reveal-content h4,
  .wwa-reveal-row:hover .wwa-reveal-content p {
    transform: none;
  }
}

@media (max-width: 500px) {
  .wwa-hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .wwa-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   BLOG LIST PAGE (Light & Gold Theme)
   ========================================================================== */

.blog-pagination-light a,
.blog-pagination-light span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 15px;
  border-radius: 6px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

.blog-pagination-light a:hover {
  background: #f5f5f5;
  border-color: rgba(0, 0, 0, 0.2);
}

.blog-pagination-light span.current {
  background: var(--gold-accent, #b89345);
  border-color: var(--gold-accent, #b89345);
  color: #fff;
  box-shadow: 0 5px 15px rgba(184, 147, 69, 0.3);
}

/* New Photo Banner Layout */
.photo-banner-hero {
  padding: 120px 20px 100px;
  background-color: #fafafa;
  background-image: url('assets/images/blog-hero-bg.png');
  background-size: cover;
  background-position: right center;
  position: relative;
}

.photo-banner-layout {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  max-width: 1200px;
  margin: 0 auto;
}

.photo-banner-content {
  max-width: 550px;
  text-align: left;
}

.photo-banner-subtitle {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold-accent, #b89345);
  text-transform: uppercase;
  margin-bottom: 5px;
}

.photo-banner-line {
  width: 40px;
  height: 2px;
  background-color: var(--gold-accent, #b89345);
  margin-bottom: 20px;
}

.photo-banner-title {
  margin: 0 0 20px;
  line-height: 1.2;
}

.photo-banner-title .title-dark {
  color: var(--primary-teal, #012b30);
  font-size: clamp(36px, 5vw, 64px);
  display: block;
}

.photo-banner-title .title-gold {
  color: var(--gold-accent, #b89345);
}

.photo-banner-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-light, #666);
  margin: 0;
  max-width: 450px;
}

@media (max-width: 992px) {
  .photo-banner-hero {
    background-position: center right;
  }

  .photo-banner-content {
    padding: 30px;
  }
}

/* ==========================================================================
   SINGLE BLOG POST REDESIGN
   ========================================================================== */

/* Single Post Hero Banner */
.single-post-hero {
  position: relative;
  width: 100%;
  padding: 120px 20px;
  background-color: var(--primary-teal, #012b30);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.single-post-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(1, 43, 48, 0.8), rgba(1, 43, 48, 0.95));
}

.single-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  width: 100%;
}

.single-hero-category {
  display: inline-block;
  color: var(--gold-accent, #b89345);
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 20px;
}

.single-hero-title {
  color: #ffffff;
  font-size: clamp(24px, 4vw, 42px);
  line-height: 1.25;
  margin: 0 0 25px 0;
}

.single-hero-date {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.single-post-page-wrapper {
  padding: 60px 20px 0px;
  font-family: 'Inter', sans-serif;
}

.single-post-container {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 60px;
}

@media (max-width: 1024px) {
  .single-post-container {
    grid-template-columns: 1fr;
  }
}

/* Main Content Left */
.single-main-content {
  background: transparent;
}

.post-category-pill {
  color: #c9a44b;
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 15px;
}

.post-main-title {
  font-size: clamp(24px, 3vw, 42px);
  line-height: 1.15;
  margin: 0 0 25px 0;
}

.post-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
  padding-bottom: 0;
  border-bottom: none;
  flex-wrap: wrap;
  gap: 20px;
}

.meta-left {
  display: flex;
  align-items: center;
  font-size: 13px;
  color: #777;
  flex-wrap: wrap;
  gap: 10px;
}

.meta-author-logo img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
}

.meta-author-name {
  color: #333;
  font-weight: 600;
}

.meta-dot {
  color: #ccc;
}

.meta-right {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: #777;
}

.share-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #fdfdfd;
  color: #888;
  border-radius: 50%;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

.share-icon:hover {
  background: var(--gold-accent, #b89345);
  color: #fff;
}

.post-featured-image {
  margin-bottom: 40px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.post-featured-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Post Content Body Typography */
.post-content-body {
  font-size: 17px;
  line-height: 1.8;
  color: #444;
}

.post-content-body p {
  margin-bottom: 20px;
  font-size: 17px;
  color: #444;
}

.post-content-body a {
  color: var(--gold-accent, #b89345);
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
}

.post-content-body a:hover {
  text-decoration: underline;
}

.post-content-body h2,
.post-content-body h3 {
  color: var(--primary-teal, #012b30);
  margin-top: 35px;
  margin-bottom: 20px;
  font-size: 28px;
}

.post-content-body h4,
.post-content-body h5 {
  margin-bottom: 20px;
  font-size: 22px;
}

/* Custom Editor Blocks Styling */
/* Blockquote with gold icon */
.post-quote {
  background: #fdfaf4;
  border-radius: 12px;
  padding: 30px 40px;
  margin: 40px 0;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.post-quote::before {
  content: '\201C';
  /* Unicode quote-left */
  font-size: 60px;
  color: var(--gold-accent, #b89345);
  line-height: 1;
  font-family: Georgia, serif;
}

.post-quote p {
  margin: 0 0 10px 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-teal, #012b30);
}

.post-quote p.subtext {
  font-size: 15px;
  font-weight: 400;
  color: #666;
  margin: 0;
}

/* Numbered Headings (e.g. 1 The Problem) */
.post-numbered-heading {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 50px;
  margin-bottom: 20px;
}

.post-numbered-heading .num-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--gold-accent, #b89345);
  color: #fff;
  border-radius: 50%;
  font-size: 16px;
  font-weight: 700;
}

.post-numbered-heading h3 {
  margin: 0;
  font-size: 22px;
}

/* Default Unordered List Styles */
.post-content-body ul:not(.post-icon-list, .post-tags-list, .story-list) {
  margin: 0 0 20px 0;
  padding-left: 20px;
}

.post-content-body ul:not(.post-icon-list, .post-tags-list, .story-list) li {
  margin-bottom: 10px;
  font-size: 17px;
  line-height: 1.8;
  color: #444;
}

.post-content-body ul:not(.post-icon-list, .post-tags-list, .story-list) li::marker {
  color: var(--gold-accent, #b89345);
}

/* Premium Ordered List Styles */
.post-content-body ol {
  list-style: none;
  counter-reset: custom-counter;
  margin: 0 0 30px 0;
  padding-left: 0;
}

.post-content-body ol li {
  counter-increment: custom-counter;
  margin-bottom: 15px;
  font-size: 17px;
  line-height: 1.8;
  color: #444;
  position: relative;
  padding-left: 45px;
}

.post-content-body ol li::before {
  content: counter(custom-counter);
  position: absolute;
  left: 0;
  top: 2px;
  width: 28px;
  height: 28px;
  background: var(--gold-accent, #b89345);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  box-shadow: 0 3px 10px rgba(184, 147, 69, 0.2);
}

/* Icon Box Lists */
.post-icon-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.post-icon-list li {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.post-icon-list li .icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #fdfaf4;
  color: var(--gold-accent, #b89345);
  border-radius: 8px;
  font-size: 18px;
  flex-shrink: 0;
}

.post-icon-list li .list-content h4 {
  margin: 0 0 5px 0;
  font-size: 16px;
  color: #333;
}

.post-icon-list li .list-content p {
  margin: 0;
  font-size: 14px;
  color: #777;
  line-height: 1.5;
}

/* Tags */
.post-tags-container {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid #eaeaea;
}

.tags-label {
  font-weight: 600;
  color: #333;
}

.post-tags-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.post-tags-list li a {
  display: inline-block;
  background: #fff;
  border: 1px solid #ddd;
  color: #666;
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.3s;
}

.post-tags-list li a:hover {
  background: var(--gold-accent, #b89345);
  color: #fff;
  border-color: var(--gold-accent, #b89345);
}

/* Author Bio */
.post-author-bio-box {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 12px;
  padding: 30px;
  margin-top: 40px;
}

.author-bio-avatar img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.author-bio-info h4 {
  margin: 0 0 10px 0;
  font-size: 18px;
  color: #333;
}

.author-bio-info p {
  margin: 0 0 15px 0;
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

.author-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: #f0f0f0;
  color: #555;
  border-radius: 50%;
  text-decoration: none;
  font-size: 12px;
  margin-right: 8px;
  transition: all 0.3s;
}

.author-socials a:hover {
  background: var(--primary-teal, #012b30);
  color: #fff;
}

/* Post Navigation */
.post-navigation-links {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #eaeaea;
}

.post-navigation-links .nav-btn {
  display: inline-block;
  text-decoration: none;
  background: var(--primary-teal, #012b30);
  color: #fff;
  padding: 12px 25px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.post-navigation-links .nav-btn:hover {
  background: var(--gold-accent, #b89345);
  box-shadow: 0 5px 15px rgba(184, 147, 69, 0.2);
  transform: translateY(-2px);
}

.nav-next {
  text-align: right;
  margin-left: auto;
}

.nav-label {
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
}

.nav-label .fa {
  margin: 0 5px;
}

/* Sidebar Styles */
.single-sidebar {
  /* No background here, widgets have backgrounds */
}

.sidebar-widget {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
}

.sidebar-widget .widget-title {
  display: flex;
  align-items: center;
  font-family: 'TrajanPro-Bold', serif;
  font-size: 20px;
  color: var(--primary-teal, #012b30);
  margin: 0 0 25px 0;
}


/* Search Widget */
.custom-search-form {
  position: relative;
}

.custom-search-form input {
  width: 100%;
  padding: 12px 40px 12px 15px;
  border: 1px solid #eaeaea;
  border-radius: 6px;
  font-size: 14px;
  background: #fafafa;
  outline: none;
}

.custom-search-form input:focus {
  border-color: #ddd;
}

.custom-search-form button {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--gold-accent, #b89345);
  cursor: pointer;
  font-size: 14px;
}

/* Categories List */
.custom-category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.custom-category-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
}

.custom-category-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.custom-category-list li a {
  text-decoration: none;
  color: #555;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s;
}

.custom-category-list li:hover a,
.custom-category-list li.active a {
  color: var(--gold-accent, #b89345);
}

.custom-category-list .cat-count {
  font-size: 12px;
  color: #999;
  display: flex;
  align-items: center;
  gap: 10px;
}

.custom-category-list li.active .cat-count {
  color: var(--gold-accent, #b89345);
}

/* Recent Posts */
.custom-recent-posts {
  list-style: none;
  padding: 0;
  margin: 0;
}

.custom-recent-posts li {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.custom-recent-posts li:last-child {
  margin-bottom: 0;
}

.rp-thumb img {
  width: 70px;
  height: 70px;
  border-radius: 8px;
  object-fit: cover;
}

.rp-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.rp-title {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  text-decoration: none;
  line-height: 1.4;
  margin-bottom: 5px;
  transition: color 0.3s;
}

.rp-title:hover {
  color: var(--gold-accent, #b89345);
}

.rp-date {
  font-size: 12px;
  color: #888;
}

.view-all-btn {
  display: inline-block;
  padding: 10px 25px;
  border: 1px solid var(--gold-accent, #b89345);
  color: var(--gold-accent, #b89345);
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}

.view-all-btn:hover {
  background: var(--gold-accent, #b89345);
  color: #fff;
}

/* CTA Card */
.widget-cta-card {
  background: #fff;
  border: 1px solid #eaeaea;
  text-align: left;
}

.widget-cta-card .widget-title {
  margin-bottom: 15px;
}

.cta-card-content h4 {
  font-family: 'TrajanPro-Bold', serif;
  font-size: 22px;
  color: #333;
  margin: 0 0 15px 0;
  line-height: 1.3;
}

.cta-card-content p {
  font-size: 14px;
  color: #666;
  margin: 0 0 20px 0;
  line-height: 1.6;
}

.btn-gold {
  display: inline-block;
  background: var(--gold-accent, #b89345);
  color: #fff;
  padding: 12px 25px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s;
}

.btn-gold:hover {
  background: #a37c35;
  color: #fff;
}

/* ==========================================================================
   BLOG POST CONTENT CUSTOM ELEMENTS (Premium Design)
   ========================================================================== */

/* Table of Contents (.toc) */
.toc {
  background-color: #fdfaf4;
  border-left: 4px solid var(--gold-accent, #b89345);
  padding: 25px 30px;
  border-radius: 0 8px 8px 0;
  margin: 30px 0;
}

.toc h2 {
  font-family: 'TrajanPro-Bold', serif;
  font-size: 20px;
  color: var(--primary-teal, #012b30);
  margin: 0 0 15px 0;
}

.toc div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toc a {
  color: #555;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.3s;
}

.toc a:hover {
  color: var(--gold-accent, #b89345);
}

.toc a::before {
  content: '\2192';
  /* Unicode right arrow */
  margin-right: 10px;
  color: var(--gold-accent, #b89345);
}

/* Story Section */
.story-section {
  margin: 30px 0;
}

.story-card {
  background: #fff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  border: 1px solid #eaeaea;
}

.story-card p {
  margin-bottom: 15px;
  font-size: 17px;
  color: #444;
}

.story-highlight {
  font-family: 'TrajanPro-Bold';
  font-size: 24px;
  line-height: 1.3;
  color: var(--primary-teal, #012b30);
  margin: 40px 0;
  padding-left: 25px;
  border-left: 4px solid var(--gold-accent, #b89345);
}

.story-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.story-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  font-size: 16px;
  color: #555;
}

.story-list li::before {
  content: '\2713';
  /* Unicode check */
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold-accent, #b89345);
  font-weight: bold;
}

.story-quote {
  background: var(--primary-teal, #012b30);
  color: #fff;
  padding: 40px 30px;
  border-radius: 8px;
  margin: 40px 0 50px 0;
  text-align: center;
}

.story-quote h2 {
  color: var(--gold-accent, #b89345);
  font-size: 28px;
  margin: 0 0 15px 0;
}

.story-quote p {
  color: #e0e0e0;
  margin: 0;
  font-size: 16px;
}

/* Compare Wrapper */
.compare-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin: 40px 0;
}

.compare-card {
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

.compare-card .card-header {
  background: #fdfaf4;
  padding: 15px 20px;
  font-family: 'TrajanPro-Bold', serif;
  font-size: 18px;
  color: var(--primary-teal, #012b30);
  border-bottom: 1px solid #eaeaea;
  text-align: center;
}

.compare-card .card-body {
  padding: 25px;
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

.result-box {
  grid-column: 1 / -1;
  background: #fdfaf4;
  border: 1px solid #f0e6d2;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
}

.result-box h2 {
  color: var(--primary-teal, #012b30);
  font-size: 24px;
  margin-bottom: 20px;
}

.result-box p {
  font-size: 16px;
  color: #444;
  margin-bottom: 10px;
}

.result-box .highlight {
  color: var(--gold-accent, #b89345);
  font-weight: 700;
  font-size: 20px;
}

@media (max-width: 768px) {
  .compare-wrapper {
    grid-template-columns: 1fr;
  }
}

/* Modern FAQ */
.modern-faq {
  margin: 40px 0;
}

.modern-faq details {
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s;
}

.modern-faq details[open] {
  border-color: var(--gold-accent, #b89345);
  box-shadow: 0 5px 15px rgba(184, 147, 69, 0.1);
}

.modern-faq summary {
  padding: 20px;
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-teal, #012b30);
  cursor: pointer;
  list-style: none;
  /* Hide default arrow */
  position: relative;
  outline: none;
}

.modern-faq summary::-webkit-details-marker {
  display: none;
  /* Hide default arrow webkit */
}

.modern-faq summary::after {
  content: '\25BC';
  /* Unicode angle-down */
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold-accent, #b89345);
  transition: transform 0.3s;
  font-size: 12px;
}

.modern-faq details[open] summary::after {
  transform: translateY(-50%) rotate(180deg);
}

.modern-faq .faq-answer {
  padding: 0 20px 20px 20px;
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

/* Premium Table Design */
.post-content-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 40px 0;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
  font-size: 15px;
}

.post-content-body thead {
  background: var(--primary-teal, #012b30);
  color: #fff;
}

.post-content-body th {
  padding: 18px 25px;
  text-align: left;
  font-family: 'TrajanPro-Bold', serif;
  font-size: 16px;
  letter-spacing: 0.5px;
  font-weight: normal;
  background: #c9a44b;
}

.post-content-body td {
  padding: 18px 25px;
  border-bottom: 1px solid #eaeaea;
  color: #555;
  line-height: 1.6;
}

.post-content-body tbody tr:last-child td {
  border-bottom: none;
}

.post-content-body tbody tr {
  transition: background 0.3s ease;
}

.post-content-body tbody tr:hover {
  background: #fdfaf4;
}

/* AI Audio Reader */
.ai-audio-reader {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: linear-gradient(145deg, #ffffff, #f9f9f9);
  padding: 8px 25px 8px 8px;
  border-radius: 50px;
  border: 1px solid rgba(184, 147, 69, 0.2);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04), inset 0 1px 0 #fff;
  width: fit-content;
  transition: all 0.3s ease;
}

.ai-audio-reader:hover {
  box-shadow: 0 15px 35px rgba(184, 147, 69, 0.1), inset 0 1px 0 #fff;
  transform: translateY(-2px);
}

.ai-play-btn {
  background: none;
  border: none;
  color: #333;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0;
  letter-spacing: 0.5px;
}

.ai-play-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--primary-teal, #012b30);
  color: #fff;
  border-radius: 50%;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(1, 43, 48, 0.2);
}

.ai-play-btn:hover .ai-play-icon-wrapper {
  background: var(--gold-accent, #b89345);
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(184, 147, 69, 0.3);
}

.ai-play-icon-wrapper i {
  margin-left: 2px;
}

.ai-play-icon-wrapper i.fa-pause,
.ai-play-icon-wrapper i.fa-stop {
  margin-left: 0;
}

.ai-reader-animation {
  display: none;
  align-items: flex-end;
  gap: 3px;
  height: 15px;
}

.ai-reader-animation span {
  display: block;
  width: 3px;
  background: var(--gold-accent, #b89345);
  animation: audio-bounce 1.2s infinite ease-in-out;
}

.ai-reader-animation span:nth-child(1) {
  height: 100%;
  animation-delay: 0s;
}

.ai-reader-animation span:nth-child(2) {
  height: 60%;
  animation-delay: 0.15s;
}

.ai-reader-animation span:nth-child(3) {
  height: 80%;
  animation-delay: 0.3s;
}

.ai-reader-animation span:nth-child(4) {
  height: 40%;
  animation-delay: 0.45s;
}

@keyframes audio-bounce {

  0%,
  100% {
    transform: scaleY(0.4);
  }

  50% {
    transform: scaleY(1);
  }
}

/* AI Reader Highlight */
.ai-highlight {
  background-color: rgba(184, 147, 69, 0.15) !important;
  border-radius: 4px;
  transition: background-color 0.3s ease;
  box-shadow: 0 0 0 1px rgba(184, 147, 69, 0.3);
}

/* ==========================================================================
   What We Do Hero Section
   ========================================================================== */

.wwd-hero-section {
  padding: 100px 0 60px;
  overflow: hidden;
}

.wwd-hero-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* Left Content */
.wwd-hero-content {
  flex: 1;
  max-width: 600px;
}

.wwd-subtitle {
  color: #c1963b;
  /* Gold */
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.wwd-title {
  font-size: 48px;
  line-height: 1.15;
  color: #012b30;
  /* Dark Teal */
  margin-bottom: 25px;
}

.wwd-desc {
  font-size: 18px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 0px;
  max-width: 450px;
}

.wwd-highlight-box {
  font-size: 16px;
  color: #333;
  padding-top: 15px;
}

.wwd-highlight-box strong {
  font-weight: 700;
  color: #012b30;
}

/* Right Graphic */
.wwd-hero-graphic {
  flex: 1.1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px;
}

.wwd-bg-lines {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  z-index: 0;
}

.wwd-center-img {
  position: relative;
  z-index: 2;
  max-width: 100%;
  width: 100%;
  height: auto;
  animation: floatEagle 6s ease-in-out infinite;
  /* Reuse float animation */
}

/* Floating Badges */
.wwd-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 25px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06), inset 0 0 0 1px rgba(255, 255, 255, 1);
  z-index: 3;
  animation: floatEagle 8s ease-in-out infinite;
  overflow: hidden;
  text-align: center;
  min-width: 140px;
}



.wwd-badge-icon {
  width: 50px;
  height: 50px;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
}

.wwd-badge-text {
  font-size: 14px;
  font-weight: 700;
  color: #012b30;
  line-height: 1.4;
}

/* Positioning badges around the center */
.badge-1 {
  top: 10%;
  left: 0;
  animation-delay: 0s;
}

.badge-2 {
  top: 15%;
  right: -5%;
  animation-delay: 1.5s;
}

.badge-3 {
  bottom: 15%;
  left: -5%;
  animation-delay: 2.5s;
}

.badge-4 {
  bottom: 10%;
  right: 5%;
  animation-delay: 0.5s;
}

/* Responsive Design */
@media (max-width: 991px) {
  .wwd-hero-container {
    flex-direction: column;
    text-align: center;
  }

  .wwd-hero-content {
    max-width: 100%;
  }

  .wwd-highlight-box {
    border-left: none;
    display: inline-block;
  }

  .wwd-hero-graphic {
    width: 100%;
    margin-top: 40px;
  }
}

@media (max-width: 767px) {
  .wwd-title {
    font-size: 36px;
  }

  .wwd-badge {
    padding: 8px 15px 8px 8px;
    gap: 10px;
  }

  .wwd-badge-icon {
    width: 40px;
    height: 40px;
  }

  .wwd-badge-icon svg {
    width: 18px;
    height: 18px;
  }

  .wwd-badge-text {
    font-size: 12px;
  }

  .badge-1 {
    top: -10%;
    left: 0;
  }

  .badge-2 {
    top: -5%;
    right: 0;
  }

  .badge-3 {
    bottom: -10%;
    left: 0;
  }

  .badge-4 {
    bottom: -5%;
    right: 0;
  }
}

/* ==========================================================================
   Premium Sticky Services Section (What We Do Page)
   ========================================================================== */

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

.services-header {
  text-align: center;
  margin-bottom: 50px;
}

.services-title {
  font-family: 'TrajanPro-Bold', serif;
  font-size: 48px;
  color: #012b30;
  margin-bottom: 20px;
}

.services-header p {
  color: #555;
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

/* ========================================= */
/* PREMIUM HORIZONTAL SERVICES SECTION */
/* ========================================= */
.premium-services-section {
  padding: 50px 0 100px;
}

.service-list-title {
  color: #012b30;
  font-size: 48px;
  margin-bottom: 20px;
}

.premium-services-section .services-header.text-center {
  margin-bottom: 50px;
}

.premium-services-section .services-description {
  color: #555;
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

.services-list-wrapper {
  display: flex;
  flex-direction: column;
  margin-top: 80px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.service-row-item {
  display: flex;
  align-items: center;
  padding: 40px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  /* cursor: pointer; */
  position: relative;
}

.service-row-item:hover {
  background: linear-gradient(90deg, transparent 0%, rgba(184, 147, 69, 0.05) 50%, transparent 100%);
  padding-left: 20px;
  padding-right: 20px;
}

.service-row-number {
  font-family: 'TrajanPro-Bold', serif;
  font-size: 24px;
  color: #b89345;
  width: 80px;
  flex-shrink: 0;
}

.service-row-title-area {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-row-title-area h3 {
  font-size: 30px;
  font-weight: 600;
  color: #012b30;
  margin: 0;
  transition: transform 0.4s ease, color 0.4s ease;
}

.service-row-item:hover .service-row-title-area h3 {
  transform: translateX(10px);
  color: #b89345;
}

.service-row-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  transition: transform 0.4s ease;
}

.service-row-item:hover .service-row-badges {
  transform: translateX(10px);
}

.service-row-badge {
  background: rgba(184, 147, 69, 0.08);
  color: #b89345;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-row-excerpt {
  flex: 1;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #666;
  padding: 0 40px;
  max-width: 400px;
}

.service-row-arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #012b30;
  transition: all 0.4s ease;
  flex-shrink: 0;
}

.service-row-item:hover .service-row-arrow {
  background: #b89345;
  color: #fff;
  border-color: #b89345;
  transform: rotate(-45deg);
}

.no-services-found {
  text-align: center;
  padding: 50px;
  background: white;
  border-radius: 12px;
  color: #555;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .service-row-item {
    flex-wrap: wrap;
    gap: 20px;
  }

  .service-row-excerpt {
    padding: 0;
    max-width: 100%;
    width: 100%;
    order: 3;
  }

  .service-row-arrow {
    margin-left: auto;
  }
}

@media (max-width: 767px) {
  .premium-services-section {
    padding: 60px 0;
  }

  .services-title {
    font-size: 40px;
  }

  .service-row-number {
    width: 50px;
  }

  .service-row-title-area h3 {
    font-size: 20px;
  }
}

/* How We Work Section */
.split-description {
  max-width: 700px;
  margin: 0 auto;
}

.split-description-top {
  font-size: 18px;
  font-style: italic;
  color: #666;
  margin-bottom: 15px;
}

.split-description-bottom {
  font-size: 20px;
  color: #012b30;
  font-weight: 500;
  line-height: 1.6;
}

.gold-text.fw-bold {
  color: #b89345;
  font-weight: 700;
}

/* Process Timeline Wrapper */
.process-timeline-wrapper {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

/* Process Timeline Item */
.process-timeline-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  width: 100%;
  margin-bottom: 45px;
}

.process-timeline-item:last-child {
  margin-bottom: 0;
}

.process-timeline-item.is-odd {
  justify-content: flex-start;
}

.process-timeline-item.is-even {
  justify-content: flex-end;
}

/* Process Timeline Card */
.process-timeline-card {
  width: 45%;
  background: linear-gradient(145deg, #ffffff 0%, #fdfbf7 100%);
  border-radius: 24px;
  padding: 50px;
  box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.05);
  /* very soft default shadow */
  position: relative;
  z-index: 2;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(184, 147, 69, 0.1);
}

/* Unique Hover Effect: Inner Glow instead of Shadow Float */
.process-timeline-card:hover {
  background: linear-gradient(145deg, #ffffff 0%, #fcf7eb 100%);
  border-color: rgba(184, 147, 69, 0.3);
  box-shadow:
    0 10px 40px -10px rgba(0, 0, 0, 0.05),
    inset 0 0 50px rgba(184, 147, 69, 0.08);
  /* Beautiful inner gold glow */
}

.process-timeline-card:hover::before {
  opacity: 1;
  height: 6px;
}

/* Glow Dot */
.process-glow-dot {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  background: #b89345;
  border-radius: 50%;
  box-shadow: 0 0 25px 8px rgba(184, 147, 69, 0.4);
  z-index: 3;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-timeline-item:hover .process-glow-dot {
  box-shadow: 0 0 35px 12px rgba(184, 147, 69, 0.7);
  transform: translateX(-50%) scale(1.15);
}

/* Card Number */
.process-card-number {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #b89345;
  margin-bottom: 20px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: transform 0.4s ease, color 0.4s ease;
}

.process-timeline-card:hover .process-card-number {
  transform: translateX(5px);
  color: #9c7a33;
}

/* Card Title */
.process-card-title {
  font-family: 'TrajanPro-Bold', serif;
  font-size: 28px;
  color: #012b30;
  margin-bottom: 18px;
  line-height: 1.3;
}

/* Card Excerpt */
.process-card-excerpt {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  color: #555;
  line-height: 1.7;
}

/* Suspense Card Effect */
.suspense-card {
  position: relative;
}

.suspense-content {
  filter: blur(3px);
  opacity: 0.7;
  user-select: none;
  pointer-events: none;
  transition: all 0.4s ease;
}

.suspense-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  background: rgba(255, 255, 255, 0.1);
}

.suspense-btn {
  background: #b89345;
  color: #ffffff;
  padding: 16px 45px;
  border-radius: 40px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  box-shadow: 0 10px 30px rgba(184, 147, 69, 0.4);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.suspense-btn:hover {
  background: #012b30;
  color: #b89345;
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(1, 43, 48, 0.3);
  border-color: #b89345;
}

/* Remove old path */
.process-timeline-path {
  display: none;
}

/* SVG Curve Styles */
.timeline-curve {
  position: absolute;
  top: 50%;
  /* Middle of current card */
  height: calc(50% + 120px + 15px);
  /* Spans from middle of Card 1 down to top of Card 2, +15px to hit center of dot */
  width: 32.5%;
  z-index: 1;
  overflow: visible;
}

.timeline-curve.curve-left-to-right {
  left: 45%;
  /* Right edge of odd card */
}

.timeline-curve.curve-right-to-left {
  right: 45%;
  /* Left edge of even card */
}

/* Hide SVG on mobile */
@media (max-width: 991px) {
  .timeline-curve {
    display: none;
  }
}

/* ========================================= */
/* CONTACT PAGE (LIGHT THEME) */
/* ========================================= */

.alturaitz-contact-area {
  padding-top: 100px;
}

.contact-hero-title {
  font-size: 70px;
  color: #012b30;
  line-height: 1.1;
  letter-spacing: 2px;
}

.contact-hero-paragraph {
  font-size: 22px;
  color: #555;
  line-height: 1.6;
}

.contact-hero-paragraph b {
  color: #012b30;
  font-weight: 700;
}

.contact-accent {
  color: #b89345;
  font-weight: 700;
}

/* Contact Cards */
.contact-info-grid {
  margin-top: 50px;
  row-gap: 30px;
}

.alturaitz-contact-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(184, 147, 69, 0.1);
  transition: all 0.4s ease;
  height: 100%;
}

.alturaitz-contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(184, 147, 69, 0.15);
  border-color: rgba(184, 147, 69, 0.4);
}

.card-icon {
  width: 70px;
  height: 70px;
  background: rgba(184, 147, 69, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #b89345;
}

.card-icon svg {
  width: 32px;
  height: 32px;
}

.card-label {
  font-size: 22px;
  color: #012b30;
  margin-bottom: 5px;
}

.card-value {
  font-size: 16px;
  color: #555;
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
}

.card-value:hover {
  color: #b89345;
}

/* Form Intro Header */
.alt-form-intro-header {
  text-align: center;
  margin-top: 80px;
  margin-bottom: 50px;
}

.alt-form-main-title {
  font-size: 40px;
  color: #012b30;
  margin-bottom: 20px;
}

.alt-form-main-title span {
  color: #b89345;
}

.alt-form-divider {
  width: 60px;
  height: 3px;
  background: #b89345;
  margin: 0 auto 20px;
}

.alt-form-subtitle {
  font-size: 16px;
  color: #666;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ========================================= */
/* CONTACT FORM 7 MULTI-STEP (LIGHT THEME) */
/* ========================================= */

.alt-multi-step-form-container {
  max-width: 800px;
  margin: 0 auto 50px;
  background: #ffffff;
  border-radius: 24px;
  padding: 60px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(184, 147, 69, 0.1);
  position: relative;
  overflow: hidden;
}

/* Progress Bar */
.alt-form-progress-wrap {
  margin-bottom: 40px;
}

.alt-progress-bar {
  width: 100%;
  height: 6px;
  background: #f0f0f0;
  border-radius: 10px;
  overflow: hidden;
}

.alt-progress-fill {
  height: 100%;
  background: #b89345;
  width: 25%;
  /* Step 1 default */
  transition: width 0.5s ease;
}

/* Form Steps */
.alt-form-step {
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.alt-form-step.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* Step Headers */
.alt-step-header {
  margin-bottom: 30px;
}

.alt-step-label {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  color: #b89345;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.alt-step-title {
  font-family: 'TrajanPro-Bold', serif;
  font-size: 26px;
  color: #012b30;
  line-height: 1.4;
}

/* Choice Lists (Radio / Checkbox) */
.alt-choice-list .wpcf7-list-item,
.alt-checkbox-grid .wpcf7-list-item {
  display: block;
  margin: 0 0 15px 0;
}

.alt-choice-list label,
.alt-checkbox-grid label {
  display: flex;
  align-items: center;
  padding: 18px 25px;
  background: #fdfbf7;
  border: 1px solid rgba(184, 147, 69, 0.15);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #555;
  font-weight: 500;
  margin-bottom: 0;
}

.alt-choice-list label:hover,
.alt-checkbox-grid label:hover {
  background: #fff;
  border-color: #b89345;
  box-shadow: 0 5px 15px rgba(184, 147, 69, 0.1);
  color: #012b30;
}

.alt-choice-list input[type="radio"],
.alt-checkbox-grid input[type="checkbox"] {
  margin-right: 15px;
  accent-color: #b89345;
  width: 20px;
  height: 20px;
  cursor: pointer;
}

/* Form Navigation */
.alt-form-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  align-items: center;
}

.alt-form-nav p {
  margin: 0;
}

.alt-prev-btn,
.alt-next-btn {
  padding: 14px 35px;
  border-radius: 30px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
}

.alt-prev-btn {
  background: transparent;
  color: #666;
  border: 1px solid #ddd;
}

.alt-prev-btn:hover {
  background: #f5f5f5;
  color: #012b30;
  border-color: #ccc;
}

.alt-next-btn,
input[type="submit"].alt-next-btn {
  background: #b89345;
  color: #fff;
  box-shadow: 0 8px 20px rgba(184, 147, 69, 0.3);
}

.alt-next-btn:hover,
input[type="submit"].alt-next-btn:hover {
  background: #012b30;
  color: #b89345;
  box-shadow: 0 12px 25px rgba(1, 43, 48, 0.2);
  transform: translateY(-2px);
}

/* Grid & Inputs */
.alt-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.alt-input-group {
  display: flex;
  flex-direction: column;
}

.alt-input-group label {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #012b30;
  font-weight: 600;
  margin-bottom: 8px;
}

.alt-input-group input {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fdfbf7;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #333;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.alt-input-group input:focus {
  border-color: #b89345;
  outline: none;
  background: #fff;
}


/* CF7 Specific Overrides */
span.wpcf7-spinner {
  display: inline-block;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease;
  width: 0 !important;
  margin: 0 !important;
}

form.submitting .wpcf7-spinner {
  visibility: visible;
  opacity: 1;
  width: 24px !important;
  margin: 0 24px !important;
}

div.wpcf7-response-output {
  border-radius: 10px;
  margin-top: 25px auto !important;
}

.contact-hero-content {
  text-align: center;
}

div.wpcf7-validation-errors {
  border-color: #b89345;
  color: #b89345;
}

/* --- Who We Are Graphic New Card Design --- */
.wwa-glass-card {
  background: linear-gradient(135deg, rgb(255 255 255 / 34%) 0%, rgb(240 240 240 / 67%) 100%);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  /* border: 1px solid rgba(255, 255, 255, 0.8); */
  /* box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05), inset 0 0 0 1px rgba(255, 255, 255, 0.6); */
  border-radius: 16px;
  padding: 20px 25px;
  display: flex;
  align-items: center;
  gap: 20px;
  position: absolute;
  width: 280px;
  transition: transform 0.3s ease;
  z-index: 2;
}

.wwa-glass-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), inset 0 0 0 1px rgba(255, 255, 255, 0.9);
}

.wwa-card-icon {
  background: #E8E5DA;
  border-radius: 50%;
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: inset 0 2px 5px rgba(255, 255, 255, 0.5), 0 5px 15px rgba(0, 0, 0, 0.03);
}

.wwa-card-icon .icon-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.wwa-card-icon .icon-circle svg {
  width: 26px;
  height: 26px;
  stroke: #b89345;
}

.wwa-card-text {
  display: flex;
  flex-direction: column;
}

.wwa-card-text strong {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: #495057;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: normal;
}

.wwa-card-text span {
  display: inline-block;
  font-size: 22px;
  color: var(--primary-teal);
  letter-spacing: 1px;
  line-height: 1.2;
  text-transform: uppercase;
  font-weight: normal !important;
  font-family: "TrajanPro-Bold", serif;
  vertical-align: middle;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .alt-form-grid {
    grid-template-columns: 1fr;
  }

  .alt-multi-step-form-container {
    padding: 30px 20px 50px;
  }

  .alt-step-title {
    font-size: 22px;
  }
}

/* ==========================================================================
   Hamburger Menu & Offcanvas Sidebar (Desktop & Mobile)
   ========================================================================== */

.hamburger-menu-btn {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  border-radius: 30px;
  transition: background 0.3s ease;
}

.hamburger-menu-btn:hover {
  background: rgba(0, 0, 0, 0.05);
}

.hamburger-text {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #111;
}

.hamburger-icon {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 24px;
}

.hamburger-line {
  display: block;
  height: 2px;
  background-color: #111;
  border-radius: 2px;
  transition: 0.3s ease;
}

.hamburger-line.line-1 {
  width: 100%;
}

.hamburger-line.line-2 {
  width: 70%;
  margin-left: auto;
}

.hamburger-menu-btn:hover .line-2 {
  width: 100%;
}

/* Premium White Off-Canvas Menu */
.premium-offcanvas-menu {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  max-width: 1400px;
  width: 100%;
  height: 100vh;
  z-index: 100000;
  pointer-events: none;
  visibility: hidden;
}

.offcanvas-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.offcanvas-sidebar {
  position: absolute;
  bottom: 100px;
  right: 20px;
  width: 100%;
  max-width: 420px;
  max-height: calc(100vh - 120px);
  background: #fff;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
  border-radius: 40px;
  display: flex;
  flex-direction: column;
  padding: 40px;

  /* Smooth Popup Animation (Hidden State) */
  opacity: 0;
  visibility: hidden;
  transform: translateY(40px) scale(0.95);
  transform-origin: bottom right;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);

  overflow-y: auto;
  pointer-events: none;
}

/* Open State */
body.offcanvas-menu-open {}

body.offcanvas-menu-open .premium-offcanvas-menu {
  pointer-events: auto;
  visibility: visible;
}

body.offcanvas-menu-open .offcanvas-overlay {
  opacity: 1;
}

body.offcanvas-menu-open .offcanvas-sidebar {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* Sidebar Internal Elements */
.offcanvas-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.offcanvas-logo img {
  height: 40px;
  width: auto;
}

.offcanvas-close-btn {
  background: transparent;
  border: none;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #111;
  transition: all 0.3s ease;
}

.offcanvas-close-btn:hover {
  transform: rotate(90deg);
  opacity: 0.6;
}

.offcanvas-nav {
  flex-grow: 1;
}

.offcanvas-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.offcanvas-nav ul li a {
  text-decoration: none;
  font-size: 20px;
  color: #111111;
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-block;
  font-family: "TrajanPro-Bold";
}

.offcanvas-nav ul li a:hover {
  color: var(--gold-accent);
  transform: translateX(10px);
}

nav.offcanvas-nav {
  margin-bottom: 20px;
}

.offcanvas-contact {
  /* Removed top border from here, moved to footer-content */
}

.offcanvas-footer-content {
  margin-top: auto;
  border-top: 1px solid #c0c3c8;
  padding-top: 40px;
}

.mobile-aura-btn-container {
  display: none;
}

@media (max-width: 768px) {
  .offcanvas-sidebar {
    padding: 30px 25px;
    width: 100%;
    max-width: calc(100vw - 30px);
    right: 15px;
    bottom: 0;
    top: 0;
    border-radius: 20px;
  }

  .mobile-aura-btn-container {
    display: block;
    margin-top: 15px;
  }

  .mobile-aura-btn {
    display: flex;
    justify-content: center;
    background: linear-gradient(135deg, #c39c3e 0%, #d4af37 25%, #e7c675 50%, #c4993a 75%, #dcb554 100%);
    padding: 20px 30px;
    border-radius: 40px;
    text-decoration: none;
    transition: transform 0.3s ease;
    align-items: center;
    width: 100%;
  }

  .mobile-aura-btn:hover {
    transform: translateY(-3px);
  }
}

.hamburger-text {
  display: none;
  /* Hide 'MENU' text on mobile */
}

/* ==========================================================================
   Archive specific styles migrated from inline styles
   ========================================================================== */
.archive-hero-section .archive-banner-layout {
  position: relative;
  z-index: 2;
}

.archive-hero-section .archive-banner-subtitle {
  text-transform: uppercase;
  letter-spacing: 2px;
}

.archive-hero-section .archive-count-text {
  color: #b58529;
  font-weight: 600;
}

.archive-blog-list-section {
  padding: 80px 0 0;
}

.archive-services-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.archive-no-posts {
  text-align: center;
  width: 100%;
}

.archive-blog-pagination {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 0px;
}

.alturaitz-simple-map,
.alturaitz-simple-map iframe {
  width: 100%;
  height: 450px;
}

/* Limit floating header menu to 3 items */
.floating-menu .nav>li:nth-child(n+4) {
  display: none !important;
}

.code-window {
  background: #1e1e1e;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  margin: 24px 0;
  font-family: 'SF Mono', 'Fira Code', Consolas, monospace;
}

.code-window-titlebar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: #2d2d2d;
  border-bottom: 1px solid #3a3a3a;
}

.code-window-dots {
  display: flex;
  gap: 6px;
}

.dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  display: inline-block;
}

.dot-red {
  background: #ff5f56;
}

.dot-yellow {
  background: #ffbd2e;
}

.dot-green {
  background: #27c93f;
}

.code-window-filename {
  margin-left: 6px;
  color: #9a9a9a;
  font-size: 12.5px;
  letter-spacing: 0.3px;
}

.code-window-body {
  margin: 0;
  padding: 18px 20px;
  color: #e6e6e6;
  font-size: 14px;
  line-height: 1.7;
  overflow-x: auto;
}

.code-key {
  color: #7ec7ff;
}

.code-val {
  color: #ffd479;
}

.code-window p {
  margin: 0;
}