:root {
    --gold: #c9a84c;
    --gold-light: #f0d080;
    --gold-dark: #8b6914;
    --gold-pale: #fdf6e3;
    --dark: #0d0b07;
    --dark2: #1a1710;
    --dark3: #252218;
    --text-muted: #8a8070;
    --white: #ffffff;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    background: var(--dark);
    color: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: "Cormorant Garamond", serif;
}


/* ── NOISE TEXTURE OVERLAY ── */

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: 0.4;
}


/* ── SCROLLBAR ── */

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--dark);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-dark);
    border-radius: 3px;
}


/* ══════════════════════════════════════
       NAVBAR
    ══════════════════════════════════════ */

.navbar-custom {
    background: rgba(13, 11, 7, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    padding: 1rem 0;
    transition: all 0.3s ease;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-custom.scrolled {
    padding: 0.6rem 0;
    border-bottom-color: rgba(201, 168, 76, 0.3);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.navbar-brand {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold) !important;
    letter-spacing: 2px;
    text-decoration: none;
}

.navbar-brand span {
    color: var(--white);
    font-weight: 400;
}

.nav-link {
    color: rgba(255, 255, 255, 0.75) !important;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 0.4rem 1rem !important;
    transition: color 0.2s;
    position: relative;
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--gold) !important;
}

.nav-link:hover::after {
    width: 60%;
}

.btn-nav {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--dark) !important;
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.45rem 1.4rem !important;
    border-radius: 2px;
    border: none;
    transition: all 0.3s;
}

.btn-nav:hover {
    box-shadow: 0 0 20px rgba(201, 168, 76, 0.5);
    transform: translateY(-1px);
}


/* ══════════════════════════════════════
       HERO
    ══════════════════════════════════════ */

.hero {
    min-height: 100vh;
    background: radial-gradient( ellipse 80% 60% at 60% 40%, rgba(201, 168, 76, 0.12) 0%, transparent 60%), radial-gradient( ellipse 50% 50% at 10% 80%, rgba(139, 105, 20, 0.08) 0%, transparent 60%), var(--dark);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(201, 168, 76, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(201, 168, 76, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-coin {
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient( circle at 35% 35%, #f0d080, #c9a84c 40%, #8b6914 70%, #3d2e08);
    box-shadow: -30px 20px 80px rgba(0, 0, 0, 0.6), inset -20px -20px 40px rgba(0, 0, 0, 0.4), inset 15px 15px 30px rgba(255, 255, 255, 0.15);
    
    animation: floatCoin 6s ease-in-out infinite;
    
    opacity: 0.85;
}

.hero-coin::before {
    content: "";
    position: absolute;
    inset: 24px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.hero-coin::after {
    content: "₹";
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Cormorant Garamond", serif;
    font-size: 160px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.07);
    line-height: 1;
}

@keyframes floatCoin {
    0%,
    100% {
        transform: translateY(-50%) rotate(0deg);
    }
    50% {
        transform: translateY(calc(-50% - 20px)) rotate(3deg);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.3);
    color: var(--gold-light);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 2px;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
}

.hero h1 .gold-text {
    background: linear-gradient( 135deg, var(--gold-light), var(--gold), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    max-width: 480px;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.btn-gold {
    background: linear-gradient( 135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
    color: var(--dark);
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 14px 36px;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-gold:hover {
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.45);
    transform: translateY(-2px);
    color: var(--dark);
}

.btn-outline-gold {
    background: transparent;
    color: var(--gold);
    border: 1px solid rgba(201, 168, 76, 0.5);
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 13px 36px;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-outline-gold:hover {
    background: rgba(201, 168, 76, 0.08);
    border-color: var(--gold);
    color: var(--gold-light);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(201, 168, 76, 0.1);
}

.hero-stat-val {
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 4px;
}


/* ══════════════════════════════════════
       TICKER
    ══════════════════════════════════════ */

.ticker-bar {
    background: linear-gradient(90deg, var(--dark2), var(--dark3), var(--dark2));
    border-top: 1px solid rgba(201, 168, 76, 0.15);
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    padding: 10px 0;
    overflow: hidden;
}

.ticker-track {
    display: flex;
    gap: 3rem;
    animation: ticker 30s linear infinite;
    white-space: nowrap;
    width: max-content;
}

@keyframes ticker {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 500;
}

.ticker-name {
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.ticker-price {
    color: var(--white);
    font-weight: 600;
}

.ticker-up {
    color: #4ade80;
    font-size: 0.72rem;
}

.ticker-down {
    color: #f87171;
    font-size: 0.72rem;
}

.ticker-dot {
    color: rgba(201, 168, 76, 0.3);
}


/* ══════════════════════════════════════
       SECTION COMMONS
    ══════════════════════════════════════ */

.section-label {
    font-family: "Poppins", sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.section-desc {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.95rem;
    line-height: 1.9;
    font-weight: 300;
    max-width: 540px;
}

.gold-line {
    display: block;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    margin-bottom: 1.5rem;
}


/* ══════════════════════════════════════
       WHY GOLD
    ══════════════════════════════════════ */

.why-gold {
    background: var(--dark2);
    padding: 7rem 0;
    position: relative;
}

.why-card {
    background: rgba(201, 168, 76, 0.04);
    border: 1px solid rgba(201, 168, 76, 0.1);
    border-radius: 4px;
    padding: 2.2rem;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.why-card:hover {
    background: rgba(201, 168, 76, 0.08);
    border-color: rgba(201, 168, 76, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.why-card:hover::before {
    transform: scaleX(1);
}

.why-icon {
    width: 52px;
    height: 52px;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    color: var(--gold);
}

.why-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--white);
}

.why-card p {
    font-size: 0.87rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
    font-weight: 300;
}


/* ══════════════════════════════════════
       INVESTMENT PLANS
    ══════════════════════════════════════ */

.plans-section {
    padding: 7rem 0;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.plans-section::before {
    content: "";
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient( circle, rgba(201, 168, 76, 0.06) 0%, transparent 60%);
}

.plan-card {
    background: var(--dark2);
    border: 1px solid rgba(201, 168, 76, 0.12);
    border-radius: 6px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.4s ease;
    height: 100%;
}

.plan-card.featured {
    background: linear-gradient( 145deg, rgba(201, 168, 76, 0.12), rgba(139, 105, 20, 0.08));
    border-color: rgba(201, 168, 76, 0.4);
    box-shadow: 0 0 50px rgba(201, 168, 76, 0.08);
}

.plan-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    border-color: rgba(201, 168, 76, 0.35);
}

.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: var(--dark);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 16px;
    border-radius: 20px;
}

.plan-type {
    font-family: "Poppins", sans-serif;
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.plan-card h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.plan-price {
    font-family: "Poppins", sans-serif;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.plan-returns {
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 4px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.plan-returns .rate {
    font-family: "Cormorant Garamond", serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.plan-returns .rate-label {
    font-size: 0.72rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    margin-top: 4px;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features .check {
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}


/* ══════════════════════════════════════
       HOW IT WORKS
    ══════════════════════════════════════ */

.how-section {
    background: var(--dark2);
    padding: 7rem 0;
}

.step-item {
    position: relative;
    padding-left: 5rem;
    padding-bottom: 3rem;
}

.step-item:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 23px;
    top: 50px;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, rgba(201, 168, 76, 0.3), transparent);
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    flex-shrink: 0;
}

.step-item h4 {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.step-item p {
    font-size: 0.87rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
    font-weight: 300;
}

.how-visual {
    position: relative;
}

.how-card-stack {
    position: relative;
    padding: 2rem;
}

.mock-card {
    background: linear-gradient(135deg, var(--dark3), var(--dark2));
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 12px;
    padding: 2rem;
    position: relative;
}

.mock-card::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 13px;
    background: linear-gradient( 135deg, rgba(201, 168, 76, 0.2), transparent, rgba(201, 168, 76, 0.1));
    z-index: -1;
}

.mock-balance-label {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.3rem;
}

.mock-balance {
    font-family: "Cormorant Garamond", serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.3rem;
}

.mock-growth {
    font-size: 0.8rem;
    color: #4ade80;
    display: flex;
    align-items: center;
    gap: 4px;
}


/* ══════════════════════════════════════
       GOLD CALCULATOR
    ══════════════════════════════════════ */

.calc-section {
    padding: 7rem 0;
    background: var(--dark);
    position: relative;
}

.calc-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient( 90deg, transparent, rgba(201, 168, 76, 0.2), transparent);
}

.calc-box {
    background: var(--dark2);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 8px;
    padding: 2.5rem;
}

.calc-slider-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.calc-label-text {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.calc-value {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gold);
}

input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    height: 4px;
    background: rgba(201, 168, 76, 0.15);
    border-radius: 2px;
    outline: none;
    margin-bottom: 2rem;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--gold);
    cursor: pointer;
    box-shadow: 0 0 10px rgba(201, 168, 76, 0.5);
}

.calc-result {
    background: linear-gradient( 135deg, rgba(201, 168, 76, 0.1), rgba(139, 105, 20, 0.05));
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 6px;
    padding: 2rem;
    text-align: center;
}

.calc-result-label {
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.calc-result-val {
    font-family: "Cormorant Garamond", serif;
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.calc-note {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.35);
}


/* ══════════════════════════════════════
       TESTIMONIALS
    ══════════════════════════════════════ */

.testimonials {
    background: var(--dark2);
    padding: 7rem 0;
}

.testi-card {
    background: var(--dark);
    border: 1px solid rgba(201, 168, 76, 0.08);
    border-radius: 6px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
}

.testi-card:hover {
    border-color: rgba(201, 168, 76, 0.25);
    transform: translateY(-3px);
}

.testi-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 1rem;
    color: var(--gold);
}

.testi-quote {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testi-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    flex-shrink: 0;
}

.testi-name {
    font-weight: 600;
    font-size: 0.88rem;
}

.testi-location {
    font-size: 0.75rem;
    color: var(--text-muted);
}


/* ══════════════════════════════════════
       STATS BAND
    ══════════════════════════════════════ */

.stats-band {
    background: linear-gradient(135deg, var(--dark3), var(--dark2));
    border-top: 1px solid rgba(201, 168, 76, 0.1);
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
    padding: 4rem 0;
}

.stat-box {
    text-align: center;
    padding: 1rem;
}

.stat-box-val {
    font-family: "Cormorant Garamond", serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-box-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: rgba(201, 168, 76, 0.15);
    margin: auto;
}


/* ══════════════════════════════════════
       FAQ
    ══════════════════════════════════════ */

.faq-section {
    padding: 7rem 0;
    background: var(--dark);
}

.accordion-item {
    background: var(--dark2) !important;
    border: 1px solid rgba(201, 168, 76, 0.1) !important;
    border-radius: 4px !important;
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.accordion-button {
    background: var(--dark2) !important;
    color: var(--white) !important;
    font-family: "Cormorant Garamond", serif !important;
    font-size: 1.15rem !important;
    font-weight: 600 !important;
    padding: 1.2rem 1.5rem !important;
    box-shadow: none !important;
}

.accordion-button::after {
    filter: brightness(0) invert(0.7) sepia(1) saturate(2) hue-rotate(10deg);
}

.accordion-button:not(.collapsed) {
    color: var(--gold) !important;
    background: rgba(201, 168, 76, 0.05) !important;
}

.accordion-body {
    background: var(--dark2) !important;
    color: rgba(255, 255, 255, 0.55) !important;
    font-size: 0.88rem !important;
    line-height: 1.9 !important;
    padding: 0 1.5rem 1.5rem !important;
}


/* ══════════════════════════════════════
       CTA SECTION
    ══════════════════════════════════════ */

.cta-section {
    padding: 7rem 0;
    background: linear-gradient(135deg, var(--dark2), var(--dark3));
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: "";
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 400px;
    background: radial-gradient( ellipse, rgba(201, 168, 76, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.cta-section h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-input-group {
    max-width: 480px;
    margin: 0 auto 1.5rem;
    position: relative;
}

.cta-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(201, 168, 76, 0.25);
    border-radius: 3px;
    color: var(--white);
    font-family: "Poppins", sans-serif;
    font-size: 0.9rem;
    padding: 14px 150px 14px 20px;
    outline: none;
    transition: border-color 0.3s;
}

.cta-input:focus {
    border-color: var(--gold);
}

.cta-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.cta-input-btn {
    position: absolute;
    right: 4px;
    top: 4px;
    bottom: 4px;
}


/* ══════════════════════════════════════
       FOOTER
    ══════════════════════════════════════ */

footer {
    background: var(--dark);
    border-top: 1px solid rgba(201, 168, 76, 0.1);
    padding: 5rem 0 2rem;
}

.footer-brand {
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.footer-brand span {
    color: var(--white);
    font-weight: 400;
}

.footer-desc {
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.9;
    font-weight: 300;
    max-width: 280px;
}

.footer-heading {
    font-family: "Poppins", sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 1.5rem;
}

.social-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(201, 168, 76, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.3s;
    cursor: pointer;
}

.social-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 168, 76, 0.08);
}

.footer-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copy {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.25);
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.25);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-legal a:hover {
    color: var(--gold);
}


/* ══════════════════════════════════════
       TRUST BADGES
    ══════════════════════════════════════ */

.trust-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 5px 14px;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.45);
}

.trust-badge i {
    color: var(--gold);
}


/* ══════════════════════════════════════
       RESPONSIVE
    ══════════════════════════════════════ */

@media (max-width: 991px) {
    .hero-coin {
        display: none;
    }
    .hero h1 {
        font-size: 3rem;
    }
}

@media (max-width: 767px) {
    .hero-stats {
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .stat-divider {
        display: none;
    }
}


/* ══════════════════════════════════════
       ANIMATIONS
    ══════════════════════════════════════ */

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

@media (max-width: 991px) {
    .hero-coin {
        display: none;
    }
    .hero h1 {
        font-size: 3rem;
    }
}

@media (max-width: 767px) {
    .hero-stats {
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .stat-divider {
        display: none;
    }
}


/* ══════════════════════════════════════
       ANIMATIONS
    ══════════════════════════════════════ */

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}


/****************************************** Login **/


/* :root {
    --gold: #C9A84C;
    --gold-light: #F0D080;
    --gold-dark: #8B6914;
    --dark: #0D0B07;
    --dark2: #1A1710;
    --dark3: #252218;
    --text-muted: #8A8070;
    --white: #FFFFFF;
} */


/* ── LOGIN LAYOUT ── */

.login-wrap {
    min-height: calc(100vh - 80px);
    display: flex;
}

.login-left {
    flex: 1;
    background: linear-gradient(145deg, var(--dark2), var(--dark3));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 3rem;
    position: relative;
    overflow: hidden;
}

.login-left::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.1) 0%, transparent 65%);
}

.login-left::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 105, 20, 0.08) 0%, transparent 60%);
}

.login-left-inner {
    position: relative;
    z-index: 1;
    max-width: 420px;
}

.brand-mark {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 3px;
    margin-bottom: 2.5rem;
}

.brand-mark span {
    color: var(--white);
    font-weight: 400;
}

.login-left h2 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.2rem;
}

.login-left h2 em {
    color: var(--gold);
    font-style: normal;
}

.login-left p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.9;
    font-weight: 300;
    margin-bottom: 2.5rem;
}

.trust-row2 {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-icon {
    width: 36px;
    height: 36px;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}

.trust-text {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 300;
}


/* Gold Coin Decoration */

.deco-coin {
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #F0D080, #C9A84C 45%, #8B6914 70%, #3D2E08);
    box-shadow: -15px 10px 40px rgba(0, 0, 0, 0.5), inset -10px -10px 20px rgba(0, 0, 0, 0.3), inset 8px 8px 15px rgba(255, 255, 255, 0.12);
    animation: floatCoin 5s ease-in-out infinite;
    opacity: 0.6;
}

@keyframes floatCoin {
    0%,
    100% {
        transform: translateY(-50%);
    }
    50% {
        transform: translateY(calc(-50% - 12px));
    }
}


/* ── LOGIN FORM SIDE ── */

.login-right {
    width: 460px;
    flex-shrink: 0;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2.5rem;
    border-left: 1px solid rgba(201, 168, 76, 0.1);
}

.form-wrap {
    width: 100%;
    max-width: 380px;
}

.form-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.form-subtitle {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-label-custom {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.5rem;
    display: block;
}

.input-icon-wrap {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    width: 16px;
    height: 16px;
}

.input-icon-right {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    cursor: pointer;
    width: 16px;
    height: 16px;
    transition: color 0.2s;
}

.input-icon-right:hover {
    color: var(--gold);
}

.form-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 3px;
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 0.88rem;
    padding: 12px 42px 12px 42px;
    outline: none;
    transition: border-color 0.3s, background 0.3s;
}

.form-input:focus {
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.05);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

.form-check-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.form-check-input:checked {
    background-color: var(--gold);
    border-color: var(--gold);
}

.form-check-input {
    background-color: transparent;
    border-color: rgba(201, 168, 76, 0.3);
}

.forgot-link {
    font-size: 0.78rem;
    color: var(--gold);
    text-decoration: none;
    transition: color 0.2s;
}

.forgot-link:hover {
    color: var(--gold-light);
}


/* 
.btn-gold {
    width: 100%;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
    color: var(--dark);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 14px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.btn-gold:hover {
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.45);
    transform: translateY(-2px);
}

.btn-gold:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
} */

.divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.07);
}

.divider span {
    font-size: 0.72rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.social-login {
    display: flex;
    gap: 0.75rem;
}

.social-btn:hover {
    border-color: rgba(201, 168, 76, 0.3);
    color: var(--white);
    background: rgba(201, 168, 76, 0.05);
}

.register-link {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.register-link a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
}

.register-link a:hover {
    color: var(--gold-light);
}

.error-msg {
    font-size: 0.75rem;
    color: #F87171;
    margin-top: 4px;
    display: none;
}


/* ── FOOTER ── */

@media (max-width: 900px) {
    .login-left {
        display: none;
    }
    .login-right {
        width: 100%;
        border-left: none;
    }
}

@media (max-width: 480px) {
    .login-right {
        padding: 2rem 1.5rem;
    }
}

.form-check-label a {
    color: #c9a84c;
    text-decoration: none;
}

.login-link {
    text-align: center;
    margin-top: 1.2rem;
    font-size: 0.82rem;
    color: #8a8070;
}

.login-link a {
    color: #c9a84c;
    text-decoration: none;
    font-weight: 600;
}

.bonus-card {
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.12), rgba(139, 105, 20, 0.06));
    border: 1px solid rgba(201, 168, 76, 0.25);
    border-radius: 6px;
    padding: 1.5rem;
    margin-top: 2rem;
    text-align: center;
}

.bonus-amount {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #c9a84c;
    line-height: 1;
}

.bonus-label {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 4px;
}


/**************************************About us **/


/* MISSION */

.mission-section {
    padding: 6rem 0;
    background: var(--dark);
}

.mission-card {
    background: var(--dark2);
    border: 1px solid rgba(201, 168, 76, 0.1);
    border-radius: 6px;
    padding: 3rem;
    height: 100%;
    transition: all 0.4s;
}

.mission-card:hover {
    border-color: rgba(201, 168, 76, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.mission-icon {
    width: 56px;
    height: 56px;
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.18);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--gold);
}

.mission-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.mission-card p {
    font-size: 0.87rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.9;
    font-weight: 300;
}


/* STORY */

.story-section {
    padding: 6rem 0;
    background: var(--dark2);
}

.story-timeline {
    position: relative;
    padding-left: 3rem;
}

.story-timeline::before {
    content: '';
    position: absolute;
    left: 11px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--gold), rgba(201, 168, 76, 0.1));
}

.timeline-item {
    position: relative;
    padding-bottom: 2.5rem;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -3rem;
    top: 4px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 12px rgba(201, 168, 76, 0.4);
}

.timeline-dot::after {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--dark);
}

.timeline-year {
    font-family: 'Poppins', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 0.3rem;
}

.timeline-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.timeline-item p {
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.8;
    font-weight: 300;
}


/* TEAM */

.team-section {
    padding: 6rem 0;
    background: var(--dark);
}

.team-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--dark2);
    border: 1px solid rgba(201, 168, 76, 0.08);
    border-radius: 6px;
    transition: all 0.4s;
    height: 100%;
}

.team-card:hover {
    border-color: rgba(201, 168, 76, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0 auto 1.2rem;
}

.team-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.team-role {
    font-family: 'Poppins', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.team-bio {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.7;
    font-weight: 300;
}

.team-socials {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 1.2rem;
}

.team-social-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(201, 168, 76, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s;
}

.team-social-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}


/* VALUES */

.values-section {
    padding: 6rem 0;
    background: var(--dark2);
}

.value-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(201, 168, 76, 0.06);
}

.value-item:last-child {
    border-bottom: none;
}

.value-icon {
    width: 44px;
    height: 44px;
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}

.value-content h4 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.value-content p {
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.8;
    font-weight: 300;
}


/* STATS */

.stats-band {
    background: linear-gradient(135deg, var(--dark3), var(--dark2));
    border-top: 1px solid rgba(201, 168, 76, 0.1);
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
    padding: 4rem 0;
}

.stat-box {
    text-align: center;
    padding: 1rem;
}

.stat-box-val {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-box-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}


/* CTA */

.about-cta {
    padding: 6rem 0;
    background: var(--dark);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-cta::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(201, 168, 76, 0.07) 0%, transparent 65%);
    pointer-events: none;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
    color: var(--dark);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 14px 36px;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-gold:hover {
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.45);
    transform: translateY(-2px);
    color: var(--dark);
}

.btn-outline-gold {
    background: transparent;
    color: var(--gold);
    border: 1px solid rgba(201, 168, 76, 0.45);
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 13px 36px;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-outline-gold:hover {
    background: rgba(201, 168, 76, 0.08);
    color: var(--gold-light);
}


/************************ Contact Us */


/* CONTACT CARDS */

.contact-cards-section {
    padding: 5rem 0;
    background: var(--dark);
}

.contact-card {
    background: var(--dark2);
    border: 1px solid rgba(201, 168, 76, 0.1);
    border-radius: 6px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.contact-card:hover {
    border-color: rgba(201, 168, 76, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.18);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    color: var(--gold);
}

.contact-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.contact-card p {
    font-size: 0.83rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 1rem;
}

.contact-card a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: color 0.2s;
}

.contact-card a:hover {
    color: var(--gold-light);
}

.availability-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(74, 222, 128, 0.1);
    border: 1px solid rgba(74, 222, 128, 0.2);
    color: #4ADE80;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 3px 10px;
    border-radius: 20px;
    margin-top: 0.5rem;
}

.availability-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4ADE80;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.4;
    }
}


/* CONTACT FORM */

.contact-form-section {
    padding: 5rem 0;
    background: var(--dark2);
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-label-custom {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 0.5rem;
    display: block;
}

.input-icon-wrap {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    width: 15px;
    height: 15px;
}

.textarea-icon {
    position: absolute;
    left: 14px;
    top: 16px;
    color: var(--text-muted);
    width: 15px;
    height: 15px;
}

.form-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 3px;
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 0.87rem;
    padding: 12px 14px 12px 42px;
    outline: none;
    transition: border-color 0.3s, background 0.3s;
}

.form-input:focus {
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.04);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

.form-textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 3px;
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 0.87rem;
    padding: 12px 14px 12px 42px;
    outline: none;
    transition: border-color 0.3s, background 0.3s;
    resize: vertical;
    min-height: 140px;
}

.form-textarea:focus {
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.04);
}

.form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

.form-select-custom {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 3px;
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 0.87rem;
    padding: 12px 14px;
    outline: none;
    transition: border-color 0.3s;
    -webkit-appearance: none;
    cursor: pointer;
}

.form-select-custom:focus {
    border-color: var(--gold);
}

.form-select-custom option {
    background: var(--dark2);
    color: var(--white);
}

.error-msg {
    font-size: 0.72rem;
    color: #F87171;
    margin-top: 4px;
    display: none;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
    color: var(--dark);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.84rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 14px 36px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-gold:hover {
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.45);
    transform: translateY(-2px);
}

.btn-gold:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}


/* Form info side */

.form-info-card {
    background: var(--dark);
    border: 1px solid rgba(201, 168, 76, 0.1);
    border-radius: 6px;
    padding: 2.5rem;
    height: 100%;
}

.form-info-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.form-info-card p {
    font-size: 0.87rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.9;
    font-weight: 300;
    margin-bottom: 2rem;
}

.info-list {
    list-style: none;
    padding: 0;
}

.info-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(201, 168, 76, 0.07);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
}

.info-list li:last-child {
    border-bottom: none;
}

.info-list .i-icon {
    color: var(--gold);
    flex-shrink: 0;
}

.response-time {
    background: rgba(201, 168, 76, 0.07);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 4px;
    padding: 1.2rem;
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.response-time p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
    margin: 0;
}

.response-time strong {
    color: var(--gold-light);
}


/* OFFICES */

.offices-section {
    padding: 5rem 0;
    background: var(--dark);
}

.office-card {
    background: var(--dark2);
    border: 1px solid rgba(201, 168, 76, 0.1);
    border-radius: 6px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s;
}

.office-card:hover {
    border-color: rgba(201, 168, 76, 0.28);
    transform: translateY(-3px);
}

.office-city {
    font-family: 'Poppins', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.4rem;
}

.office-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.office-info {
    list-style: none;
    padding: 0;
}

.office-info li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.45);
    padding: 4px 0;
    font-weight: 300;
}

.office-info .oi {
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}


/******************************** FAq */


/* HERO */

.faq-hero {
    padding: 6rem 0 4rem;
    background: linear-gradient(145deg, var(--dark2), var(--dark3));
    position: relative;
    overflow: hidden;
    text-align: center;
}

.faq-hero::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(201, 168, 76, 0.07) 0%, transparent 65%);
}

.section-label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.gold-line {
    display: block;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    margin-bottom: 1.5rem;
}


/* SEARCH */

.faq-search-wrap {
    max-width: 560px;
    margin: 2.5rem auto 0;
    position: relative;
}

.faq-search-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 4px;
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    padding: 16px 20px 16px 52px;
    outline: none;
    transition: border-color 0.3s, background 0.3s;
}

.faq-search-input:focus {
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.05);
}

.faq-search-input::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.search-icon-faq {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    width: 20px;
    height: 20px;
}

.faq-search-clear {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    cursor: pointer;
    width: 16px;
    height: 16px;
    display: none;
    transition: color 0.2s;
}

.faq-search-clear:hover {
    color: var(--white);
}


/* CATEGORIES */

.faq-categories {
    padding: 3rem 0 0;
    background: var(--dark);
}

.cat-tabs {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

.cat-tab {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(201, 168, 76, 0.1);
    border-radius: 3px;
    color: rgba(255, 255, 255, 0.55);
    font-family: 'Poppins', sans-serif;
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 8px 20px;
    cursor: pointer;
    transition: all 0.3s;
}

.cat-tab:hover,
.cat-tab.active {
    background: rgba(201, 168, 76, 0.1);
    border-color: rgba(201, 168, 76, 0.35);
    color: var(--gold);
}


/* FAQ MAIN */

.faq-main {
    padding: 3rem 0 6rem;
    background: var(--dark);
}

.faq-category-section {
    margin-bottom: 3rem;
}

.cat-heading {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.cat-heading-icon {
    width: 38px;
    height: 38px;
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}

.cat-heading h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.cat-heading span {
    font-family: 'Poppins', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.05);
    padding: 3px 10px;
    border-radius: 20px;
    margin-left: auto;
}


/* ACCORDION */

.accordion-item {
    background: var(--dark2)!important;
    border: 1px solid rgba(201, 168, 76, 0.08)!important;
    border-radius: 4px!important;
    margin-bottom: 0.6rem;
    overflow: hidden;
    transition: border-color 0.3s;
}

.accordion-item:hover {
    border-color: rgba(201, 168, 76, 0.2)!important;
}

.accordion-button {
    background: var(--dark2)!important;
    color: var(--white)!important;
    font-family: 'Cormorant Garamond', serif!important;
    font-size: 1.1rem!important;
    font-weight: 600!important;
    padding: 1.2rem 1.5rem!important;
    box-shadow: none!important;
    transition: all 0.3s;
}

.accordion-button:not(.collapsed) {
    color: var(--gold)!important;
    background: rgba(201, 168, 76, 0.05)!important;
}

.accordion-button::after {
    filter: brightness(0) invert(0.6) sepia(1) saturate(2) hue-rotate(10deg);
}

.accordion-body {
    background: var(--dark2)!important;
    color: rgba(255, 255, 255, 0.55)!important;
    font-size: 0.88rem!important;
    line-height: 1.9!important;
    padding: 0 1.5rem 1.5rem!important;
    font-weight: 300;
}

.accordion-body a {
    color: var(--gold);
    text-decoration: none;
}

.accordion-body a:hover {
    color: var(--gold-light);
}

.helpful-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
}

.helpful-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    color: rgba(255, 255, 255, 0.35);
    font-family: 'Poppins', sans-serif;
    font-size: 0.72rem;
    padding: 4px 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.2s;
}

.helpful-btn:hover,
.helpful-btn.voted {
    border-color: rgba(201, 168, 76, 0.35);
    color: var(--gold);
}


/* NO RESULTS */

.no-results {
    text-align: center;
    padding: 3rem;
    display: none;
}

.no-results h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

.no-results p {
    font-size: 0.87rem;
    color: var(--text-muted);
}


/* POPULAR */

.popular-section {
    background: var(--dark2);
    padding: 4rem 0;
}

.popular-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(201, 168, 76, 0.07);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 3px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.78rem;
    padding: 6px 14px;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.popular-tag:hover {
    border-color: rgba(201, 168, 76, 0.35);
    color: var(--gold);
}


/* CTA */

.faq-cta {
    padding: 5rem 0;
    background: var(--dark);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.faq-cta::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(201, 168, 76, 0.06) 0%, transparent 65%);
    pointer-events: none;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
    color: var(--dark);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 14px 36px;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-gold:hover {
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.45);
    transform: translateY(-2px);
    color: var(--dark);
}

.btn-outline-gold {
    background: transparent;
    color: var(--gold);
    border: 1px solid rgba(201, 168, 76, 0.45);
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 13px 36px;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-outline-gold:hover {
    background: rgba(201, 168, 76, 0.08);
    color: var(--gold-light);
}