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

/* ================= BODY ================= */
body {
    font-family: 'Inter', sans-serif;
    color: #1F2937;
    line-height: 1.5;
    overflow-x: hidden;
    background-color: #FFFFFF;
    margin: 0;
}

/* ================= CONTAINER ================= */
.container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding-left: 2rem;
    padding-right: 2rem;
}

/* ================= HEADER ================= */
.header {
    background: linear-gradient(90deg, #0A2540, #0f3a5d);
    color: #FFFFFF;
    padding: 1.2rem 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

/* ================= LOGO ================= */
.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: rgba(212, 175, 55, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon i {
    color: #D4AF37;
    font-size: 0.9rem;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.logo-top {
    font-size: 0.95rem;
    font-weight: 600;
    color: #FFFFFF;
}

.logo-bottom {
    font-size: 0.85rem;
    font-weight: 700;
    color: #D4AF37;
    letter-spacing: 1px;
}

/* ================= NAV ================= */
.nav {
    background: rgba(255, 255, 255, 0.08);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.nav-links {
    list-style: none;
    display: none;
}

.nav-links li {
    margin-bottom: 1rem;
}

.nav-links a {
    color: #FFFFFF;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #D4AF37;
}

.nav-cta {
    display: none;
    background: linear-gradient(135deg, #D4AF37, #B8860B);
    color: #0A2540;
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
}

.menu-toggle {
    font-size: 1.5rem;
    cursor: pointer;
    color: #FFFFFF;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
        gap: 1rem;
        align-items: center;
    }

    .nav-links li {
        margin-bottom: 0;
    }

    .nav-cta {
        display: inline-block;
        margin-left: 2rem;
    }

    .menu-toggle {
        display: none;
    }
}

.nav-links.active {
    display: block;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: #0A2540;
    padding: 1.5rem;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ================= HERO ================= */
.hero {
    background: radial-gradient(circle at right, rgba(212,175,55,0.12), transparent 45%),
                linear-gradient(135deg, #0A2540, #0f3a5d);
    color: #FFFFFF;
    padding: 4.5rem 0 4rem 0;
}

.hero-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-left {
    max-width: 620px;
    margin-top: 0;
}

.hero-badge {
    border: 1px solid rgba(212,175,55,0.3);
    padding: 0.3rem 0.9rem;
    border-radius: 20px;
    font-size: 0.75rem;
    margin-bottom: 0.8rem;
    color: #D4AF37;
    display: inline-block;
}

.hero-title {
    font-size: 3.8rem;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.gold {
    color: #D4AF37;
}

.hero-subtitle {
    color: #cbd5e1;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-btn {
    background: linear-gradient(135deg, #D4AF37, #B8860B);
    color: #0A2540;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
    box-shadow: 0 10px 25px rgba(212,175,55,0.25);
}

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

.hero-btn-outline {
    border: 1px solid rgba(255,255,255,0.3);
    padding: 1rem 2rem;
    border-radius: 50px;
}

.hero-btn-outline:hover {
    background: rgba(255,255,255,0.08);
}

/* Orbit */
.orbit-system {
    width: 360px;
    height: 360px;
    position: relative;
}

.orbit {
    position: absolute;
    border: 1px solid rgba(212,175,55,0.2);
    border-radius: 50%;
}

.orbit-1 { width: 220px; height: 220px; top: 70px; left: 70px; }
.orbit-2 { width: 300px; height: 300px; top: 30px; left: 30px; }
.orbit-3 { width: 360px; height: 360px; }

.center-icon {
    position: absolute;
    width: 90px;
    height: 90px;
    background: rgba(212,175,55,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* 🔥 FIXED GOLD CENTER ICON */
.center-icon i {
    color: #D4AF37 !important;
    font-size: 1.6rem;
}

/* Orbit items */
.orbit-item {
    position: absolute;
    top: 50%;
    left: 50%;
    transform-origin: center;
    animation: rotateOrbit 10s linear infinite;
}

/* 🔥 FIXED GOLD ORBIT ICONS */
.orbit-item i {
    color: #D4AF37 !important;
    font-size: 1.2rem;
}

.item-2 { animation-duration: 14s; }

@keyframes rotateOrbit {
    0% { transform: rotate(0deg) translateX(150px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(150px) rotate(-360deg); }
}

/* STATS */
.hero-stats {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.08);

    display: flex;
    justify-content: space-between;
    text-align: center;

    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.stat h3 {
    font-size: 1.8rem;
}

.stat p {
    font-size: 0.8rem;
    color: #94a3b8;
}

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

    .hero-buttons {
        justify-content: center;
    }
}
/* ================= HOW IT WORKS ================= */
.how-it-works {
    background: #f8fafc;
    padding: 6rem 0;
}

/* Header */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.section-badge {
    display: inline-block;
    border: 1px solid #d1d5db;
    padding: 0.3rem 0.9rem;
    border-radius: 20px;
    font-size: 0.75rem;
    margin-bottom: 1rem;
    color: #6b7280;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #0f172a;
}

.section-subtitle {
    color: #64748b;
}

/* Cards */
.steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

/* Card */
.step-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

/* Hover */
.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

/* Icon */
.step-icon {
    position: relative;
    width: 60px;
    height: 60px;
    background: #0A2540;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.step-icon i {
    color: #D4AF37;
}

/* Number bubble */
.step-number {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #D4AF37;
    color: #0A2540;
    font-size: 0.7rem;
    padding: 4px 7px;
    border-radius: 50%;
    font-weight: 600;
}

/* Text */
.step-card h3 {
    margin-bottom: 0.7rem;
    color: #0f172a;
}

.step-card p {
    color: #64748b;
    margin-bottom: 1rem;
}

/* Tag */
.step-tag {
    display: inline-block;
    font-size: 0.75rem;
    color: #D4AF37;
    border: 1px solid rgba(212,175,55,0.3);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
}

/* CTA */
.section-cta {
    text-align: center;
    margin-top: 3rem;
}

.section-cta p {
    margin-bottom: 1rem;
    color: #475569;
}

/* ================= GRID ================= */
@media (min-width: 768px) {
    .steps {
        grid-template-columns: repeat(3, 1fr);
    }
}
/* ================= FADE IN (HEADER) ================= */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================= CARD STAGGER ANIMATION ================= */
.step-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;

    /* 🔥 ADDED ANIMATION */
    opacity: 0;
    transform: translateX(-40px);
    animation: fadeLeft 0.8s ease forwards;
}

/* Delay per card (LEFT → RIGHT) */
.step-card:nth-child(1) {
    animation-delay: 0.2s;
}

.step-card:nth-child(2) {
    animation-delay: 0.4s;
}

.step-card:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes fadeLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ================= SAFE SCROLL ANIMATION FIX ================= */

/* Reset animation so it doesn't run on load */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
    animation: none !important;
}

/* When visible */
.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}

/* Fix cards WITHOUT breaking hover */
.step-card {
    opacity: 0;
    transform: translateX(-40px);
}

/* When visible */
.step-card.show {
    opacity: 1;
    transform: translateX(0);
    transition: all 0.8s ease;
}

/* Stagger delay */
.step-card:nth-child(1).show { transition-delay: 0.2s; }
.step-card:nth-child(2).show { transition-delay: 0.4s; }
.step-card:nth-child(3).show { transition-delay: 0.6s; }

/* ================= HERO SCROLL ANIMATION ================= */

/* Ensure hero elements animate like others */
.hero-left,
.hero-right,
.hero-stats {
    opacity: 0;
    transform: translateY(40px);
}

/* When visible */
.hero-left.show,
.hero-right.show,
.hero-stats.show {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease;
}

/* Optional stagger for nicer feel */
.hero-right.show {
    transition-delay: 0.2s;
}

.hero-stats.show {
    transition-delay: 0.4s;
}

/* ================= ABOUT SECTION ================= */
.about-section {
    padding: 6rem 0;
    background: #ffffff;
}

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

/* IMAGE */
.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

/* 🔥 FIXED IMAGE CONTROL */
.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Overlay */
.image-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;

    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1rem;              /* 🔥 prevents collision */

    z-index: 2;             /* 🔥 ensures it stays above image */
}

/* 🔥 CONTROL TEXT WIDTH */
.overlay-text {
    background: rgba(0,0,0,0.6);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    color: #fff;
    backdrop-filter: blur(10px);

    max-width: 65%;         /* 🔥 prevents pushing card */
}

.overlay-text span {
    font-size: 0.7rem;
    color: #D4AF37;
}

/* 🔥 STABLE CARD SIZE */
.overlay-card {
    background: #0A2540;
    color: #fff;
    padding: 1.2rem;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);

    min-width: 120px;       /* 🔥 prevents collapse */
}

.overlay-card h3 {
    color: #D4AF37;
}

/* RIGHT TEXT */
.about-text p {
    margin-bottom: 1rem;
    color: #475569;
}

/* FEATURES GRID */
.about-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

/* FEATURE CARD */
.feature-card {
    display: flex;
    gap: 1rem;
    align-items: center;
    background: #f1f5f9;
    padding: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: #e2e8f0;
}

/* DISCLAIMER */
.disclaimer {
    margin-top: 2rem;
    font-size: 0.8rem;
    color: #64748b;
}

/* ================= DESKTOP ================= */
@media (min-width: 900px) {
    .about-container {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }

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

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

    .about-image {
    min-height: 420px; /* 🔥 creates visible space */
    background: #e5e7eb; /* light placeholder */
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

/* ================= SERVICES ================= */
.services-section {
    background: linear-gradient(180deg, #071a2d, #0A2540);
    padding: 6rem 0;
}

/* HEADER COLORS */
.light {
    color: #fff;
}

.section-badge.dark {
    border: 1px solid rgba(255,255,255,0.2);
    color: #cbd5e1;
}

/* GRID */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

/* CARD */
.service-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 1.8rem;
    border-radius: 18px;
    color: #cbd5e1;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

/* HOVER */
.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212,175,55,0.4);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* TITLE */
.service-card h3 {
    color: #fff;
    margin: 1rem 0 0.5rem;
}

/* TOP */
.card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ICON */
.icon {
    color: #D4AF37;
    font-size: 1.2rem;
}

/* TAG */
.tag {
    font-size: 0.7rem;
    padding: 0.3rem 0.7rem;
    border-radius: 20px;
    background: rgba(255,255,255,0.08);
}

.tag.gold {
    background: rgba(212,175,55,0.15);
    color: #D4AF37;
}

/* HIGHLIGHT CARD */
.services-highlight {
    margin-top: 3rem;
    background: rgba(255,255,255,0.04);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

/* LEFT */
.highlight-left {
    display: flex;
    gap: 1rem;
    color: #cbd5e1;
}

.highlight-left h3 {
    color: #fff;
}

/* RIGHT TAG */
.highlight-tag {
    border: 1px solid rgba(255,255,255,0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    color: #cbd5e1;
}

/* CTA */
.services-cta {
    margin-top: 2rem;
    text-align: center;
    color: #94a3b8;
}

.services-cta a {
    color: #D4AF37;
    text-decoration: underline;
}

/* ================= DESKTOP ================= */
@media (min-width: 900px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ================= DIFFERENCE ================= */
.difference-section {
    padding: 6rem 0;
    background: #f8fafc;
}

/* GRID */
.difference-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

/* CARD */
.diff-card {
    background: #ffffff;
    padding: 1.8rem;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

/* HOVER */
.diff-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* TITLE */
.diff-card h4 {
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

/* TEXT */
.diff-card p {
    color: #475569;
    font-size: 0.9rem;
}

/* TRUST PANEL */
.trust-panel {
    margin-top: 4rem;
    background: #0A2540;
    color: #fff;
    border-radius: 20px;
    padding: 2.5rem;
}

/* LEFT */
.trust-left h3 {
    margin-bottom: 1rem;
}

.trust-left p {
    color: #cbd5e1;
}

/* RIGHT TAGS */
.trust-right {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.trust-right span {
    border: 1px solid rgba(255,255,255,0.2);
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.8rem;
    color: #cbd5e1;
}

/* BOTTOM NOTE */
.trust-bottom {
    margin-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1rem;
    font-size: 0.75rem;
    color: #94a3b8;
}

/* ================= DESKTOP ================= */
@media (min-width: 900px) {
    .difference-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .trust-panel {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .trust-bottom {
        grid-column: span 2;
    }
}

/* ================= FAQ SECTION ================= */
.faq-section {
    padding: 3.5rem 0 4rem;
    background: #f8fafc;
}

/* HEADER SPACING */
.section-header {
    margin-bottom: 2rem;
}

/* LAYOUT */
.faq-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-top: 2rem;
}

/* FAQ ITEMS */
.faq-item {
    background: #ffffff;
    border-radius: 14px;
    margin-bottom: 0.8rem;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

/* QUESTION (FIXED FONT) */
.faq-question {
    width: 100%;
    padding: 1.1rem 1.5rem;

    background: none;
    border: none;

    text-align: left;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1e293b;

    display: flex;
    justify-content: space-between;
    align-items: center;

    cursor: pointer;
}

/* ARROW */
.faq-question span {
    font-size: 0.8rem;
    color: #64748b;
}

/* ANSWER */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 1.5rem;
    color: #475569;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 1rem 1.5rem;
}

/* CONTACT CARD */
.contact-card {
    background: linear-gradient(180deg, #071a2d, #0A2540);
    color: #fff;
    padding: 2rem;
    border-radius: 20px;
    margin-bottom: 2rem;
}

/* ICON */
.contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(212,175,55,0.15);
    color: #D4AF37;
    border-radius: 12px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.contact-card p {
    color: #cbd5e1;
    margin: 1rem 0;
}

/* GOLD BUTTON */
.contact-card .btn-primary {
    display: inline-block;
    margin-top: 1rem;

    background: linear-gradient(135deg, #D4AF37, #B8962E);
    color: #0A2540;

    padding: 0.7rem 1.6rem;
    border-radius: 30px;

    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-card .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212,175,55,0.3);
}

/* QUICK FACTS */
.quick-facts {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 16px;
}

.quick-facts h4 {
    margin-bottom: 1rem;
}

.fact {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.fact:last-child {
    border-bottom: none;
}

/* DESKTOP */
@media (min-width: 900px) {
    .faq-container {
        grid-template-columns: 1.5fr 1fr;
    }
}

/* ================= CTA SECTION ================= */
.cta-section {
    padding: 4rem 0 5rem;
    background: linear-gradient(180deg, #071a2d, #0A2540);
}

/* CENTER ALIGN */
.section-header.center {
    text-align: center;
}

/* LIGHT TEXT */
.light {
    color: #ffffff;
}

/* GRID */
.cta-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-top: 2.5rem;
}

/* FORM */
.cta-form {
    background: rgba(255,255,255,0.05);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(12px);
}

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

/* GROUP */
.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    font-size: 0.75rem;
    color: #cbd5e1;
    display: block;
    margin-bottom: 0.3rem;
}

/* INPUTS */
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
    color: #fff;
    outline: none;
    transition: all 0.3s ease;
}

.form-group textarea {
    min-height: 120px;
}

/* FOCUS */
.form-group input:focus,
.form-group textarea:focus {
    border-color: rgba(212,175,55,0.5);
    box-shadow: 0 0 0 2px rgba(212,175,55,0.2);
}

/* BUTTON */
.cta-button {
    width: 100%;
    margin-top: 1rem;

    background: linear-gradient(135deg, #D4AF37, #B8962E);
    color: #0A2540;

    padding: 0.9rem;
    border-radius: 40px;

    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(212,175,55,0.3);
}

/* NOTE */
.form-note {
    font-size: 0.75rem;
    color: #94a3b8;
    margin-top: 0.8rem;
}

/* RIGHT */
.cta-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* CONTACT BOX */
.contact-box {
    background: rgba(255,255,255,0.05);
    padding: 1.5rem;
    border-radius: 18px;
    color: #fff;
}

/* CONTACT ITEMS */
.contact-item {
    display: flex;
    gap: 0.8rem;
    margin-top: 1rem;
}

.contact-item span {
    color: #D4AF37;
}

/* GUARANTEE */
.guarantee-box {
    background: rgba(255,255,255,0.05);
    padding: 2rem;
    border-radius: 18px;
    text-align: center;
    color: #fff;
}

/* ICON */
.guarantee-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #D4AF37;
}

/* SMALL */
.small {
    font-size: 0.7rem;
    letter-spacing: 1px;
}

/* DESKTOP */
@media (min-width: 900px) {
    .cta-container {
        grid-template-columns: 1.5fr 1fr;
    }

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

/* ================= NO UPFRONT CARD ================= */
.no-upfront-card {
    display: flex;
    align-items: center;
    gap: 1rem;

    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);

    padding: 1rem 1.2rem;
    border-radius: 18px;

    color: #ffffff;

    transition: all 0.3s ease;
}

/* HOVER */
.no-upfront-card:hover {
    border-color: rgba(212,175,55,0.4);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    transform: translateY(-3px);
}

/* ICON */
.no-upfront-icon {
    width: 42px;
    height: 42px;

    background: rgba(255,255,255,0.08);
    border-radius: 12px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 1.2rem;
}

/* TEXT */
.no-upfront-text h4 {
    margin: 0;
    font-size: 0.95rem;
}

.no-upfront-text p {
    margin: 0;
    font-size: 0.8rem;
    color: #94a3b8;
}

/* ================= FOOTER ================= */
.footer {
    background: #061a2c;
    color: #cbd5e1;
    padding: 3rem 0 2rem;
}

/* LAYOUT */
.footer-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

/* LOGO */
.footer-logo {
    display: flex;
    gap: 0.6rem;
    align-items: center;
}

/* MATCH HEADER ICON STYLE */
.logo-icon {
    width: 36px;
    height: 36px;
    background: rgba(212,175,55,0.15);
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon i {
    color: #D4AF37;
    font-size: 0.9rem;
}

/* TEXT */
.footer-desc {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: #94a3b8;
}

/* LINKS */
.footer-links {
    display: flex;
    gap: 3rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-col a {
    color: #cbd5e1;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.footer-col a:hover {
    color: #D4AF37;
}

/* RIGHT */
.footer-right a {
    display: block;
    margin-bottom: 0.6rem;
    color: #cbd5e1;
}

.footer-right p {
    font-size: 0.9rem;
    color: #94a3b8;
}

/* SOCIAL ICONS */
.footer-socials {
    display: flex;
    gap: 0.6rem;
    margin-top: 0.8rem;
}

.footer-socials a {
    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255,255,255,0.06);
    border-radius: 8px;

    color: #cbd5e1;
    font-size: 0.8rem;

    transition: all 0.3s ease;
}

/* DEFAULT HOVER (subtle lift only) */
.footer-socials a:hover {
    transform: translateY(-2px);
}

/* FACEBOOK HOVER */
.footer-socials a:nth-child(1):hover {
    background: rgba(24,119,242,0.15);
    color: #1877F2;
}

/* YOUTUBE HOVER */
.footer-socials a:nth-child(2):hover {
    background: rgba(255,0,0,0.15);
    color: #FF0000;
}

/* DIVIDER */
.footer-divider {
    height: 1px;
    background: rgba(255,255,255,0.1);
    margin: 2rem 0 1.5rem;
}

/* BOTTOM */
.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 0.75rem;
    color: #94a3b8;
}

/* DESKTOP */
@media (min-width: 900px) {
    .footer-container {
        grid-template-columns: 1.5fr 1fr 1fr;
        align-items: start;
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .footer-note {
        max-width: 500px;
        text-align: right;
    }
}

/* ================= GLOBAL SMOOTH SCROLL ================= */
html {
    scroll-behavior: smooth;
}

/* ================= BUTTON GLOW SYSTEM ================= */
.btn-primary,
.cta-button {
    position: relative;
    overflow: hidden;
}

.btn-primary::after,
.cta-button::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at center, rgba(212,175,55,0.4), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-primary:hover::after,
.cta-button:hover::after {
    opacity: 1;
}

/* ================= SCROLL ANIMATION ================= */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s ease;
}

.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}

/* ================= STAGGER ANIMATION ================= */
.fade-in:nth-child(1) { transition-delay: 0.1s; }
.fade-in:nth-child(2) { transition-delay: 0.2s; }
.fade-in:nth-child(3) { transition-delay: 0.3s; }
.fade-in:nth-child(4) { transition-delay: 0.4s; }
.fade-in:nth-child(5) { transition-delay: 0.5s; }
.fade-in:nth-child(6) { transition-delay: 0.6s; }

/* ================= CARD HOVER SYSTEM ================= */
.feature-card,
.service-card,
.faq-item,
.contact-box,
.guarantee-box,
.no-upfront-card {
    transition: all 0.3s ease;
}

.feature-card:hover,
.service-card:hover,
.faq-item:hover,
.contact-box:hover,
.guarantee-box:hover,
.no-upfront-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* ================= INPUT INTERACTION ================= */
.form-group input,
.form-group textarea {
    transition: all 0.25s ease;
}

.form-group input:hover,
.form-group textarea:hover {
    border-color: rgba(212,175,55,0.3);
}

/* ================= ICON MICRO ANIMATION ================= */
.logo-icon i,
.contact-icon,
.guarantee-icon {
    transition: transform 0.3s ease;
}

.logo-icon:hover i,
.contact-icon:hover,
.guarantee-icon:hover {
    transform: scale(1.1);
}

/* ================= LINK HOVER UNDERLINE ================= */
.footer-col a,
.nav-links a {
    position: relative;
}

.footer-col a::after,
.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 2px;
    background: #D4AF37;
    transition: width 0.3s ease;
}

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

/* ================= HERO PARALLAX ================= */
.hero {
    background-attachment: fixed;
}

/* ================= SCROLLBAR ================= */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #061a2c;
}

::-webkit-scrollbar-thumb {
    background: #D4AF37;
    border-radius: 10px;
}

/* ================= STICKY HEADER IMPROVEMENT ================= */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.header.scrolled {
    padding: 0.7rem 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

/* ================= SOCIAL ICON ENHANCEMENT ================= */
.footer-socials a:hover {
    transform: translateY(-2px) scale(1.05);
}

/* FACEBOOK */
.footer-socials a:nth-child(1):hover {
    background: rgba(24,119,242,0.15);
    color: #1877F2;
}

/* YOUTUBE */
.footer-socials a:nth-child(2):hover {
    background: rgba(255,0,0,0.15);
    color: #FF0000;
}

section {
    scroll-margin-top: 90px;
}

/* ================= LEGAL PAGES ================= */
.legal-section {
    padding: 120px 0 80px;
    background: #ffffff;
}

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

.legal-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.legal-container h3 {
    margin-top: 2rem;
    color: #0A2540;
}

.legal-container p {
    margin-top: 0.8rem;
    color: #475569;
    line-height: 1.7;
}
