:root {
  /* PRIMARY BRAND COLORS */
  --gold: #FF7F27;              /* Main orange */
  --gold-light: #FFB27A;        /* Soft orange highlight */

  --dark-text: #000;

  --navy: #0A1628;              /* Primary blue */
  --navy-light: #152238;        /* Soft blue background */

  /* NEUTRALS */
  --slate: #00A2E8;           /* Muted blue-slate (replaces dark navy feel) */
  --cream: #F7F9FC;             /* Clean off-white */
  --white: #FFFFFF;

  /* TEXT */
  --text-muted: #212529;       /* Cool muted blue-gray */

  /* STATUS COLORS */
  --success: #10B981;
  --danger: #EF4444;

  /* SHADOWS (tuned for blue/orange theme) */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.18);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.25),
               0 2px 4px -2px rgba(0, 0, 0, 0.18);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.28),
               0 4px 6px -4px rgba(0, 0, 0, 0.22);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.32),
               0 8px 10px -6px rgba(0, 0, 0, 0.25);

  /* ORANGE GLOW */
  --shadow-gold: 0 10px 40px -10px rgba(255, 127, 39, 0.45);
}


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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--cream);
  overflow-x: hidden;
  line-height: 1.7;
}

#bg-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.bg-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 30% 0%, rgba(201, 169, 98, 0.08) 0%, transparent 50%),
                        radial-gradient(ellipse at 80% 100%, rgba(232, 213, 163, 0.06) 0%, transparent 40%);
  z-index: 0;
  pointer-events: none;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 5px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background: var(--cream);
  backdrop-filter: blur(10px);
  /* border-bottom: 1px solid var(--slate); */
  transition: all 0.4s ease;
  box-shadow: 0 0 48px rgba(0, 0, 0, .08);
}

nav.scrolled {
  background: var(--cream);
  border-bottom: 1px solid rgba(201, 169, 98, 0.2);
  box-shadow: var(--shadow-sm);
  padding: 0.8rem 5%;
}

.logo-icon {
  width: 250px;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

#navbar .nav-phone{
  font-size: 1rem;
  color: var(--dark-text);
  text-decoration: none;
}

.nav-links a, .nav-links .dropdown-toggle {
  color: var(--dark-text);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
  display: none;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--gold);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  /* box-shadow: var(--shadow-gold); */
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px -10px rgba(201, 169, 98, 0.5);
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
}

/* .dropdown {
  position: relative;
}

.dropdown-toggle {
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: -125px;
  min-width: 300px;
  background: #fff;
  border-radius: 10px;
  padding: 8px 0;
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  pointer-events: none;
  z-index: 1000;
}

.dropdown.active .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 18px;
  color: #0f172a;
  transition: background 0.2s ease;
}

.dropdown-menu li a:hover {
  background: #f1f5f9;
}

.dropdown-menu li {
  list-style: none;
  text-align: center;
} */

/* MEGA BASE */
/* BASE */
/* =========================
   MEGA MENU BASE
========================= */

.mega-dropdown {
    position: relative;
}

/* HOVER BRIDGE (prevents flicker) */
.mega-dropdown::after {
    content: "";
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    height: 32px; /* hover buffer */
}

/* =========================
   FULL WIDTH MEGA MENU
========================= */

.mega-menu.full {
    position: fixed;
    left: 0;
    top: 60px; /* must match navbar height */
    width: 100vw;
    background: #ffffff;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.96);
    transition: opacity 0.25s ease, transform 0.25s ease;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    z-index: 999;
    padding: 25px 0;

    /* KEY FIX */
    pointer-events: none;
}

/* =========================
   HOVER LOGIC (DESKTOP ONLY)
========================= */

@media (min-width: 993px) {
    .mega-dropdown:hover > .mega-menu,
    .mega-menu:hover {
        opacity: 1;
        visibility: visible;
        transform: scale(1);

        /* KEY FIX */
        pointer-events: auto;
    }
}

/* =========================
   INNER CONTAINER
========================= */

.mega-container {
    max-width: 1200px;
    margin: auto;
    padding: 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* =========================
   COLUMNS
========================= */

.mega-column h4 {
    font-size: 25px;
    margin-bottom: 25px;
    font-weight: 900;
    color: #0A1628;
}

.mega-column h4 i {
    margin-right: 8px;
    color: var(--gold);
}

.mega-column a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    color: var(--dark-text);
    padding: 8px 0;
    text-decoration: none;
}

.mega-column a i {
    color: var(--gold);
    width: 18px;
}

.mega-column a:hover {
    color: var(--gold);
}

/* =========================
   HIGHLIGHT COLUMN
========================= */

.mega-column.highlight {
    background: #EFEFEF;
    padding: 24px;
    border-radius: 14px;
}

/* =========================
   CTA BUTTON
========================= */

.mega-cta {
    background: var(--gold);
    color: var(--white)!important;
    padding: 12px 20px;
    border-radius: 6px;
    display: block!important;
    font-size: 14px;
    text-align: center;
}

/* =========================
   MOBILE SAFETY
========================= */

@media (max-width: 992px) {
    .mega-menu.full {
        display: none;
    }

    .mega-dropdown::after {
        display: none;
    }

     .nav-phone{
      display: none;
    }
}




.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.mobile-menu span {
  width: 25px;
  height: 2px;
  background: var(--gold);
  transition: all 0.3s ease;
}

.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 22, 40, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-links {
  list-style: none;
  text-align: center;
}

.mobile-nav-links li {
  margin: 1.5rem 0;
}

.mobile-nav-links a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--cream);
  text-decoration: none;
  transition: color 0.3s ease;
}

.mobile-nav-links a:hover {
  color: var(--gold);
}

.mobile-nav-links .mobile-cta {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  margin-top: 1rem;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 5% 4rem;
  position: relative;
  z-index: 1;
  /* background: linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 100%); */
  overflow: hidden;
  padding-top: 8rem;
}

.hero-content {
  max-width: 650px;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(145deg, rgba(21, 34, 56, 0.8) 0%, rgba(10, 22, 40, 0.9) 100%);
  border: 1px solid rgba(21, 34, 56, 0.8);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--white);
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
  box-shadow: var(--shadow-sm);
}

.hero-badge::before {
  content: '★';
  color: var(--white);
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: var(--dark-text);
  animation: fadeInUp 0.8s ease 0.1s forwards;
  opacity: 0;
}

.hero h1 span {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 520px;
  animation: fadeInUp 0.8s ease 0.2s forwards;
  opacity: 0;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.3s forwards;
  opacity: 0;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
  padding: 0.875rem 1.75rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  /* box-shadow: var(--shadow-gold); */
  border: 1px solid var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px -10px rgba(201, 169, 98, 0.5);
}

.btn-secondary {
  background: rgba(21, 34, 56, 0.8);
  color: var(--cream);
  padding: 1rem 2rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(201, 169, 98, 0.3);
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: var(--shadow-md);
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(201, 169, 98, 0.2);
  animation: fadeInUp 0.8s ease 0.4s forwards;
  opacity: 0;
}

.stat {
  text-align: left;
}

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--gold);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.floating-element {
  position: absolute;
  opacity: 0.6;
  animation: float 6s ease-in-out infinite;
}

.floating-element.el-1 {
  top: 20%;
  right: 10%;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, rgba(201, 169, 98, 0.15) 0%, transparent 70%);
  border-radius: 30px;
  transform: rotate(45deg);
  animation-delay: 0s;
}

.floating-element.el-2 {
  top: 40%;
  right: 20%;
  width: 80px;
  height: 80px;
  border: 2px solid rgba(201, 169, 98, 0.2);
  border-radius: 20px;
  transform: rotate(30deg);
  animation-delay: -2s;
}

.floating-element.el-3 {
  bottom: 20%;
  right: 15%;
  width: 60px;
  height: 60px;
  background: rgba(232, 213, 163, 0.1);
  border-radius: 15px;
  transform: rotate(-20deg);
  animation-delay: -4s;
}

.cube-3d {
  position: absolute;
  width: 60px;
  height: 60px;
  transform-style: preserve-3d;
  animation: rotateCube 15s linear infinite;
  pointer-events: none;
}

.cube-3d .face {
  position: absolute;
  width: 60px;
  height: 60px;
  border: 2px solid rgba(201, 169, 98, 0.3);
  background: rgba(201, 169, 98, 0.05)  ;
  backdrop-filter: blur(5px);
  border-radius: 8px;
}

.cube-3d .front {
  transform: translateZ(30px);
}

.cube-3d .back {
  transform: translateZ(-30px) rotateY(180deg);
}

.cube-3d .left {
  transform: translateX(-30px) rotateY(-90deg);
}

.cube-3d .right {
  transform: translateX(30px) rotateY(90deg);
}

.cube-3d .top {
  transform: translateY(-30px) rotateX(90deg);
}

.cube-3d .bottom {
  transform: translateY(30px) rotateX(-90deg);
}

@keyframes rotateCube{


            0% { transform: rotateX(0deg) rotateY(0deg); }
            100% { transform: rotateX(360deg) rotateY(360deg); }


}

.ring-3d {
  position: absolute;
  width: 100px;
  height: 100px;
  border: 3px solid rgba(201, 169, 98, 0.3);
  border-radius: 50%;
  transform-style: preserve-3d;
  animation: rotateRing 10s linear infinite;
}

.ring-3d::before,
        .ring-3d::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border: 3px solid rgba(201, 169, 98, 0.2);
  border-radius: 50%;
  top: -3px;
  left: -3px;
}

.ring-3d::before {
  transform: rotateX(60deg);
}

.ring-3d::after {
  transform: rotateY(60deg);
}

@keyframes rotateRing{


            0% { transform: rotateX(0deg) rotateY(0deg); }
            100% { transform: rotateX(360deg) rotateY(360deg); }


}

.sphere-3d {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(201, 169, 98, 0.2), rgba(232, 213, 163, 0.05) 50%, transparent 70%);
  box-shadow: inset -10px -10px 30px rgba(201, 169, 98, 0.1),
                        inset 5px 5px 20px rgba(232, 213, 163, 0.3);
  animation: floatSphere 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes floatSphere{


            0%, 100% { transform: translateY(0) scale(1); }
            50% { transform: translateY(-20px) scale(1.05); }


}

.pyramid-3d {
  position: absolute;
  width: 0;
  height: 0;
  transform-style: preserve-3d;
  animation: rotatePyramid 12s linear infinite;
}

.pyramid-3d .side {
  position: absolute;
  width: 0;
  height: 0;
  border-left: 25px solid transparent;
  border-right: 25px solid transparent;
  border-bottom: 40px solid rgba(201, 169, 98, 0.2);
  transform-origin: bottom center;
}

.pyramid-3d .side:nth-child(1) {
  transform: rotateY(0deg) rotateX(30deg);
}

.pyramid-3d .side:nth-child(2) {
  transform: rotateY(90deg) rotateX(30deg);
}

.pyramid-3d .side:nth-child(3) {
  transform: rotateY(180deg) rotateX(30deg);
}

.pyramid-3d .side:nth-child(4) {
  transform: rotateY(270deg) rotateX(30deg);
}

@keyframes rotatePyramid{


            0% { transform: rotateY(0deg); }
            100% { transform: rotateY(360deg); }


}

.hexagon-3d {
  position: absolute;
  width: 70px;
  height: 40px;
  background: rgba(201, 169, 98, 0.1);
  animation: floatHex 7s ease-in-out infinite;
}

.hexagon-3d::before,
        .hexagon-3d::after {
  content: '';
  position: absolute;
  width: 0;
  border-left: 35px solid transparent;
  border-right: 35px solid transparent;
}

.hexagon-3d::before {
  bottom: 100%;
  border-bottom: 20px solid rgba(201, 169, 98, 0.1);
}

.hexagon-3d::after {
  top: 100%;
  border-top: 20px solid rgba(201, 169, 98, 0.1);
}

@keyframes floatHex{


            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-15px) rotate(10deg); }


}

.dots-grid {
  position: absolute;
  width: 120px;
  height: 120px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  opacity: 0.4;
}

.dots-grid .dot {
  width: 6px;
  height: 6px;
  background: var(--gold-light);
  border-radius: 50%;
  animation: pulseDot 3s ease-in-out infinite;
}

.dots-grid .dot:nth-child(odd) {
  animation-delay: -1.5s;
}

@keyframes pulseDot{


            0%, 100% { transform: scale(1); opacity: 0.3; }
            50% { transform: scale(1.5); opacity: 0.8; }


}

.hero-3d-card {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%) perspective(1000px) rotateY(-15deg) rotateX(5deg);
  width: 350px;
  height: 250px;
  background: linear-gradient(145deg, rgba(21, 34, 56, 0.8) 0%, rgba(10, 22, 40, 0.9) 100%);
  border-radius: 20px;
  box-shadow: var(--shadow-xl),
                        30px 30px 60px rgba(0, 0, 0, 0.3),
                        0 0 0 1px rgba(201, 169, 98, 0.2);
  padding: 2rem;
  transition: transform 0.5s ease;
  display: none;
}

.hero-3d-card:hover {
  transform: translateY(-50%) perspective(1000px) rotateY(-5deg) rotateX(2deg);
}

.hero-3d-card .mini-chart {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  height: 100px;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(201, 169, 98, 0.2);
  margin-bottom: 1rem;
}

.hero-3d-card .bar {
  width: 20px;
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: 4px 4px 0 0;
  animation: growBar 2s ease-out forwards;
}

.hero-3d-card .bar:nth-child(1) {
  height: 40%;
  animation-delay: 0.1s;
}

.hero-3d-card .bar:nth-child(2) {
  height: 70%;
  animation-delay: 0.2s;
}

.hero-3d-card .bar:nth-child(3) {
  height: 55%;
  animation-delay: 0.3s;
}

.hero-3d-card .bar:nth-child(4) {
  height: 85%;
  animation-delay: 0.4s;
}

.hero-3d-card .bar:nth-child(5) {
  height: 65%;
  animation-delay: 0.5s;
}

.hero-3d-card .bar:nth-child(6) {
  height: 90%;
  animation-delay: 0.6s;
}

.hero-3d-card .bar:nth-child(7) {
  height: 75%;
  animation-delay: 0.7s;
}

@keyframes growBar{


            from { height: 0; }


}

.hero-3d-card .card-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}

.hero-3d-card .card-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--gold);
}

.hero-3d-card .card-trend {
  color: var(--success);
  font-size: 0.9rem;
  font-weight: 600;
}

.section-3d-element {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.services {
  position: relative;
  overflow: hidden;
  padding: 8rem 5%;
  z-index: 1;
  /* background: var(--navy); */
}

.services .cube-3d {
  top: 10%;
  left: 5%;
  opacity: 0.5;
}

.services .ring-3d {
  bottom: 15%;
  right: 8%;
  opacity: 0.4;
}

.services .dots-grid {
  top: 20%;
  right: 3%;
}

.features {
  position: relative;
  overflow: hidden;
  padding: 8rem 5%;
  z-index: 1;
  /* background: var(--navy-light); */
}

.features .sphere-3d {
  top: 15%;
  right: 10%;
  opacity: 0.5;
}

.features .hexagon-3d {
  bottom: 20%;
  left: 5%;
  opacity: 0.4;
}

.pricing {
  position: relative;
  overflow: hidden;
  padding: 8rem 5%;
  z-index: 1;
  /* background: var(--navy); */
}

.pricing .pyramid-3d {
  top: 15%;
  left: 8%;
  opacity: 0.4;
}

.pricing .ring-3d {
  bottom: 10%;
  right: 5%;
  width: 80px;
  height: 80px;
  opacity: 0.3;
}

.testimonials {
  position: relative;
  padding: 8rem 5%;
  z-index: 1;
  overflow: hidden;
  /* background: var(--navy-light); */
}

.testimonials .cube-3d {
  bottom: 20%;
  left: 5%;
  width: 40px;
  height: 40px;
  opacity: 0.4;
}

.testimonials .cube-3d .face {
  width: 40px;
  height: 40px;
}

.testimonials .sphere-3d {
  top: 20%;
  right: 8%;
  width: 50px;
  height: 50px;
  opacity: 0.4;
}

@keyframes float{


            0%, 100% { transform: translateY(0) rotate(45deg); }
            50% { transform: translateY(-20px) rotate(50deg); }


}

@keyframes fadeInUp{


            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }


}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}

.section-label {
  font-size: 0.85rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  font-weight: 600;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--dark-text);
}

.section-subtitle {
  color: var(--text-muted);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: var(--cream);
  border: 1px solid rgba(201, 169, 98, 0.2);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2),
                        0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 169, 98, 0.4);
  box-shadow: 0 20px 40px -10px rgba(201, 169, 98, 0.2),
                        0 10px 20px -5px rgba(0, 0, 0, 0.2);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(145deg, rgba(21, 34, 56, 0.8) 0%, rgba(10, 22, 40, 0.9) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}

.service-icon img {
  width: 40px;
  filter: brightness(0) invert(1);
}

.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: var(--dark-text);
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.service-list {
  margin-top: 1rem;
  padding-left: 0;
  list-style: none;
}

.service-list li {
  color: var(--text-muted);
  font-size: 0.9rem;
  padding: 0.3rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-list li::before {
  content: '✓';
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.features-visual {
  position: relative;
}

.feature-card-3d {
  background: linear-gradient(145deg, rgba(21, 34, 56, 0.8) 0%, rgba(10, 22, 40, 0.9) 100%);
  border: 1px solid rgba(201, 169, 98, 0.2);
  border-radius: 20px;
  padding: 2rem;
  transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
  box-shadow: var(--shadow-xl);
  transition: transform 0.4s ease;
}

.feature-card-3d:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.ledger-preview {
  background: rgba(10, 22, 40, 0.6);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(201, 169, 98, 0.15);
}

.ledger-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid var(--gold);
  font-size: 0.75rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}

.ledger-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(201, 169, 98, 0.15);
  font-size: 0.85rem;
  color: var(--white);
}

.ledger-row .debit {
  color: var(--success);
  font-weight: 600;
}

.ledger-row .credit {
  color: var(--danger);
  font-weight: 600;
}

.ledger-row .balance {
  color: var(--gold);
  font-weight: 700;
}

.card-stats {
  display: flex;
  justify-content: space-between;
}

.card-stat {
  text-align: center;
}

.card-stat-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--gold);
}

.card-stat-label {
  font-size: 0.8rem;
  color: var(--white);
}

.features-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--dark-text);
}

.features-content p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.feature-list {
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 1.2rem;
  background: linear-gradient(145deg, rgba(21, 34, 56, 0.8) 0%, rgba(10, 22, 40, 0.9) 100%);
  border: 1px solid rgba(201, 169, 98, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.feature-list li:hover {
  border-color: rgba(201, 169, 98, 0.4);
  transform: translateX(5px);
  box-shadow: var(--shadow-md);
}

.feature-check {
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.7rem;
  flex-shrink: 0;
}

.feature-text h4 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
  color: var(--cream);
}

.feature-text p {
  font-size: 0.9rem;
  margin: 0;
  color: var(--white);
}

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.pricing-toggle span {
  font-size: 1rem;
  color: var(--white);
  transition: color 0.3s ease;
}

.pricing-toggle span.active {
  color: var(--cream);
  font-weight: 600;
}

.toggle-switch {
  width: 60px;
  height: 32px;
  background: var(--cream);
  border: 2px solid rgba(201, 169, 98, 0.3);
  border-radius: 50px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}

.toggle-switch::before {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  background: var(--gold);
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.toggle-switch.yearly::before {
  transform: translateX(28px);
}

.toggle-switch.yearly {
  border-color: var(--gold);
  background: rgba(201, 169, 98, 0.1);
}

.save-badge {
  background: var(--danger);
  color: var(--white);
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--cream);
  border: 1px solid rgba(201, 169, 98, 0.2);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2),
                        0 2px 4px -2px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
  border-color: var(--gold);
  border-width: 2px;
  transform: scale(1.05);
  box-shadow: 0 25px 50px -12px rgba(201, 169, 98, 0.3),
                        0 12px 24px -8px rgba(0, 0, 0, 0.2);
}

.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--white);
  padding: 0.4rem 1.5rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(201, 169, 98, 0.4);
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px -12px rgba(201, 169, 98, 0.25),
                        0 12px 24px -8px rgba(0, 0, 0, 0.2);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
  box-shadow: 0 30px 60px -15px rgba(201, 169, 98, 0.35);
}

.pricing-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--success);
}

.pricing-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.pricing-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: 0.25rem;
  transition: all 0.3s ease;
}

.pricing-amount span {
  font-size: 1rem;
  color: var(--text-muted);
  font-family: 'DM Sans', sans-serif;
}

.pricing-period {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.original-price {
  text-decoration: line-through;
  color: var(--text-muted);
  font-size: 1.1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  height: 1.5rem;
}

.original-price.show {
  opacity: 1;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 2rem;
  margin: 1.5rem 0 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(201, 169, 98, 0.2);
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(201, 169, 98, 0.15);
  font-size: 0.95rem;
  color: var(--dark-text);
}

.pricing-features li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: rgba(201, 169, 98, 0.2);
  border-radius: 50%;
  font-size: 0.7rem;
  flex-shrink: 0;
}

.pricing-btn {
  width: 100%;
  padding: 1rem;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  display: block;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1rem;
  font-family: 'DM Sans', sans-serif;
}

.pricing-card:not(.featured) .pricing-btn {
  background: var(--cream);
  color: var(--gold);
  border: 1px solid var(--gold);
}

.pricing-card:not(.featured) .pricing-btn:hover {
  background: rgba(201, 169, 98, 0.15);
  border-color: var(--gold);
  color: var(--gold);
}

.pricing-card.featured .pricing-btn {
  background: var(--gold);
  color: var(--text);
  border: none;
  /* box-shadow: var(--shadow-gold); */
}

.pricing-card.featured .pricing-btn:hover {
  box-shadow: 0 14px 40px -10px rgba(201, 169, 98, 0.6);
}

.testimonials-slider {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-slide {
  min-width: 100%;
  padding: 0 1rem;
}

.testimonial-card {
  background: #EFEFEF;
  border: 1px solid rgba(201, 169, 98, 0.2);
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: var(--shadow-lg);
}

.testimonial-card:hover {
  border-color: rgba(201, 169, 98, 0.4);
  box-shadow: var(--shadow-xl);
}

.testimonial-stars {
  color: #FBBF24;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  letter-spacing: 5px;
}

.testimonial-text {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 2rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
}

.testimonial-info {
  text-align: left;
}

.testimonial-info h4 {
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
  color: var(--gold);
}

.testimonial-info p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 2.5rem;
}

.slider-btn {
  width: 50px;
  height: 50px;
  background: var(--gold);
  border: 1px solid var(--gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--cream);
  font-size: 1.2rem;
  /* box-shadow: var(--shadow-sm); */
}

.slider-btn:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  /* box-shadow: var(--shadow-gold); */
}

.slider-dots {
  display: flex;
  gap: 0.8rem;
}

.slider-dot {
  width: 12px;
  height: 12px;
  background: rgba(201, 169, 98, 0.3);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot.active {
  background: var(--gold);
  transform: scale(1.2);
}

.slider-dot:hover {
  background: var(--gold-light);
}

.cta {
  padding: 8rem 5%;
  position: relative;
  z-index: 1;
  background: url('https://quickledgeraccounting.com/public/frontend/images/a2.png');
  background-size: cover;
  background-repeat: no-repeat;
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
  background: linear-gradient(145deg, rgba(21, 34, 56, 0.95) 0%, rgba(10, 22, 40, 0.98) 100%);
  border: 1px solid rgba(201, 169, 98, 0.3);
  border-radius: 24px;
  padding: 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.cta-container::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(201, 169, 98, 0.08) 0%, transparent 50%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate{


            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }


}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--cream);
}

.cta p {
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto 2rem;
}

.cta .btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy);
  /* box-shadow: 0 4px 25px rgba(201, 169, 98, 0.3); */
}

.cta .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 35px rgba(201, 169, 98, 0.45);
}

footer {
  padding: 60px 5% 30px;
  position: relative;
  z-index: 1;
  background: var(--dark-text);
  color: var(--white);
  border-top: 1px solid rgba(201, 169, 98, 0.2);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 48px;
}

.footer-brand {
  max-width: 300px;
}

.footer-brand .logo {
  margin-bottom: 20px;
  color: var(--white);
}

.footer-brand .logo-icon {
  width: 250px;
}

.footer-brand p {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.social-links {
  display: none;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(201, 169, 98, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--gold);
  color: var(--navy);
}

.footer-links h4 {
  font-size: 1rem;
  margin-bottom: 20px;
  color: var(--cream);
}

.footer-links ul {
  list-style: none;
}

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

.footer-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-bottom {
  max-width: 1200px;
  margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--slate);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  color: var(--white);
  font-size: 0.9rem;
}

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

.footer-bottom-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: var(--gold);
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal ul li h5{
    color: var(--dark-text);
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 22, 40, 0.9);
  backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  /* background: linear-gradient(145deg, rgba(21, 34, 56, 0.95) 0%, rgba(10, 22, 40, 0.98) 100%); */
  border: 1px solid rgba(201, 169, 98, 0.3);
  border-radius: 24px;
  max-width: 650px;
  width: 95%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.9) translateY(20px);
  transition: all 0.3s ease;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

#consultationForm .form-group label{
  color: var(--white);
}

.modal-overlay.active .modal-container {
  transform: scale(1) translateY(0);
}

.modal-header {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  padding: 2rem;
  border-radius: 24px 24px 0 0;
  text-align: center;
  position: relative;
}

.modal-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.modal-header p {
  color: rgba(10, 22, 40, 0.8);
  font-size: 0.95rem;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  background: rgba(10, 22, 40, 0.2);
  border: none;
  border-radius: 50%;
  color: var(--navy);
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background: rgba(10, 22, 40, 0.3);
  transform: rotate(90deg);
}

.modal-body {
  padding: 2rem;
}

.modal-form .form-group {
  margin-bottom: 1.25rem;
}

.modal-form label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.modal-form label .required {
  color: var(--danger);
}

.modal-form input,
        .modal-form select,
        .modal-form textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid rgba(201, 169, 98, 0.3);
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  color: var(--cream);
  background: rgba(10, 22, 40, 0.6);
  transition: all 0.3s ease;
}

.modal-form input:focus,
        .modal-form select:focus,
        .modal-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.1);
}

.modal-form input::placeholder,
        .modal-form textarea::placeholder {
  color: var(--text-muted);
}

.modal-form textarea {
  min-height: 100px;
  resize: vertical;
}

.modal-form select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238B9DB5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.modal-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.modal-submit {
  width: 100%;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy);
  border: none;
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-gold);
  margin-top: 0.5rem;
}

.modal-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px -10px rgba(201, 169, 98, 0.5);
}

.modal-features {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(201, 169, 98, 0.2);
}

.modal-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--white);
}

.modal-feature span {
  color: var(--success);
}

.modal-success {
  text-align: center;
  padding: 2rem;
  display: none;
}

.modal-success.show {
  display: block;
}

.modal-success .icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--success) 0%, #34D399 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 1.5rem;
}

.modal-success h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.modal-success p {
  color: var(--text-muted);
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--cream);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

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

.article-header {
  padding: 160px 5% 60px;
  background: linear-gradient(180deg, var(--navy-light) 0%, var(--navy) 100%);
}

.article-header-content {
  max-width: 800px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  margin-top: 90px;
  background: var(--navy);
}

.breadcrumb a {
  color: var(--white)!important;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.breadcrumb span {
  color: var(--white)!important;
}

.article-category {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 20px;
}

.article-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  color: var(--cream);
  line-height: 1.3;
  margin-bottom: 24px;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

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

.author-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.8rem;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-weight: 500;
  color: var(--cream);
  font-size: 0.9rem;
}

.author-title {
  font-size: 0.9rem;
  color: var(--white);
}

.article-details {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.article-details span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--white);
}

.featured-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
}

.single-featured-image {
  width: 50%;
  margin: 0 auto;
  padding: 1%;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
}

.featured-image-container {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.featured-image-container img {
  width: 100%;
}

.featured-image-placeholder {
  font-size: 4rem;
  color: rgba(255,255,255,0.3);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 5%;
}

.article-content {
  width: 100%;
}

.article-content p {
  font-size: 1.1rem;
  line-height: 1.9;
  margin-bottom: 24px;
  color: var(--cream);
}

.article-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--gold);
  margin: 48px 0 20px;
}

.article-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--gold-light);
  margin: 36px 0 16px;
}

.article-content ul,
        .article-content ol {
  margin: 24px 0;
  padding-left: 24px;
}

.article-content li {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 12px;
  color: var(--cream);
}

.article-content a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  transition: border-color 0.3s ease;
}

.article-content a:hover {
  border-color: var(--gold-light);
}

.article-content blockquote {
  background: var(--navy-light);
  border-left: 4px solid var(--gold);
  padding: 24px 28px;
  margin: 32px 0;
  border-radius: 0 12px 12px 0;
}

.article-content blockquote p {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--cream);
  margin: 0;
}

.highlight-box {
  background: var(--navy-light);
  border: 1px solid var(--slate);
  border-radius: 0 12px 12px 0;
  padding: 20px 24px;
  margin: 24px 0;
  border-left: 4px solid var(--gold);
}

.highlight-box p{
  color: var(--white)!important;
}

.highlight-box h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.highlight-box p {
  margin: 0;
  font-size: 1rem;
  color: var(--cream);
}

.article-sidebar {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.sidebar-section {
  background: var(--navy-light);
  border: 1px solid var(--slate);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 24px;
}

.sidebar-section h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
}

.toc-list {
  list-style: none;
}

.toc-list li {
  margin-bottom: 12px;
}

.toc-list a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  display: block;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.toc-list a:hover,
        .toc-list a.active {
  background: var(--slate);
  color: var(--gold);
}

.share-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.share-btn {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.share-btn.twitter {
  background: #1DA1F2;
  color: white;
}

.share-btn.linkedin {
  background: #0077B5;
  color: white;
}

.share-btn.facebook {
  background: #1877F2;
  color: white;
}

.share-btn.copy {
  background: var(--navy);
  border: 1px solid var(--slate);
  color: var(--cream);
}

.share-btn:hover {
  transform: translateY(-2px);
}

.share-btn.copy:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.related-post {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--slate);
}

.related-post:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.related-post-image {
  width: 70px;
  height: 70px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--slate) 0%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.related-post-content h5 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.4;
  margin-bottom: 4px;
}

.related-post-content h5 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.related-post-content h5 a:hover {
  color: var(--gold);
}

.related-post-content span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.author-box {
  background: var(--navy-light);
  border: 1px solid var(--slate);
  border-radius: 20px;
  padding: 32px;
  margin: 60px 0;
  display: flex;
  gap: 24px;
}

.author-box-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 1.5rem;
  font-weight: 600;
  flex-shrink: 0;
}

.author-box-content h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 4px;
}

.author-box-content .title {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.author-box-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0;
}

.article-tags {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--slate);
}

.article-tags span {
  font-weight: 600;
  color: var(--cream);
}

.tag {
  background: var(--navy-light);
  color: var(--text-muted);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.tag:hover {
  background: var(--gold);
  color: var(--navy);
}

.cta-section {
  background: var(--navy-light);
  border: 1px solid rgba(201, 169, 98, 0.3);
  border-radius: 20px;
  padding: 5rem 5%;
  text-align: center;
  margin: 60px 0;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.cta-section h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 12px;
}

.cta-section p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 24px;
}

.cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy);
  padding: 14px 32px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 25px rgba(201, 169, 98, 0.3);
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 35px rgba(201, 169, 98, 0.45);
}

.more-articles {
  padding: 80px 5%;
  background: var(--navy-light);
}

.more-articles-header {
  max-width: 1200px;
  margin: 0 auto 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.more-articles-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--cream);
}

.more-articles-header a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.more-articles-header a:hover {
  color: var(--gold-light);
}

.more-articles-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.more-article-card {
  background: var(--navy);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--slate);
  transition: all 0.3s ease;
}

.more-article-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.more-article-image {
  background: linear-gradient(135deg, var(--slate) 0%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

.more-article-image img {
  width: 100%;
}

.more-article-content {
  padding: 24px;
}

.more-article-content .category {
  display: inline-block;
  background: var(--slate);
  color: var(--gold);
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 12px;
}

.more-article-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.4;
}

.more-article-content h3 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.more-article-content h3 a:hover {
  color: var(--gold);
}

.page-header {
  padding: 160px 5% 80px;
  background: linear-gradient(180deg, var(--navy-light) 0%, var(--navy) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 16px;
}

.page-header p {
  font-size: 1.15rem;
  color: var(--white);
  max-width: 600px;
  margin: 0 auto;
  margin-bottom: 20px;
}

@keyframes floatSphere{


            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }


}

@keyframes rotateCube{


            0% { transform: rotateX(0deg) rotateY(0deg); }
            100% { transform: rotateX(360deg) rotateY(360deg); }


}

.blog-section {
  padding: 80px 5%;
  max-width: 1400px;
  margin: 0 auto;
}

.featured-post {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  margin-bottom: 80px;
  align-items: center;
}

.featured-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: linear-gradient(145deg, rgba(21, 34, 56, 0.8) 0%, rgba(10, 22, 40, 0.9) 100%);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.featured-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 16px;
  line-height: 1.3;
}

.featured-content h2 a {
  color: var(--dark-text);
  text-decoration: none;
  transition: color 0.3s ease;
}

.featured-content h2 a:hover {
  color: var(--gold);
}

.featured-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.featured-meta .category {
  background: rgba(201, 169, 98, 0.15);
  color: var(--gold);
  padding: 4px 12px;
  border-radius: 50px;
  font-weight: 500;
}

.featured-excerpt {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  transition: gap 0.3s ease;
}

.read-more:hover {
  gap: 12px;
}

.blog-grid-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
}

.blog-grid-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--cream);
}

.category-filter {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.filter-btn {
  background: var(--navy-light);
  border: 1px solid rgba(201, 169, 98, 0.3);
  padding: 8px 20px;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover,
        .filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.blog-card {
  background: linear-gradient(135deg, var(--navy-light) 0%, var(--slate) 100%);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(201, 169, 98, 0.2);
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.blog-card-image {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, rgba(201, 169, 98, 0.2) 0%, rgba(232, 213, 163, 0.15) 100%);
  position: relative;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-card-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.5;
}

.blog-card-content {
  padding: 24px;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.blog-card-meta .category {
  background: rgba(201, 169, 98, 0.15);
  color: var(--gold);
  padding: 4px 10px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.8rem;
}

.blog-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 12px;
  line-height: 1.4;
}

.blog-card h3 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-card h3 a:hover {
  color: var(--gold);
}

.blog-card-excerpt {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid rgba(201, 169, 98, 0.2);
}

.author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.read-time {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 90px;
}

.pagination a,
        .pagination span {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.pagination a {
  background: var(--navy-light);
  border: 1px solid rgba(201, 169, 98, 0.3);
  color: var(--text-muted);
}

.pagination a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.pagination .active {
  background: var(--gold);
  color: var(--navy);
  border: none;
}

.pagination .dots {
  border: none;
  background: none;
  color: var(--text-muted);
}

.newsletter-section {
  background: linear-gradient(145deg, rgba(21, 34, 56, 0.95) 0%, rgba(10, 22, 40, 0.98) 100%);
  border-top: 1px solid rgba(201, 169, 98, 0.2);
  border-bottom: 1px solid rgba(201, 169, 98, 0.2);
  padding: 80px 5%;
  margin-top: 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 169, 98, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.newsletter-content {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.newsletter-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 16px;
}

.newsletter-content p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 32px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 16px 24px;
  border: 1px solid var(--slate);
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  background: var(--navy);
  color: var(--cream);
}

.newsletter-form input::placeholder {
  color: var(--text-muted);
}

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

.newsletter-form button {
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy);
  border: none;
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 25px rgba(201, 169, 98, 0.3);
}

.newsletter-form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 35px rgba(201, 169, 98, 0.45);
}

@keyframes floatSphere{


            0%, 100% { transform: translateY(0) scale(1); }
            50% { transform: translateY(-20px) scale(1.05); }


}

@keyframes rotateCube{


            0% { transform: rotateX(0deg) rotateY(0deg); }
            100% { transform: rotateX(360deg) rotateY(360deg); }


}

@keyframes rotateRing{


            0% { transform: rotateX(0deg) rotateY(0deg); }
            100% { transform: rotateX(360deg) rotateY(360deg); }


}

@keyframes pulseDot{


            0%, 100% { transform: scale(1); opacity: 0.3; }
            50% { transform: scale(1.5); opacity: 0.8; }


}

.contact-section {
  padding: 5rem 5%;
  background: var(--cream);
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
}

.contact-info h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: 1rem;
}

.contact-info > p {
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.info-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem;
  background: linear-gradient(145deg, rgba(21, 34, 56, 0.8) 0%, rgba(10, 22, 40, 0.9) 100%);;
  border-radius: 16px;
  transition: all 0.3s ease;
  border: 1px solid rgba(201, 169, 98, 0.1);
}

.info-card:hover {
  /* background: linear-gradient(135deg, var(--slate) 0%, var(--navy-light) 100%); */
  transform: translateX(10px);
  border-color: var(--gold);
}

.info-icon {
  width: 50px;
  height: 50px;
  background: rgba(201, 169, 98, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  /* box-shadow: var(--shadow-gold); */
}

.info-content h4 {
  font-size: 1.1rem;
  color: var(--cream);
  margin-bottom: 0.25rem;
}

.info-content p {
  color: var(--white);
  font-size: 0.95rem;
}

.info-content a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.info-content a:hover {
  color: var(--gold-light);
}

.social-section {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--slate);
}

.social-section h4 {
  font-size: 1rem;
  color: var(--cream);
  margin-bottom: 1rem;
}

.social-link {
  width: 45px;
  height: 45px;
  background: var(--navy-light);
  border: 1px solid var(--slate);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.contact-form-wrapper {
  background: var(--cream);
  border: 1px solid var(--gold);
  border-radius: 24px;
  padding: 2.5rem;
  /* box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3),
                        0 2px 4px -2px rgba(0, 0, 0, 0.2); */
}

.contact-form-wrapper h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: 0.5rem;
}

.contact-form-wrapper > p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: 0.5rem;
}

.form-group label .required {
  color: var(--danger);
}

.form-group input,
        .form-group select,
        .form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--navy);
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  color: var(--dark-text);
  background: var(--cream);
  transition: all 0.3s ease;
}

.form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.2);
}

.form-group input::placeholder,
        .form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238B9DB5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.checkbox-group input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--gold);
}

.checkbox-group label {
  font-size: 0.9rem;
  color: var(--dark-text);
  cursor: pointer;
}

.checkbox-group label a {
  color: var(--gold);
  text-decoration: none;
}

.checkbox-group label a:hover {
  text-decoration: underline;
}

.submit-btn {
  width: 100%;
  padding: 1rem 2rem;
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  /* box-shadow: var(--shadow-gold); */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px -10px rgba(201, 169, 98, 0.5);
}

.map-section {
  padding: 5rem 5%;
  background: var(--cream);
}

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

.map-wrapper {
  border-radius: 20px;
  overflow: hidden;
  /* box-shadow: var(--shadow-lg); */
  /* border: 1px solid var(--slate); */
}

.map-placeholder {
  background: var(--navy-light);
  height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.map-placeholder .icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
}

.map-placeholder h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.map-placeholder p {
  color: var(--white);
  max-width: 400px;
}

.hours-section {
  padding: 5rem 5%;
  background: var(--cream);
}

.hours-grid {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.hours-card {
  background: linear-gradient(145deg, rgba(21, 34, 56, 0.8) 0%, rgba(10, 22, 40, 0.9) 100%);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid var(--slate);
}

.hours-card:hover {
  /* background: var(--slate); */
  transform: translateY(-5px);
  border-color: var(--gold);
}

.hours-card .icon {
  width: 60px;
  height: 60px;
  background: rgba(201, 169, 98, 0.15);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1.25rem;
  /* box-shadow: var(--shadow-gold); */
}

.hours-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 1rem;
}

.hours-list {
  list-style: none;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  color: var(--white);
  font-size: 0.95rem;
}

.hours-list li span:last-child {
  color: var(--gold);
  font-weight: 600;
}

.success-message {
  display: none;
  background: var(--success);
  color: var(--white);
  padding: 1rem;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  text-align: center;
  font-weight: 500;
}

.success-message.show {
  display: block;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown{


            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }


}

@keyframes rotateCube{


            0% { transform: rotateX(0deg) rotateY(0deg); }
            100% { transform: rotateX(360deg) rotateY(360deg); }


}

@keyframes floatSphere{


            0%, 100% { transform: translateY(0) scale(1); }
            50% { transform: translateY(-20px) scale(1.05); }


}

@keyframes pulseDot{


            0%, 100% { transform: scale(1); opacity: 0.3; }
            50% { transform: scale(1.5); opacity: 0.8; }


}

.features-section {
  padding: 5rem 5%;
  background: var(--cream);
}

.features-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-card {
  background: var(--cream);
  border: 1px solid rgba(201, 169, 98, 0.2);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2),
                        0 2px 4px -2px rgba(0, 0, 0, 0.15);
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: 0 20px 40px -10px rgba(201, 169, 98, 0.2),
                        0 10px 20px -5px rgba(0, 0, 0, 0.2);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: rgba(201, 169, 98, 0.15);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
}

.feature-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.tech-section {
  padding: 5rem 5%;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.tech-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.tech-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: 1.5rem;
}

.tech-content p {
  color: var(--white);
  margin-bottom: 2rem;
}

.tech-list {
  list-style: none;
}

.tech-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding: 1rem;
  background: linear-gradient(145deg, rgba(21, 34, 56, 0.8) 0%, rgba(10, 22, 40, 0.9) 100%);
  border-radius: 12px;
  border: 1px solid rgba(201, 169, 98, 0.2);
  transition: all 0.3s ease;
}

.tech-list li:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}

.tech-list .icon {
  width: 40px;
  height: 40px;
  background: var(--cream);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.tech-list h4 {
  font-size: 1rem;
  color: var(--cream);
  margin-bottom: 0.25rem;
}

.tech-list p {
  font-size: 0.9rem;
  margin: 0;
}

.tech-visual {
  position: relative;
}

.tech-card {
  background: linear-gradient(145deg, rgba(21, 34, 56, 0.8) 0%, rgba(10, 22, 40, 0.9) 100%);
  border: 1px solid rgba(201, 169, 98, 0.2);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow-xl);
  transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
  transition: transform 0.5s ease;
}

.tech-card:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.tech-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(201, 169, 98, 0.2);
}

.tech-card-header .logo-small {
  width: 40px;
  height: 40px;
  background: var(--gold);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 0.8rem;
}

.tech-card-header h4 {
  color: var(--cream);
  font-size: 1.1rem;
}

.dashboard-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.stat-box {
  background: rgba(10, 22, 40, 0.6);
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
}

.stat-box .value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold);
}

.stat-box .label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.benefits-section {
  padding: 5rem 5%;
  background: var(--cream);
}

.benefits-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.benefit-card {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem;
  background: linear-gradient(145deg, rgba(21, 34, 56, 0.8) 0%, rgba(10, 22, 40, 0.9) 100%);
  border-radius: 16px;
  transition: all 0.3s ease;
  border: 1px solid rgba(201, 169, 98, 0.2);
}

.benefit-card:hover {
  background: linear-gradient(145deg, rgba(30, 58, 95, 0.8) 0%, rgba(21, 34, 56, 0.9) 100%);
  transform: translateX(10px);
  border-color: var(--gold);
}

.benefit-icon {
  width: 60px;
  height: 60px;
  background: rgba(201, 169, 98, 0.15);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  /* box-shadow: var(--shadow-gold); */
}

.benefit-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.benefit-content p {
  color: var(--white);
  font-size: 0.95rem;
}

.integrations-section {
  padding: 5rem 5%;
  background: var(--cream);
}

.integrations-logos {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.integration-logo {
  width: 120px;
  height: 80px;
  background: linear-gradient(145deg, rgba(21, 34, 56, 0.8) 0%, rgba(10, 22, 40, 0.9) 100%);
  border: 1px solid rgba(201, 169, 98, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--cream);
  font-size: 0.9rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.integration-logo:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-5px);
}

.faq-section {
  padding: 5rem 5%;
  background: var(--cream);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid rgba(201, 169, 98, 0.2);
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
  background: rgba(201, 169, 98, 0.15);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(201, 169, 98, 0.4);
  /* box-shadow: var(--shadow-md); */
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  text-align: left;
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark-text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: var(--gold);
}

.faq-question .icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(201, 169, 98, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--gold);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question .icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.cta-container h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 1rem;
}

.cta-container p {
  color: var(--white);
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-container .btn-primary {
  background: var(--gold);
  color: var(--white);
  /* box-shadow: 0 4px 25px rgba(201, 169, 98, 0.3); */
}

@keyframes floatSphere{


            0%, 100% { transform: translateY(0) scale(1); }
            50% { transform: translateY(-20px) scale(1.05); }


}

@keyframes rotateRing{


            0% { transform: rotateX(0deg) rotateY(0deg); }
            100% { transform: rotateX(360deg) rotateY(360deg); }


}

@keyframes rotatePyramid{


            0% { transform: rotateY(0deg); }
            100% { transform: rotateY(360deg); }


}

@keyframes pulseDot{


            0%, 100% { transform: scale(1); opacity: 0.3; }
            50% { transform: scale(1.5); opacity: 0.8; }


}

.pricing-section {
  padding: 5rem 5%;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.pricing-icon {
  width: 60px;
  height: 60px;
  background: rgba(201, 169, 98, 0.15);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin: 0 auto 1.5rem;
}

.pricing-card.featured .pricing-icon {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
}

.pricing-features li.disabled {
  color: var(--text-muted);
  opacity: 0.6;
}

.pricing-features li.disabled::before {
  content: '✕';
  background: rgba(139, 157, 181, 0.1);
  color: var(--text-muted);
}

.comparison-section {
  padding: 5rem 5%;
  background: var(--cream);
}

.comparison-table {
  max-width: 1000px;
  margin: 0 auto;
  background: var(--navy-light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(201, 169, 98, 0.2);
}

.comparison-table table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table th,
        .comparison-table td {
  padding: 1.25rem 1.5rem;
  text-align: center;
  border-bottom: 1px solid rgba(201, 169, 98, 0.15);
  color: var(--cream);
}

.comparison-table th:first-child,
        .comparison-table td:first-child {
  text-align: left;
  font-weight: 500;
}

.comparison-table thead th {
  background: rgba(201, 169, 98, 0.1);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--cream);
}

.comparison-table thead th.featured-col {
  background: var(--gold);
  color: var(--navy);
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.comparison-table tbody tr:hover {
  background: rgba(201, 169, 98, 0.05);
}

.check-icon {
  color: var(--success);
  font-size: 1.2rem;
}

.cross-icon {
  color: var(--text-muted);
  font-size: 1rem;
}

.guarantee-section {
  padding: 4rem 5%;
  background: var(--cream);
}

.guarantee-box {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2.5rem;
  background: rgba(201, 169, 98, 0.1);
  border-radius: 20px;
  border: 1px solid rgba(201, 169, 98, 0.3);
}

.guarantee-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--success) 0%, #34D399 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  flex-shrink: 0;
}

.guarantee-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--danger);
  margin-bottom: 0.5rem;
}

.guarantee-content p {
  color: var(--text-muted);
}

.last-updated {
  display: inline-block;
  background: var(--navy-light);
  border: 1px solid var(--gold);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  color: var(--white);
  margin-top: 1rem;
}

.policy-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 20px;
}

.toc {
  background: var(--navy-light);
  border: 1px solid var(--slate);
  border-radius: 16px;
  padding: 28px 32px;
  margin-bottom: 50px;
}

.toc h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--gold);
}

.toc ol {
  list-style: decimal;
  padding-left: 24px;
  margin: 0;
  columns: 2;
  column-gap: 40px;
}

.toc li {
  margin-bottom: 12px;
  color: var(--cream);
  font-size: 0.95rem;
  break-inside: avoid;
}

.toc a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
}

.toc a:hover {
  text-decoration: underline;
  color: var(--gold-light);
}

.policy-section {
  margin-bottom: 48px;
}

.policy-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--slate);
}

.policy-section h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark-text);
  margin: 24px 0 12px;
}

.policy-section p {
  margin-bottom: 16px;
  color: var(--text-muted);
  line-height: 1.8;
}

.policy-section ul {
  list-style: disc;
  margin: 16px 0 24px 24px;
}

.policy-section li {
  margin-bottom: 10px;
  color: var(--text-muted);
  line-height: 1.7;
}

.policy-section a {
  color: var(--gold);
  text-decoration: none;
}

.policy-section a:hover {
  text-decoration: underline;
  color: var(--gold-light);
}

.policy-section ul, .policy-section ol {
  margin: 1rem 0 1.5rem 1.5rem;
}

.guarantee-banner {
  background: linear-gradient(135deg, var(--success) 0%, #34D399 100%);
  color: var(--white);
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  margin-bottom: 3rem;
  box-shadow: 0 10px 40px -10px rgba(16, 185, 129, 0.4);
}

.guarantee-banner .icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.guarantee-banner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.guarantee-banner p {
  opacity: 0.9;
  max-width: 500px;
  margin: 0 auto;
}

.refund-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.2), 0 2px 4px -2px rgba(0,0,0,0.2);
}

.refund-table th, .refund-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid #AFAFAF;
}

.refund-table th {
  background: #AFAFAF;
  font-weight: 600;
  color: var(--white);
}

.refund-table td {
  background: #EFEFEF;
  color: var(--text-muted);
}

.refund-table tr:last-child td {
  border-bottom: none;
}

.refund-table tr:hover td {
  background: #AFAFAF;
}

.steps-list {
  counter-reset: step;
  list-style: none;
  margin: 1.5rem 0;
  padding: 0;
}

.steps-list li {
  position: relative;
  padding-left: 3.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-muted);
}

.steps-list li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

@keyframes floatSphere{


            0%, 100% { transform: translateY(0) scale(1); }
            50% { transform: translateY(-20px) scale(1.05); }


}

@keyframes rotateRing{


            0% { transform: rotateX(0deg) rotateY(0deg); }
            100% { transform: rotateX(360deg) rotateY(360deg); }


}

@keyframes pulseDot{


            0%, 100% { transform: scale(1); opacity: 0.3; }
            50% { transform: scale(1.5); opacity: 0.8; }


}

.services-detail {
  padding: 5rem 5%;
  background: var(--cream);
}

.service-detail-card {
  max-width: 1200px;
  margin: 0 auto 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 3rem;
  background: var(--cream);
  border: 1px solid rgba(201, 169, 98, 0.2);
  border-radius: 24px;
  /* box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2),
                        0 2px 4px -2px rgba(0, 0, 0, 0.15); */
  transition: all 0.4s ease;
}

.service-detail-card:hover {
  box-shadow: 0 20px 40px -10px rgba(201, 169, 98, 0.2),
                        0 10px 20px -5px rgba(0, 0, 0, 0.2);
  transform: translateY(-5px);
  border-color: rgba(201, 169, 98, 0.4);
}

.service-detail-card:nth-child(even) {
  direction: rtl;
}

.service-detail-card:nth-child(even) > * {
  direction: ltr;
}

.service-detail-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: 1rem;
}

.service-detail-content p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.service-detail-content ul {
  list-style: none;
  margin-bottom: 2rem;
}

.service-detail-content ul li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  color: var(--text-muted);
}

.service-detail-content ul li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: rgba(201, 169, 98, 0.2);
  color: var(--gold);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
}

/* .service-visual {
  background: var(--navy-light);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  position: relative;
  overflow: hidden;
} */

.service-icon-large {
  font-size: 5rem;
  position: relative;
  z-index: 2;
  width: 90px;
}

/* .service-visual::before {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, rgba(201, 169, 98, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
} */

.process-section {
  padding: 5rem 5%;
  background: var(--navy-light);
}

.process-section .section-title{
  color: var(--white);
}

.process-section .section-subtitle{
  color: var(--white);
}

.process-steps {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step::after {
  content: '';
  position: absolute;
  top: 35px;
  right: -1rem;
  width: calc(100% - 70px);
  height: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(201, 169, 98, 0.2));
}

.process-step:last-child::after {
  display: none;
}

.step-number {
  width: 70px;
  height: 70px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 2;
  /* box-shadow: var(--shadow-gold); */
}

.process-step h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 0.9rem;
  color: var(--white);
}

.cta-container .btn-primary:hover {
  transform: translateY(-3px);
  /* box-shadow: 0 8px 35px rgba(201, 169, 98, 0.45); */
}

@media (min-width: 1200px) {
  .hero-3d-card {
    display: none;
  }
}

@media (max-width: 1024px) {
  .features-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .feature-card-3d {
    transform: none;
  }

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

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

  .nav-cta {
    display: none;
  }

  .mobile-menu {
    display: flex;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 2rem;
  }

  .stat {
    flex: 1 1 120px;
  }

  .pricing-card.featured {
    transform: none;
  }

  .pricing-card.featured:hover {
    transform: translateY(-10px);
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .testimonial-text {
    font-size: 1rem;
  }

  .ledger-header,
                .ledger-row {
    font-size: 0.7rem;
    gap: 0.5rem;
  }

  .cta-container {
    padding: 3rem 2rem;
  }
}

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

  .modal-features {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
}

@media (max-width: 1024px) {
  .article-sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

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

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

@media (max-width: 768px) {
  .nav-links, .nav-cta {
    display: none;
  }

  .mobile-menu {
    display: flex;
  }

  .article-header {
    padding: 130px 5% 50px;
  }

  .article-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .article-sidebar {
    grid-template-columns: 1fr;
  }

  .author-box {
    flex-direction: column;
    text-align: center;
  }

  .more-articles-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 768px) {
  .nav-links, .nav-cta {
    display: none;
  }

  .mobile-menu {
    display: flex;
  }

  .page-header {
    padding: 130px 5% 60px;
  }

  .featured-post {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .featured-content h2 {
    font-size: 1.8rem;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-grid-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .newsletter-form {
    flex-direction: column;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 1024px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hours-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .nav-links, .nav-cta {
    display: none;
  }

  .mobile-menu {
    display: flex;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tech-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .tech-card {
    transform: none;
  }

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

@media (max-width: 768px) {
  .nav-links, .nav-cta {
    display: none;
  }

  .mobile-menu {
    display: flex;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .pricing-card.featured {
    transform: none;
  }

  .pricing-card.featured:hover {
    transform: translateY(-10px);
  }

  .comparison-table {
    overflow-x: auto;
  }

  .guarantee-box {
    flex-direction: column;
    text-align: center;
  }

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

@media (max-width: 768px) {
  .nav-links, .nav-cta {
    display: none;
  }

  .mobile-menu {
    display: flex;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta {
    display: none;
  }

  .mobile-menu {
    display: flex;
  }

  .page-header {
    padding: 130px 5% 60px;
  }

  .page-header h1 {
    font-size: 2.2rem;
  }

  .toc ol {
    columns: 1;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta {
    display: none;
  }

  .mobile-menu {
    display: flex;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .refund-table {
    font-size: 0.9rem;
  }

  .refund-table th, .refund-table td {
    padding: 0.75rem;
  }
}

@media (max-width: 1024px) {
  .service-detail-card {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .service-detail-card:nth-child(even) {
    direction: ltr;
  }

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

  .process-step::after {
    display: none;
  }

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

@media (max-width: 768px) {
  .nav-links, .nav-cta {
    display: none;
  }

  .mobile-menu {
    display: flex;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta {
    display: none;
  }

  .mobile-menu {
    display: flex;
  }

  .page-header {
    padding: 130px 5% 60px;
  }

  .page-header h1 {
    font-size: 2.2rem;
  }

  .toc ol {
    columns: 1;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
