
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --gold: #C9A84C; --gold-light: #E8C96E; --gold-pale: #F5E6B8;
    --gold-dark: #8B6914; --gold-muted: #A8892A;
    --black: #0A0A0A; --black-2: #111111; --black-3: #1A1A1A;
    --black-4: #242424; --black-5: #2E2E2E;
    --white: #FAFAF8; --text-muted: #888880;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Cormorant Garamond', Georgia, serif;
    --font-ui: 'Montserrat', sans-serif;
  }
  html { scroll-behavior: smooth; }
  body { background: var(--black); color: var(--white); font-family: var(--font-body); font-size: 18px; line-height: 1.7; min-height: 100vh; }

  /* NAV */
  /* nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 5%; height: 80px;
    background: rgba(10,10,10,0.92); backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201,168,76,0.2);
  } */
  .logo { font-family: var(--font-display); font-size: 26px; font-weight: 700; color: var(--gold-light); letter-spacing: 3px; text-transform: uppercase; text-decoration: none; }
  .logo span { color: var(--white); font-weight: 400; }
  .nav-links { display: flex; gap: 40px; list-style: none; }
  .nav-links a { font-family: var(--font-ui); font-size: 11px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--text-muted); text-decoration: none; transition: color 0.3s; position: relative; }
  .nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 1px; background: var(--gold); transform: scaleX(0); transition: transform 0.3s; }
  .nav-links a:hover, .nav-links a.active { color: var(--gold-light); }
  /* .nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); } */
  .nav-cta { font-family: var(--font-ui); font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--black); background: var(--gold); border: none; padding: 10px 28px; cursor: pointer; text-decoration: none; transition: background 0.3s, transform 0.2s; }
  .nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }
/* Cursor Shade Only */
/* Cursor Shade Only - Arrow Visible */
.cursor-shade {
    position: fixed;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(201,168,76,0.28) 10%, rgba(201,168,76,0.12) 45%, transparent 75%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    filter: blur(18px);
    opacity: 0.55;
    mix-blend-mode: screen;
}

/* Do NOT hide default cursor */
body {
    cursor: default;
}

/* Luxury Banner Section */
.luxury-banner {
  position: relative;
  padding: 140px 5% 100px;
  background: var(--black);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.luxury-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(201,168,76,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.banner-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.banner-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 68px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.8rem;
}

.gold-text {
  color: var(--gold-light);
}

.pricing-section{
    padding:120px 20px;
    background:#000;
    position:relative;
    overflow:hidden;
    text-align:center;
}

/* Background Glow */
.pricing-section::before {
	content: "";
	position: absolute;
	width: 700px;
	height: 700px;
	background: radial-gradient(circle, rgba(41, 40, 37, 0.25) 0%, rgba(76, 64, 33, 0.08) 40%, transparent 70%);
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	z-index: 0;
}

.pricing-title{
    font-size:4rem;
    font-weight:800;
    margin-bottom:25px;
    background:linear-gradient(
        180deg,
        #fff,
        #E8C96E,
        #b8860b
    );
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    position:relative;
    z-index:2;
}

/* =========================
   LUXURY TIMELINE SECTION
========================= */

.luxury-roadmap{
    position:relative;
    padding:140px 5%;
    background:#050505;
    overflow:hidden;
}

.luxury-roadmap::before{
    content:'';
    position:absolute;
    width:900px;
    height:900px;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
    background:
    radial-gradient(circle,
    rgba(201,168,76,.12) 0%,
    rgba(201,168,76,.04) 40%,
    transparent 70%);
    filter:blur(40px);
}

.roadmap-header{
    text-align:center;
    margin-bottom:120px;
    position:relative;
    z-index:2;
}

.roadmap-header h2{
    font-family:var(--font-display);
    font-size:clamp(40px,5vw,65px);
    color:#fff;
    line-height:1.2;
}

.roadmap-header h2 span{
    color:var(--gold-light);
}
.skills-grid-wrapper{
    position:relative;
    max-width:1100px;
    margin:0 auto;
    padding:80px 0;
}

.center-brain{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    z-index:999;
    pointer-events:none;
}

.center-brain::before{
    content:'';
    position:absolute;
    width:350px;
    height:350px;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
    background:radial-gradient(
        circle,
        rgba(201,168,76,.18),
        transparent 70%
    );
    filter:blur(30px);
    z-index:-1;
}

.center-brain img{
    width:220px;
    display:block;
    filter:
        drop-shadow(0 0 25px rgba(201,168,76,.5))
        brightness(1.15);
    animation:brainFloat 4s ease-in-out infinite;
}

@keyframes brainFloat{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-12px);
    }
}

@media(max-width:991px){

    .center-brain{
        position:relative;
        top:auto;
        left:auto;
        transform:none;
        margin:30px auto;
    }

    .skills-grid-wrapper > div:last-child{
        grid-template-columns:1fr !important;
    }

    .center-brain img{
        width:160px;
    }
}
.timeline{
    max-width:1300px;
    margin:auto;
    position:relative;
}

.timeline-line{
    position:absolute;
    left:50%;
    top:0;
    width:3px;
    height:100%;
    transform:translateX(-50%);
    background:
    linear-gradient(
        to bottom,
        rgba(201,168,76,.1),
        #C9A84C,
        rgba(201,168,76,.1)
    );
    border-radius:20px;
}

.timeline-item{
    position:relative;
    display:flex;
    align-items:center;
    margin-bottom:140px;
}

.timeline-item.left{
    justify-content:flex-start;
}

.timeline-item.right{
    justify-content:flex-end;
}

.timeline-card{
    width:420px;
    background:
    linear-gradient(
        145deg,
        rgba(22,22,22,.95),
        rgba(10,10,10,.95)
    );

    border:1px solid rgba(201,168,76,.15);
    border-radius:24px;
    padding:40px;
    position:relative;

    backdrop-filter:blur(12px);

    box-shadow:
    0 0 30px rgba(201,168,76,.08),
    inset 0 0 30px rgba(201,168,76,.03);
}

.timeline-card:hover{
    transform:translateY(-6px);
    transition:.4s;
    border-color:rgba(201,168,76,.35);
}

.icon-box{
    width:70px;
    height:70px;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:25px;

    background:
    linear-gradient(
    135deg,
    rgba(201,168,76,.2),
    rgba(201,168,76,.05));

    border:1px solid rgba(201,168,76,.25);

    font-size:30px;
}

.timeline-card h3{
    color:var(--gold-light);
    font-size:30px;
    margin-bottom:18px;
    font-family:var(--font-display);
}

.timeline-card p{
    color:#c9c9c9;
    line-height:1.9;
    font-size:17px;
}

.timeline-number{
    position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);

    width:62px;
    height:62px;

    background:#fff;
    color:#000;

    border:4px solid #C9A84C;
    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    font-weight:800;
    font-size:22px;

    z-index:10;

    box-shadow:
    0 0 20px rgba(201,168,76,.6);
}

@media(max-width:991px){

.timeline-line{
    left:30px;
}

.timeline-item{
    justify-content:flex-start !important;
    padding-left:90px;
}

.timeline-number{
    left:30px;
}

.timeline-card{
    width:100%;
}
}
.pricing-subtitle{
    max-width:900px;
    margin:auto;
    color:#d9d9d9;
    font-size:1.2rem;
    line-height:1.8;
    position:relative;
    z-index:2;
}

.price-card{
    width:700px;
    max-width:100%;
    margin:70px auto 0;
    background:rgba(12,12,12,.95);
    border:2px solid #d4af37;
    border-radius:25px;
    padding:50px 30px;
    position:relative;
    z-index:2;

    box-shadow:
        0 0 15px rgba(212,175,55,.5),
        0 0 40px rgba(212,175,55,.3),
        inset 0 0 20px rgba(212,175,55,.15);
}

.old-price{
    font-size:4rem;
    font-weight:800;
    color:#999;
    margin-bottom:20px;
}

.old-price span{
    text-decoration:line-through;
    text-decoration-color:#d4af37;
    text-decoration-thickness:4px;
}

.offer-text{
    color:#f5f5f5;
    font-size:1.4rem;
    margin-bottom:25px;
}

.new-price{
    font-size:5rem;
    font-weight:900;
    color:#ffd700;
    text-shadow:
        0 0 10px #ffd700,
        0 0 30px #d4af37;
}

.enroll-btn {
	display: inline-block;
	margin-top: 30px;
	padding: 15px 45px;
	background: linear-gradient( 135deg, #a99d5e, #b8860b );
	color: #000;
	font-weight: 700;
	text-decoration: none;
	border-radius: 50px;
	transition: .3s;
}

.enroll-btn:hover{
    transform:translateY(-4px);
    box-shadow:0 0 25px rgba(255,215,0,.7);
}

.banner-subtitle {
  font-family: var(--font-body);
  font-size: 19px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 2.5rem;
}

.banner-btn {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 18px 52px;
  border-radius: 0;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
}

.banner-btn:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(201,168,76,0.25);
}

.banner-image-container {
  position: relative;
}

.banner-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.6);
  transition: transform 0.6s ease;
}

.banner-image-container::after {
  content: '';
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle, rgba(201,168,76,0.15) 0%, transparent 70%);
  border-radius: 50%;
  z-index: -1;
  filter: blur(25px);
  opacity: 0.7;
}

.banner-image:hover {
  transform: scale(1.03);
}

/* Long Premium Button */
.long-btn {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--black);
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  padding: 22px 68px;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(201, 168, 76, 0.25);
  position: relative;
  overflow: hidden;
}

.long-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(201, 168, 76, 0.35);
  background: linear-gradient(90deg, var(--gold-light), #E8C96E);
}
.premium-modules{
    max-width:1200px;
    margin:auto;
    padding:120px 20px;
}

.module-box {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 35px;
	background: rgba(34, 34, 34, 0.95);
	border: 1px solid rgba(201,168,76,.15);
	border-radius: 22px;
	padding: 35px;
	margin-bottom: 35px;
	box-shadow: 0 0 30px rgba(128,0,255,.08), inset 0 0 20px rgba(255,255,255,.02);
}

.module-content{
    flex:1;
}

.module-content h3{
    color:var(--gold-light);
    font-size:28px;
    margin-bottom:20px;
}

.module-content p{
    color:#ddd;
    line-height:1.9;
    margin-bottom:15px;
}

.module-video{
    width:320px;
    position:relative;
    flex-shrink:0;
}

.module-video video{
    width:100%;
    border-radius:14px;
    display:block;
}

.play-btn {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 70px;
	height: 70px;
	border: none;
	border-radius: 50%;
	background: #E8C96E;
	color: #fff;
	font-size: 28px;
	cursor: pointer;
	box-shadow: 0 0 25px rgba(192,132,252,.5);
}

.play-btn:hover{
    transform:translate(-50%,-50%) scale(1.08);
}

@media(max-width:991px){

.module-box{
    flex-direction:column-reverse;
}

.module-video{
    width:100%;
}

}

.long-btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 40%;
  height: 200%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.4), transparent);
  transform: skewX(-25deg);
  transition: 0.6s;
}

.long-btn:hover::after {
  left: 120%;
}

/* Updated Navbar with Better Spacing */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  padding: 20px 5%;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 400px;                    /* Space between sections */
}

.nav-container > div:first-child {
  flex-shrink: 0;               /* Logo doesn't shrink */
}

/* Menu Pill */

.nav-pill {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(201, 168, 76, 0.2);
	border-radius: 50px;
	padding: 12px 16px;
	backdrop-filter: blur(10px);
	flex: 1;
	max-width: 620px;
	margin: 0 auto;
}

.skills-grid-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 400px;
    background: radial-gradient(circle, rgba(232,201,110,0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    z-index: 1;
}
.center-brain {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(-50%, -50%) translateY(0px); }
    50% { transform: translate(-50%, -50%) translateY(-15px); }
}
@media (max-width: 768px) {
    .center-brain {
        position: relative !important; /* Move below stack on mobile */
        top: 0 !important;
        left: 0 !important;
        transform: none !important;
        width: 200px !important;
        margin: 0 auto 40px !important;
    }
    
    .skills-grid-wrapper > div[style*="grid"] {
        grid-template-columns: 1fr !important; /* Stack vertically on mobile */
        gap: 30px !important;
    }
}
.nav-links {
  display: flex;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: center;
}

.nav-links a {
  font-family: var(--font-ui);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  padding: 10px 22px;
  border-radius: 30px;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.skills-slideshow {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.slides-container {
    display: flex;
    gap: 25px;
    width: max-content;
    animation: infiniteScroll 15s linear infinite;
}

@keyframes infiniteScroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-light);
  background: rgba(201, 168, 76, 0.12);
}

/* CTA Button */
.nav-cta {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 14px 34px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}
/* .hero {
  position: relative;
  overflow: hidden;
} */

.video-container {
  border: 1px solid rgba(201, 168, 76, 0.2);
}

.hero-video {
  transition: transform 0.8s ease;
}

.video-container:hover .hero-video {
  transform: scale(1.04);
}

.video-overlay {
  mix-blend-mode: screen;
}
/* ============================
   READ BEFORE DECIDING SECTION
============================ */
.read-before-section {
    position: relative;
    padding: 140px 5%;
    background: #050505;
    overflow: hidden;
}

.read-before-section::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(
        circle,
        rgba(201, 168, 76, 0.10) 0%,
        rgba(201, 168, 76, 0.03) 40%,
        transparent 70%
    );
    filter: blur(60px);
    z-index: 0;
}

.read-before-header {
    text-align: center;
    margin-bottom: 100px;
    position: relative;
    z-index: 2;
}

.read-before-header h2 {
    font-family: var(--font-display);
    font-size: clamp(38px, 5vw, 60px);
    font-weight: 700;
    line-height: 1.2;
    background: linear-gradient(180deg, #fff, #E8C96E, #b8860b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.zigzag-timeline {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
}

/* Center Vertical Line */
.zigzag-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    transform: translateX(-50%);
    background: linear-gradient(
        to bottom,
        transparent,
        rgba(201, 168, 76, 0.4) 8%,
        #C9A84C 50%,
        rgba(201, 168, 76, 0.4) 92%,
        transparent
    );
    box-shadow: 0 0 20px rgba(201, 168, 76, 0.4);
}

.zigzag-item {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 100px;
    min-height: 220px;
}

.zigzag-item:last-child {
    margin-bottom: 0;
}

.zigzag-item.right {
    justify-content: flex-end;
}

.zigzag-item.left {
    justify-content: flex-start;
}

/* Glowing Dot on Line */
.zigzag-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 18px;
    height: 18px;
    background: #fff;
    border: 3px solid #C9A84C;
    border-radius: 50%;
    z-index: 5;
    box-shadow:
        0 0 0 6px rgba(201, 168, 76, 0.15),
        0 0 25px rgba(201, 168, 76, 0.8),
        0 0 45px rgba(201, 168, 76, 0.5);
    animation: dotPulse 2.5s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% {
        box-shadow:
            0 0 0 6px rgba(201, 168, 76, 0.15),
            0 0 25px rgba(201, 168, 76, 0.8),
            0 0 45px rgba(201, 168, 76, 0.5);
    }
    50% {
        box-shadow:
            0 0 0 10px rgba(201, 168, 76, 0.08),
            0 0 35px rgba(201, 168, 76, 1),
            0 0 60px rgba(201, 168, 76, 0.6);
    }
}

/* Card Styles */
.zigzag-card {
    width: 540px;
    max-width: 45%;
    background: linear-gradient(
        145deg,
        rgba(20, 20, 20, 0.95),
        rgba(8, 8, 8, 0.95)
    );
    border: 1px solid rgba(201, 168, 76, 0.18);
    border-radius: 20px;
    padding: 40px 45px;
    position: relative;
    backdrop-filter: blur(10px);
    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.6),
        inset 0 0 30px rgba(201, 168, 76, 0.03);
    transition: all 0.4s ease;
}

.zigzag-card:hover {
    transform: translateY(-6px);
    border-color: rgba(201, 168, 76, 0.45);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.7),
        0 0 40px rgba(201, 168, 76, 0.15),
        inset 0 0 30px rgba(201, 168, 76, 0.06);
}

/* Card Corner Accent */
.zigzag-card::before {
    content: '';
    position: absolute;
    top: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #C9A84C, transparent);
}

.zigzag-item.right .zigzag-card::before {
    left: 30px;
}

.zigzag-item.left .zigzag-card::before {
    right: 30px;
}

.zigzag-card h3 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 20px;
    line-height: 1.3;
}

.zigzag-card p {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.85;
    color: #c5c5c5;
    font-weight: 300;
}

.zigzag-card .card-number {
    position: absolute;
    top: 25px;
    font-family: var(--font-display);
    font-size: 70px;
    font-weight: 900;
    color: rgba(201, 168, 76, 0.08);
    line-height: 1;
}

.zigzag-item.right .card-number {
    right: 30px;
}

.zigzag-item.left .card-number {
    left: 30px;
}

/* Connector Line from card to center */
.zigzag-card::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 50px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.4), rgba(201, 168, 76, 0.6));
}

.zigzag-item.right .zigzag-card::after {
    left: -50px;
}

.zigzag-item.left .zigzag-card::after {
    right: -50px;
    background: linear-gradient(90deg, rgba(201, 168, 76, 0.6), rgba(201, 168, 76, 0.4), transparent);
}
/* Mobile Adjustment for This Section Only */
@media (max-width: 991px) {
    .skills-grid-wrapper[style*="min-height"] {
        min-height: auto !important;
        padding: 80px 0 !important;
    }
    
    .center-brain[style*="absolute"] {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        width: 180px !important;
        margin: 0 auto 40px !important;
    }
    
    .skills-grid-wrapper > div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important; /* Stack cards vertically on mobile */
        gap: 30px !important;
        max-width: 600px !important;
    }
    
    .center-brain[style*="z-index"]:nth-child(1) {
        order: -1; /* Show brain first on mobile */
    }
}

@media (max-width: 480px) {
    [style*="padding:45px"] { /* Reduce card padding on small screens */
        padding: 30px 25px !important;
    }
}
/* Responsive */
@media (max-width: 991px) {
    .read-before-section {
        padding: 80px 5%;
    }

    .zigzag-line {
        left: 25px;
    }

    .zigzag-item {
        justify-content: flex-start !important;
        padding-left: 70px;
        margin-bottom: 60px;
        min-height: auto;
    }

    .zigzag-dot {
        left: 25px;
    }

    .zigzag-card {
        width: 100%;
        max-width: 100%;
        padding: 30px 25px;
    }

    .zigzag-card::after {
        display: none;
    }

    .zigzag-card h3 {
        font-size: 22px;
    }

    .zigzag-card p {
        font-size: 15px;
    }

    .zigzag-card .card-number {
        font-size: 50px;
        top: 15px;
    }

    .zigzag-item.right .card-number,
    .zigzag-item.left .card-number {
        right: 20px;
        left: auto;
    }
}
/* ============================
   MEET THE FOUNDER SECTION
============================ */
.founder-section {
    position: relative;
    padding: 140px 5% 80px;
    background: var(--black);
    overflow: hidden;
}

.founder-section::before {
    content: '';
    position: absolute;
    width: 700px;
    height: 700px;
    left: 10%;
    top: 20%;
    background: radial-gradient(
        circle,
        rgba(201, 168, 76, 0.12) 0%,
        rgba(201, 168, 76, 0.04) 40%,
        transparent 70%
    );
    filter: blur(60px);
    z-index: 0;
}

.founder-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Founder Image */
.founder-image-wrap {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(201, 168, 76, 0.25);
    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.7),
        0 0 60px rgba(201, 168, 76, 0.15);
}

.founder-image-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 50%,
        rgba(201, 168, 76, 0.25) 90%,
        rgba(201, 168, 76, 0.5) 100%
    );
    z-index: 2;
    pointer-events: none;
}

.founder-image-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        transparent 60%,
        rgba(201, 168, 76, 0.08) 100%
    );
    z-index: 2;
    pointer-events: none;
}

.founder-image-wrap img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    min-height: 600px;
    filter: contrast(1.05) brightness(0.95);
}

/* Decorative Corner Accents */
.founder-image-wrap .corner {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 2px solid var(--gold);
    z-index: 3;
}

.founder-image-wrap .corner.top-left {
    top: 20px;
    left: 20px;
    border-right: none;
    border-bottom: none;
}

.founder-image-wrap .corner.bottom-right {
    bottom: 20px;
    right: 20px;
    border-left: none;
    border-top: none;
}

/* Founder Content */
.founder-content {
    position: relative;
}

.founder-eyebrow {
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    display: inline-block;
}

.founder-eyebrow::before {
    content: '— ';
    color: var(--gold-light);
}

.founder-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 4.5vw, 56px);
    font-weight: 700;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 2rem;
}

.founder-title em {
    background: linear-gradient(180deg, #fff, #E8C96E, #b8860b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: normal;
    font-weight: 700;
}

.gold-divider {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    margin-bottom: 2rem;
}

.founder-text {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.9;
    color: #c5c5c5;
    font-weight: 300;
    margin-bottom: 2.5rem;
}

.founder-cta {
    display: inline-block;
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--black);
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    padding: 18px 50px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow:
        0 10px 30px rgba(201, 168, 76, 0.3),
        inset 0 0 0 1px rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
}

.founder-cta::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 40%;
    height: 200%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-25deg);
    transition: 0.6s;
}

.founder-cta:hover::after {
    left: 120%;
}

.founder-cta:hover {
    transform: translateY(-3px);
    box-shadow:
        0 20px 40px rgba(201, 168, 76, 0.45),
        inset 0 0 0 1px rgba(255, 255, 255, 0.25);
}

/* ============================
   ACHIEVEMENT BANNER
============================ */
.achievement-banner {
    max-width: 1300px;
    margin: 60px auto 0;
    background: linear-gradient(145deg, #0E0E0E, #050505);
    border: 1px solid rgba(201, 168, 76, 0.18);
    border-radius: 24px;
    padding: 70px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.6),
        inset 0 0 40px rgba(201, 168, 76, 0.03);
}

.achievement-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.achievement-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.achievement-title {
    font-family: var(--font-display);
    font-size: clamp(22px, 2.5vw, 30px);
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 2rem;
    letter-spacing: 0.5px;
}

.achievement-text {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.9;
    color: #c5c5c5;
    font-weight: 300;
    max-width: 1000px;
    margin: 0 auto 2.5rem;
}

.featured-label {
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 2rem;
}

.featured-label span {
    color: var(--white);
    margin-left: 8px;
}

/* ============================
   FEATURED LOGOS GRID
============================ */
.featured-logos {
    max-width: 1300px;
    margin: 50px auto 0;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.logo-card {
    background: linear-gradient(145deg, #131313, #0A0A0A);
    border: 1px solid rgba(201, 168, 76, 0.12);
    border-radius: 16px;
    padding: 35px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 110px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.logo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.4), transparent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.logo-card:hover {
    border-color: rgba(201, 168, 76, 0.4);
    transform: translateY(-5px);
    box-shadow:
        0 15px 30px rgba(0, 0, 0, 0.5),
        0 0 25px rgba(201, 168, 76, 0.12);
    background: linear-gradient(145deg, #1A1A1A, #0F0F0F);
}

.logo-card:hover::before {
    transform: scaleX(1);
}

.logo-card img {
    max-width: 100%;
    max-height: 50px;
    filter: grayscale(100%) brightness(1.5) opacity(0.7);
    transition: all 0.4s ease;
}

.logo-card:hover img {
    filter: grayscale(0%) brightness(1) opacity(1);
}

/* Text-based logo fallback */
.logo-text {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--gold-light);
    letter-spacing: 2px;
    text-align: center;
    opacity: 0.75;
    transition: opacity 0.3s;
}

.logo-card:hover .logo-text {
    opacity: 1;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .founder-section {
        padding: 80px 5% 60px;
    }

    .founder-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .founder-image-wrap img {
        min-height: 450px;
    }

    .achievement-banner {
        padding: 40px 25px;
    }

    .achievement-text {
        font-size: 16px;
    }

    .featured-logos {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .logo-card {
        min-height: 90px;
        padding: 25px 15px;
    }
}

@media (max-width: 576px) {
    .featured-logos {
        grid-template-columns: repeat(2, 1fr);
    }

    .founder-title {
        font-size: 32px;
    }
}
/* ============================
   ACADEMY FEATURES SECTION
============================ */
.academy-features {
    position: relative;
    padding: 140px 5%;
    background: var(--black);
    overflow: hidden;
}

.academy-features::before {
    content: '';
    position: absolute;
    width: 900px;
    height: 600px;
    right: 5%;
    top: 0;
    background: radial-gradient(
        ellipse,
        rgba(201, 168, 76, 0.10) 0%,
        rgba(201, 168, 76, 0.03) 40%,
        transparent 70%
    );
    filter: blur(60px);
    z-index: 0;
    pointer-events: none;
}

.academy-features-inner {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Heading */
.academy-heading-wrap {
    text-align: right;
    margin-bottom: 70px;
    position: relative;
}

.academy-heading {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    display: inline-block;
    position: relative;
}

.academy-heading em {
    background: linear-gradient(180deg, #fff, #E8C96E, #b8860b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: normal;
}

.academy-heading-wrap::after {
    content: '';
    display: block;
    margin-top: 25px;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(201, 168, 76, 0.5) 50%,
        transparent
    );
}

/* Features Grid */
.academy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Individual Feature Card */
.academy-card {
    position: relative;
    background: linear-gradient(
        145deg,
        rgba(20, 20, 20, 0.95),
        rgba(8, 8, 8, 0.98)
    );
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 20px;
    padding: 50px 35px;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    transition: all 0.45s cubic-bezier(0.25, 0.1, 0.25, 1);
    overflow: hidden;
    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.5),
        inset 0 0 30px rgba(201, 168, 76, 0.02);
}

/* Top Gold Accent Line */
.academy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transition: transform 0.45s ease;
}

/* Background Glow on Hover */
.academy-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: radial-gradient(
        circle,
        rgba(201, 168, 76, 0.15) 0%,
        transparent 70%
    );
    transition: all 0.6s ease;
    pointer-events: none;
    z-index: 0;
}

.academy-card:hover {
    transform: translateY(-8px);
    border-color: rgba(201, 168, 76, 0.45);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.7),
        0 0 40px rgba(201, 168, 76, 0.12),
        inset 0 0 40px rgba(201, 168, 76, 0.04);
}

.academy-card:hover::before {
    transform: translateX(-50%) scaleX(1);
}

.academy-card:hover::after {
    width: 400px;
    height: 400px;
}

/* Icon Box */
.academy-icon-box {
    width: 100px;
    height: 100px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(
        135deg,
        rgba(201, 168, 76, 0.18),
        rgba(201, 168, 76, 0.04)
    );
    border: 1px solid rgba(201, 168, 76, 0.25);
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
    box-shadow:
        inset 0 0 20px rgba(201, 168, 76, 0.08),
        0 5px 20px rgba(0, 0, 0, 0.4);
}

.academy-card:hover .academy-icon-box {
    transform: scale(1.08) rotate(-3deg);
    border-color: rgba(201, 168, 76, 0.55);
    background: linear-gradient(
        135deg,
        rgba(201, 168, 76, 0.28),
        rgba(201, 168, 76, 0.08)
    );
    box-shadow:
        inset 0 0 25px rgba(201, 168, 76, 0.15),
        0 10px 30px rgba(201, 168, 76, 0.2);
}

.academy-icon-box svg {
    width: 50px;
    height: 50px;
    fill: none;
    stroke: var(--gold-light);
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: all 0.4s ease;
    filter: drop-shadow(0 0 8px rgba(201, 168, 76, 0.4));
}

.academy-card:hover .academy-icon-box svg {
    stroke: #FAEAB5;
    filter: drop-shadow(0 0 12px rgba(232, 201, 110, 0.7));
}

/* Card Title */
.academy-card h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--gold-light);
    margin-bottom: 12px;
    line-height: 1.4;
    position: relative;
    z-index: 2;
    transition: color 0.4s ease;
}

.academy-card:hover h3 {
    color: #FAEAB5;
}

/* Card Description */
.academy-card p {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: #a8a8a0;
    font-weight: 300;
    position: relative;
    z-index: 2;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .academy-features {
        padding: 80px 5%;
    }

    .academy-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .academy-card {
        padding: 40px 25px;
        min-height: 240px;
    }

    .academy-icon-box {
        width: 80px;
        height: 80px;
        margin-bottom: 22px;
    }

    .academy-icon-box svg {
        width: 40px;
        height: 40px;
    }

    .academy-card h3 {
        font-size: 19px;
    }

    .academy-card p {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .academy-grid {
        grid-template-columns: 1fr;
    }
}



/* FAQ SECTION */
.faq-section {
    position: relative;
    padding: 140px 5% 100px;
    background: #050505;
    overflow: hidden;
    direction: ltr;
    margin-bottom: 80px
}

.faq-section::before {
    content: '';
    position: absolute;
    width: 900px;
    height: 900px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(
        circle,
        rgba(201, 168, 76, 0.08) 0%,
        rgba(201, 168, 76, 0.02) 40%,
        transparent 70%
    );
    filter: blur(60px);
    z-index: 0;
}

.faq-container {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Header */
.faq-header {
    text-align: center;
    margin-bottom: 80px;
}

.faq-title {
    font-family: var(--font-display);
    font-size: clamp(48px, 7vw, 78px);
    font-weight: 800;
    line-height: 1.1;
    background: linear-gradient(180deg, #FAEAB5 0%, #E8C96E 35%, #C9A84C 70%, #8B6914 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.faq-subtitle {
    font-family: var(--font-body);
    font-size: 19px;
    line-height: 1.8;
    color: #c5c5c5;
    font-weight: 300;
    max-width: 800px;
    margin: 0 auto;
}

.faq-subtitle a {
    color: var(--gold-light);
    text-decoration: none;
    border-bottom: 1px solid rgba(201, 168, 76, 0.4);
    transition: all 0.3s ease;
}

.faq-subtitle a:hover {
    color: #FAEAB5;
    border-bottom-color: var(--gold-light);
}

/* FAQ List - Vertical */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* Individual FAQ Item */
.faq-item {
    position: relative;
    background: linear-gradient(145deg, rgba(15, 15, 15, 0.9), rgba(5, 5, 5, 0.95));
    border: 1px solid rgba(201, 168, 76, 0.18);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.4),
        inset 0 0 20px rgba(201, 168, 76, 0.02);
}

.faq-item:hover {
    border-color: rgba(201, 168, 76, 0.35);
    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.5),
        0 0 25px rgba(201, 168, 76, 0.08),
        inset 0 0 25px rgba(201, 168, 76, 0.04);
}

.faq-item.active {
    border-color: rgba(201, 168, 76, 0.5);
    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.6),
        0 0 35px rgba(201, 168, 76, 0.12),
        inset 0 0 30px rgba(201, 168, 76, 0.05);
}

/* FAQ Question Row */
.faq-question-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding: 26px 30px;
    cursor: pointer;
    transition: background 0.3s ease;
    position: relative;
}

.faq-item:hover .faq-question-row {
    background: rgba(201, 168, 76, 0.04);
}

/* + Toggle Icon */
.faq-toggle {
    width: 42px;
    height: 42px;
    min-width: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #1A1A1A, #0A0A0A);
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 10px;
    color: var(--gold-light);
    font-size: 22px;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-ui);
    padding: 0;
    line-height: 1;
}

.faq-item:hover .faq-toggle {
    border-color: rgba(201, 168, 76, 0.55);
    color: #FAEAB5;
    box-shadow: 0 0 15px rgba(201, 168, 76, 0.25);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    background: linear-gradient(145deg, #2A2010, #1A1408);
    border-color: var(--gold);
    color: #FAEAB5;
    box-shadow: 0 0 20px rgba(201, 168, 76, 0.4);
}

/* Question Text */
.faq-question {
    flex: 1;
    font-family: var(--font-body);
    font-size: 19px;
    font-weight: 500;
    color: #e8e8e0;
    line-height: 1.5;
    margin: 0;
    text-align: left;
    transition: color 0.3s ease;
}

.faq-item.active .faq-question {
    color: #FAEAB5;
}

/* Answer Section - Hidden by default */
.faq-answer-wrap {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer-wrap {
    max-height: 500px;
}

.faq-answer {
    padding: 0 30px 30px 30px;
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.85;
    color: #b5b5ad;
    font-weight: 300;
    text-align: left;
    position: relative;
    border-top: 1px solid rgba(201, 168, 76, 0.1);
    padding-top: 22px;
    margin-top: -1px;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
}

.faq-item.active .faq-answer {
    opacity: 1;
    transform: translateY(0);
}

/* ============================
   EMAIL CTA BOX
============================ */
.faq-cta {
    position: relative;
    margin-top: 60px;
    padding: 90px 50px;
    background: linear-gradient(145deg, #0A0A0A, #050505);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 24px;
    text-align: center;
    overflow: hidden;
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.6),
        inset 0 0 50px rgba(201, 168, 76, 0.04);
}

.faq-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(201, 168, 76, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 168, 76, 0.06) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 0;
    opacity: 0.5;
}

.faq-cta::after {
    content: '';
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(
        circle,
        rgba(201, 168, 76, 0.15) 0%,
        rgba(201, 168, 76, 0.05) 40%,
        transparent 70%
    );
    filter: blur(40px);
    z-index: 0;
    pointer-events: none;
}

.faq-cta-content {
    position: relative;
    z-index: 2;
}

.faq-cta-title {
    font-family: var(--font-body);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 18px;
    line-height: 1.3;
}

.faq-cta-title .gold-text {
    background: linear-gradient(180deg, #FAEAB5, #E8C96E, #C9A84C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-cta-subtitle {
    font-family: var(--font-body);
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 600;
    color: var(--white);
    margin-bottom: 40px;
    line-height: 1.3;
}

.faq-cta-subtitle .gold-text {
    background: linear-gradient(180deg, #FAEAB5, #E8C96E, #C9A84C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-form {
    display: flex;
    gap: 0;
    max-width: 600px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 60px;
    padding: 6px;
    box-shadow:
        inset 0 0 20px rgba(201, 168, 76, 0.05),
        0 10px 30px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 2;
}

.faq-form input[type="email"] {
    flex: 1;
    padding: 18px 28px;
    background: transparent;
    border: none;
    outline: none;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 400;
}

.faq-form input[type="email"]::placeholder {
    color: #6a6a62;
    font-style: italic;
}

.faq-form button {
    padding: 16px 38px;
    background: linear-gradient(135deg, #C9A84C, #E8C96E, #C9A84C);
    color: #0A0A0A;
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(201, 168, 76, 0.3);
    white-space: nowrap;
}

.faq-form button:hover {
    background: linear-gradient(135deg, #E8C96E, #FAEAB5, #E8C96E);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 168, 76, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
    .faq-section {
        padding: 80px 5% 60px;
    }

    .faq-question-row {
        padding: 20px 22px;
        gap: 15px;
    }

    .faq-toggle {
        width: 38px;
        height: 38px;
        min-width: 38px;
        font-size: 20px;
    }

    .faq-question {
        font-size: 16px;
    }

    .faq-answer {
        padding: 0 22px 22px 22px;
        font-size: 15px;
    }

    .faq-cta {
        padding: 60px 25px;
    }

    .faq-form {
        flex-direction: column;
        border-radius: 20px;
        gap: 10px;
        padding: 12px;
    }

    .faq-form button {
        width: 100%;
    }
}

.luxury-footer {
    position: relative;
    background: linear-gradient(180deg, #0A0A0A 0%, #050505 100%);
    border-top: 1px solid rgba(201, 168, 76, 0.2);
    padding: 60px 5% 35px;
    overflow: hidden;
  
}

.luxury-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* Subtle background glow */
.luxury-footer::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 400px;
    right: 10%;
    top: 20%;
    background: radial-gradient(
        ellipse,
        rgba(201, 168, 76, 0.05) 0%,
        transparent 70%
    );
    filter: blur(60px);
    pointer-events: none;
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Top Section: Brand + Links */
.footer-top {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 100px;
    align-items: start;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(201, 168, 76, 0.12);
}

/* Brand Side (Right) */
.footer-brand {
    text-align: right;
    direction: rtl;
}

.brand-header {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
    margin-bottom: 30px;
}

.brand-name {
    font-family: var(--font-ui);
    font-size: 26px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
    text-transform: capitalize;
}

.brand-logo {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.25) 0%, transparent 70%);
    border-radius: 50%;
    flex-shrink: 0;
}

.brand-logo::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.4), rgba(232, 201, 110, 0.2));
    filter: blur(8px);
    opacity: 0.6;
}

.brand-logo-inner {
    width: 60px;
    height: 60px;
    background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.brand-logo-diamond {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    transform: rotate(45deg);
    border-radius: 3px;
    box-shadow: 0 0 15px rgba(201, 168, 76, 0.6);
}

.brand-description {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 2;
    color: #b5b5ad;
    font-weight: 300;
    max-width: 480px;
    margin-right: 0;
    margin-left: auto;
}

/* Links Side (Left) */
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    direction: rtl;
    text-align: right;
}

.footer-link {
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 400;
    color: #c5c5c5;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-right: 25px;
    display: inline-block;
    width: fit-content;
    margin-right: 0;
    margin-left: auto;
}

.footer-link::before {
    content: '—';
    position: absolute;
    right: 0;
    color: var(--gold);
    opacity: 0;
    transition: all 0.3s ease;
    transform: translateX(10px);
}

.footer-link:hover {
    color: var(--gold-light);
    padding-right: 35px;
}

.footer-link:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Sub-links (indented) */
.footer-sub-link {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 300;
    color: #8a8a82;
    text-decoration: none;
    transition: all 0.3s ease;
    padding-right: 25px;
    display: inline-block;
    width: fit-content;
    margin-right: 0;
    margin-left: auto;
    position: relative;
}

.footer-sub-link::before {
    content: '·';
    position: absolute;
    right: 5px;
    color: var(--gold);
    font-size: 24px;
    line-height: 1;
    top: 50%;
    transform: translateY(-50%);
}

.footer-sub-link:hover {
    color: var(--gold-light);
}

/* Bottom Section */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 35px;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 400;
    color: #8a8a82;
    letter-spacing: 0.5px;
}

/* Social Icons */
.footer-social {
    display: flex;
    gap: 18px;
    align-items: center;
}

.social-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 168, 76, 0.05);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 50%;
    color: var(--gold-light);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.25) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-icon:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(201, 168, 76, 0.3);
}

.social-icon:hover::before {
    opacity: 1;
}

.social-icon svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.social-icon:hover svg {
    transform: scale(1.1);
}

/* Decorative Gold Line Above Footer */
.footer-gold-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(201, 168, 76, 0.5) 30%,
        rgba(201, 168, 76, 0.5) 70%,
        transparent 100%
    );
    margin-bottom: 50px;
    position: relative;
}

.footer-gold-line::before {
    content: '';
    position: absolute;
    top: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--gold);
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .luxury-footer {
        padding: 70px 5% 30px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .footer-brand {
        text-align: center;
    }

    .brand-header {
        justify-content: center;
    }

    .brand-description {
        text-align: center;
        margin: 0 auto;
    }

    .footer-links {
        text-align: center;
        align-items: center;
    }

    .footer-link,
    .footer-sub-link {
        margin: 0 auto;
    }

    .footer-bottom {
        flex-direction: column-reverse;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .luxury-footer {
        padding: 50px 5% 25px;
    }

    .brand-name {
        font-size: 22px;
    }

    .brand-logo {
        width: 70px;
        height: 70px;
    }

    .brand-logo-inner {
        width: 52px;
        height: 52px;
    }

    .brand-logo-diamond {
        width: 20px;
        height: 20px;
    }

    .footer-link {
        font-size: 15px;
    }

    .footer-sub-link {
        font-size: 14px;
    }

    .footer-copyright {
        font-size: 12px;
    }
}
  /* GOLD DIVIDER */
  .gold-line { width: 60px; height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent); margin: 0 auto 2rem; }
  .gold-line.left { margin: 0 0 2rem; }
  .ornament-sep { display: flex; align-items: center; gap: 20px; margin: 0 auto 2rem; width: fit-content; }
  .ornament-sep::before, .ornament-sep::after { content: ''; display: block; width: 60px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold-dark)); }
  .ornament-sep::after { background: linear-gradient(90deg, var(--gold-dark), transparent); }
  .ornament-diamond { width: 6px; height: 6px; background: var(--gold); transform: rotate(45deg); }

  /* BUTTONS */
  .btn-gold { font-family: var(--font-ui); font-size: 11px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--black); background: var(--gold); border: none; padding: 16px 40px; cursor: pointer; text-decoration: none; display: inline-block; transition: background 0.3s, transform 0.2s, box-shadow 0.3s; }
  .btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,168,76,0.3); }
  .btn-outline { font-family: var(--font-ui); font-size: 11px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); background: transparent; border: 1px solid rgba(201,168,76,0.5); padding: 16px 40px; cursor: pointer; text-decoration: none; display: inline-block; transition: border-color 0.3s, color 0.3s, transform 0.2s; }
  .btn-outline:hover { border-color: var(--gold); color: var(--gold-light); transform: translateY(-2px); }

  /* SECTION */
  .section { padding: 120px 5%; max-width: 1200px; margin: 0 auto; }
  .section-header { text-align: center; margin-bottom: 80px; }
  .section-label { font-family: var(--font-ui); font-size: 10px; font-weight: 600; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 1rem; }
  .section-title { font-family: var(--font-display); font-size: clamp(36px, 5vw, 56px); font-weight: 700; color: var(--white); line-height: 1.1; margin-bottom: 1.5rem; }
  .section-title em { color: var(--gold-light); font-style: italic; }
  .section-desc { font-family: var(--font-body); font-size: 18px; font-weight: 300; color: var(--text-muted); max-width: 500px; margin: 0 auto; }

  /* HERO */
  
  .hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(201,168,76,0.07) 0%, transparent 70%), radial-gradient(ellipse 40% 40% at 20% 80%, rgba(201,168,76,0.05) 0%, transparent 60%), var(--black); }
  .hero-ornament { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 600px; height: 600px; border: 1px solid rgba(201,168,76,0.06); border-radius: 50%; }
  .hero-ornament:nth-child(2) { width: 420px; height: 420px; border-color: rgba(201,168,76,0.08); }
  .hero-ornament:nth-child(3) { width: 240px; height: 240px; border-color: rgba(201,168,76,0.1); }
  .hero-content { position: relative; z-index: 2; max-width: 800px; }
  .hero-eyebrow { font-family: var(--font-ui); font-size: 10px; font-weight: 600; letter-spacing: 5px; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; animation: fadeUp 1s ease both; }
  .hero-title { font-family: var(--font-display); font-size: clamp(52px, 8vw, 96px); font-weight: 700; line-height: 1.05; color: var(--white); margin-bottom: 1.5rem; animation: fadeUp 1s 0.15s ease both; }
  .hero-title em { color: var(--gold-light); font-style: italic; }
  .hero-sub { font-family: var(--font-body); font-size: 20px; font-weight: 300; color: var(--text-muted); letter-spacing: 0.5px; max-width: 500px; margin: 0 auto 3rem; animation: fadeUp 1s 0.3s ease both; }
  .hero-actions { display: flex; gap: 20px; justify-content: center; animation: fadeUp 1s 0.45s ease both; }
  .hero-scroll { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; animation: fadeUp 1s 0.7s ease both; }
  .hero-scroll span { font-family: var(--font-ui); font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold-dark); }
  .scroll-line { width: 1px; height: 50px; background: linear-gradient(to bottom, var(--gold-dark), transparent); animation: scrollPulse 2s infinite; }

  /* FEATURES */
  .features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
  .feature-card { background: var(--black-3); padding: 50px 40px; border: 1px solid rgba(201,168,76,0.08); position: relative; overflow: hidden; transition: border-color 0.4s, background 0.4s; }
  .feature-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--gold); transform: scaleX(0); transition: transform 0.4s; }
  .feature-card:hover { border-color: rgba(201,168,76,0.25); background: var(--black-4); }
  .feature-card:hover::before { transform: scaleX(1); }
  .feature-number { font-family: var(--font-display); font-size: 72px; font-weight: 900; color: rgba(201,168,76,0.06); line-height: 1; margin-bottom: 24px; transition: color 0.4s; }
  .feature-card:hover .feature-number { color: rgba(201,168,76,0.12); }
  .feature-title { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--gold-light); margin-bottom: 16px; }
  .feature-text { font-family: var(--font-body); font-size: 16px; font-weight: 300; color: var(--text-muted); line-height: 1.8; }

  /* STATS */
  .stats-bar { background: var(--black-2); border-top: 1px solid rgba(201,168,76,0.12); border-bottom: 1px solid rgba(201,168,76,0.12); padding: 60px 5%; }
  .stats-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
  .stat-item { padding: 30px; text-align: center; border-right: 1px solid rgba(201,168,76,0.1); }
  .stat-item:last-child { border-right: none; }
  .stat-num { font-family: var(--font-display); font-size: 48px; font-weight: 700; color: var(--gold-light); line-height: 1; margin-bottom: 8px; }
  .stat-label { font-family: var(--font-ui); font-size: 10px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--text-muted); }

  /* TESTIMONIALS */
  .testimonials { padding: 120px 5%; background: var(--black-2); border-top: 1px solid rgba(201,168,76,0.08); }
  .testimonials-inner { max-width: 1200px; margin: 0 auto; }
  .testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 80px; }
  .testimonial-card { padding: 40px; border: 1px solid rgba(201,168,76,0.1); position: relative; }
  .testimonial-card::before { content: '"'; font-family: var(--font-display); font-size: 80px; color: rgba(201,168,76,0.15); position: absolute; top: 20px; left: 30px; line-height: 1; }
  .testimonial-text { font-family: var(--font-body); font-size: 17px; font-style: italic; font-weight: 300; color: #ccc; line-height: 1.8; margin-bottom: 28px; padding-top: 30px; }
  .testimonial-author { font-family: var(--font-ui); font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); }
  .testimonial-role { font-family: var(--font-ui); font-size: 10px; color: var(--text-muted); margin-top: 4px; }

  /* CTA */
  .cta-section { padding: 120px 5%; text-align: center; position: relative; overflow: hidden; }
  .cta-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(201,168,76,0.05) 0%, transparent 70%); }
  .cta-section .section-title { position: relative; }

  /* FOOTER */
  footer { background: var(--black-2); border-top: 1px solid rgba(201,168,76,0.15); padding: 80px 5% 40px; }
  .footer-inner { max-width: 1200px; margin: 0 auto; }
  .footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px; padding-bottom: 60px; border-bottom: 1px solid rgba(201,168,76,0.1); }
  .footer-brand p { font-family: var(--font-body); font-size: 16px; font-weight: 300; color: var(--text-muted); max-width: 280px; line-height: 1.8; }
  .footer-col h4 { font-family: var(--font-ui); font-size: 10px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 10px; }
  .footer-col ul a { font-family: var(--font-body); font-size: 15px; font-weight: 300; color: var(--text-muted); text-decoration: none; transition: color 0.3s; }
  .footer-col ul a:hover { color: var(--gold-light); }
  .footer-bottom { display: flex; justify-content: space-between; align-items: center; }
  .footer-copy { font-family: var(--font-ui); font-size: 10px; letter-spacing: 2px; color: var(--text-muted); text-transform: uppercase; }

  @keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
  @keyframes scrollPulse { 0%, 100% { opacity: 0.3; } 50% { opacity: 1; } }






  /* login start */


  /* ========== NAVBAR (FULLY RESPONSIVE) ========== */


  .logo {
    font-family: var(--font-display);
    font-size: clamp(20px, 5vw, 26px);
    font-weight: 700;
    color: var(--gold-light);
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
  }
  .logo span { color: var(--white); font-weight: 400; }

 

  /* ========== LOGIN MAIN SECTION - FULLY RESPONSIVE ========== */
  .login-main {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 5% 80px;
    position: relative;
    background: linear-gradient(135deg, #050505 0%, #0A0A0A 100%);
    overflow-x: hidden;
  }

  .login-main::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, rgba(201,168,76,0.02) 40%, transparent 70%);
    filter: blur(60px);
    z-index: 0;
  }

  .login-container {
    max-width: 991px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }

  .login-card {
    background: linear-gradient(145deg, rgba(18,18,18,0.95), rgba(8,8,8,0.98));
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 28px;
    padding: 40px 36px;
    backdrop-filter: blur(10px);
    box-shadow: 0 30px 70px rgba(0,0,0,0.6), inset 0 0 40px rgba(201,168,76,0.03);
    transition: all 0.4s ease;
  }

  .login-card:hover {
    border-color: rgba(201,168,76,0.4);
    box-shadow: 0 35px 80px rgba(0,0,0,0.7), 0 0 30px rgba(201,168,76,0.1);
  }

  .login-header {
    text-align: center;
    margin-bottom: 32px;
  }

  .login-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, rgba(201,168,76,0.2), rgba(201,168,76,0.05));
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    transition: all 0.3s ease;
  }

  .login-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 6vw, 36px);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
    letter-spacing: -0.5px;
  }

  .login-title em {
    background: linear-gradient(180deg, #FAEAB5, #E8C96E, #C9A84C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: normal;
  }

  .login-subtitle {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 300;
  }

  /* Form Styles */
  .login-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
  }

  .input-group {
    position: relative;
  }

  .input-group label {
    display: block;
    font-family: var(--font-ui);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 8px;
  }

  .input-group input {
    width: 100%;
    background: rgba(10,10,10,0.8);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 12px;
    padding: 14px 18px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--white);
    transition: all 0.3s ease;
    outline: none;
  }

  .input-group input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(201,168,76,0.15);
    background: rgba(15,15,15,0.9);
  }

  .input-group input::placeholder {
    color: #4a4a45;
    font-weight: 300;
  }

  .form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: -5px;
  }
  .password-wrapper{
    position: relative;
    display: flex;
    align-items: center;
    }

    .password-wrapper input{
        width: 100%;
        padding-right: 50px;
    }

    .password-toggle{
        position: absolute;
        right: 15px;
        background: transparent;
        border: none;
        cursor: pointer;
        color: #C9A84C;
        font-size: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .password-toggle:hover{
        opacity: 0.8;
    }

  .checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
  }

  .checkbox-wrapper input {
    width: 16px;
    height: 16px;
    accent-color: var(--gold);
    cursor: pointer;
  }

  .checkbox-wrapper span {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--text-muted);
  }

  .forgot-link {
    font-family: var(--font-ui);
    font-size: 11px;
    color: var(--gold-light);
    text-decoration: none;
    transition: color 0.3s;
  }

  .forgot-link:hover {
    color: #FAEAB5;
    text-decoration: underline;
  }

  .login-btn {
    background: linear-gradient(135deg, #C9A84C, #E8C96E, #C9A84C);
    border: none;
    border-radius: 50px;
    padding: 14px 24px;
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #0A0A0A;
    cursor: pointer;
    transition: all 0.4s ease;
    margin-top: 5px;
    position: relative;
    overflow: hidden;
  }

  .login-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 40%;
    height: 200%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.35), transparent);
    transform: skewX(-25deg);
    transition: 0.6s;
  }

  .login-btn:hover::before {
    left: 120%;
  }

  .login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(201,168,76,0.35);
  }

  .divider {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 20px 0 15px;
  }

  .divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,168,76,0.3), transparent);
  }

  .divider-text {
    font-family: var(--font-ui);
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #6a6a62;
  }

  .social-login {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .social-icon-btn {
    width: 44px;
    height: 44px;
    background: rgba(20,20,20,0.9);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
  }

  .social-icon-btn svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: var(--gold-light);
    stroke-width: 1.5;
  }

  .social-icon-btn:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
    background: rgba(201,168,76,0.1);
    box-shadow: 0 6px 18px rgba(201,168,76,0.2);
  }

  .demo-message {
    background: rgba(201,168,76,0.1);
    border-left: 3px solid var(--gold);
    padding: 10px 14px;
    border-radius: 10px;
    margin-bottom: 22px;
    font-family: var(--font-body);
    font-size: 12px;
    color: #c5c5c5;
    text-align: center;
  }

  .demo-message strong {
    color: var(--gold-light);
  }

  .register-link {
    text-align: center;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid rgba(201,168,76,0.12);
  }

  .register-link p {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-muted);
  }

  .register-link a {
    color: var(--gold-light);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
    margin-left: 5px;
  }

  .register-link a:hover {
    color: #FAEAB5;
    text-decoration: underline;
  }




  .brand-header {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
  }

  .brand-name {
    font-family: var(--font-ui);
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
  }

  .brand-logo {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, rgba(201,168,76,0.2) 0%, transparent 70%);
    border-radius: 50%;
    flex-shrink: 0;
  }

  .brand-logo-inner {
    width: 50px;
    height: 50px;
    background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .brand-logo-diamond {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    transform: rotate(45deg);
    border-radius: 3px;
  }

  .brand-description {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.8;
    color: #b5b5ad;
    font-weight: 300;
    max-width: 420px;
    margin-right: 0;
    margin-left: auto;
  }













  .social-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201,168,76,0.05);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 50%;
    color: var(--gold-light);
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .social-icon svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
  }

  .social-icon:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(201,168,76,0.25);
  }

  /* Cursor Shade */
  .cursor-shade {
    position: fixed;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(201,168,76,0.25) 10%, rgba(201,168,76,0.1) 45%, transparent 75%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    filter: blur(16px);
    opacity: 0.5;
    mix-blend-mode: screen;
  }

  /* Toast Animation */
  @keyframes slideIn {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
  }

  /* ========== RESPONSIVE BREAKPOINTS ========== */
  @media (max-width: 768px) {
  
    
    .login-main {
      padding: 110px 4% 60px;
    }
    .login-card {
      padding: 30px 24px;
    }
    .login-icon {
      width: 60px;
      height: 60px;
      font-size: 28px;
    }

    .brand-header {
      justify-content: center;
    }
    .brand-description {
      text-align: center;
      margin: 0 auto;
    }



  
    .form-options {
      flex-direction: column;
      align-items: flex-start;
    }
  }

  @media (max-width: 480px) {
    .logo {
      font-size: 18px;
      letter-spacing: 2px;
    }
 
    .login-card {
      padding: 24px 18px;
      border-radius: 22px;
    }
    .login-title {
      font-size: 26px;
    }
    .input-group input {
      padding: 12px 14px;
      font-size: 14px;
    }
    .login-btn {
      padding: 12px 20px;
      font-size: 11px;
    }
    .social-icon-btn {
      width: 40px;
      height: 40px;
    }
    .brand-name {
      font-size: 18px;
    }
    .brand-logo {
      width: 55px;
      height: 55px;
    }
    .brand-logo-inner {
      width: 42px;
      height: 42px;
    }
    .cursor-shade {
      display: none;
    }
  }

  @media (max-width: 360px) {

  }
/* login end */

/* ── Language Selector ─────────────────────────────────── */
.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lang-selector {
  position: relative;
}

.lang-trigger {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(255, 255, 255, 0.04);
  border: 0.5px solid rgba(201, 169, 110, 0.25);
  border-radius: 100px;
  padding: 0.45rem 0.85rem 0.45rem 0.75rem;
  cursor: pointer;
  min-width: 112px;
  justify-content: space-between;
  transition: background 0.2s, border-color 0.2s;
  user-select: none;
}

.lang-trigger:hover,
.lang-trigger:focus-visible {
  background: rgba(201, 169, 110, 0.08);
  border-color: rgba(201, 169, 110, 0.5);
  outline: none;
}

.lang-trigger.open {
  background: rgba(201, 169, 110, 0.1);
  border-color: #c9a96e;
}

.lang-trigger-inner {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.lang-globe {
  opacity: 0.85;
  color: #c9a96e;
  flex-shrink: 0;
}

.lang-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #e8d4a8;
  line-height: 1;
}

.lang-chevron {
  color: rgba(240, 236, 228, 0.5);
  flex-shrink: 0;
  transition: transform 0.2s ease, opacity 0.2s;
}
.lang-trigger.open .lang-chevron {
  transform: rotate(180deg);
  opacity: 1;
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 168px;
  background: #141414;
  border: 0.5px solid rgba(201, 169, 110, 0.2);
  border-radius: 14px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-6px) scale(0.97);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 9999;
}

.lang-selector.active .lang-dropdown {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.7rem 1rem;
  cursor: pointer;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.05);
  transition: background 0.15s;
}
.lang-option:last-child { border-bottom: none; }

.lang-option:hover { background: rgba(201, 169, 110, 0.08); }
.lang-option.selected { background: rgba(201, 169, 110, 0.06); }

.lang-flag { font-size: 1.05rem; line-height: 1; }

.lang-name {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #f0ece4;
  flex: 1;
}

.lang-native {
  font-size: 0.68rem;
  color: rgba(240, 236, 228, 0.5);
}

.lang-check {
  opacity: 0;
  flex-shrink: 0;
  color: #c9a96e;
  transition: opacity 0.15s;
}
.lang-option.selected .lang-check { opacity: 1; }

/* Mobile: hide text label, show globe only */
@media (max-width: 768px) {
  .lang-label { display: none; }
  .lang-trigger { min-width: auto; padding: 0.5rem 0.65rem; }
  .lang-dropdown { right: 0; left: auto; }
}