/* ---------- CSS Variables ---------- */
:root {
    --gold: #c9a35c;
    --gold-light: #e0c084;
    --gold-dark: #a8843d;
    --dark: #0a0e17;
    --dark-2: #101827;
    --dark-3: #1a2332;
    --gray: #8a94a6;
    --light: #f6f7f9;
    --white: #ffffff;
    --text-dark: #1a1f2e;
    --border: rgba(201, 163, 92, 0.25);

    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Playfair Display', serif;

    --radius: 16px;
    --radius-sm: 10px;
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    --shadow-gold: 0 10px 40px rgba(201, 163, 92, 0.3);
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset & Base ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.25;
}

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

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

/* ---------- Navbar ---------- */
.custom-navbar {
    padding: 1.1rem 0;
    background: transparent;
    transition: var(--transition);
    z-index: 1030;
}

.custom-navbar.scrolled {
    background: rgba(10, 14, 23, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 0.7rem 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--white) !important;
    letter-spacing: 0.5px;
}

.navbar-brand strong {
    color: var(--gold);
    font-weight: 700;
}

.brand-icon {
    color: var(--gold);
    font-size: 1.5rem;
}

.custom-navbar .nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem !important;
    position: relative;
}

.custom-navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0.2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.custom-navbar .nav-link:hover {
    color: var(--gold) !important;
}

.custom-navbar .nav-link:hover::after {
    width: 60%;
}

.navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.4rem 0.6rem;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.15rem rgba(201, 163, 92, 0.4);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23ffffff' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ---------- Buttons ---------- */
.btn-gold {
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
    color: var(--dark);
    font-weight: 600;
    border: none;
    padding: 0.75rem 1.9rem;
    border-radius: 50px;
    letter-spacing: 0.3px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-gold::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: -1;
}

.btn-gold:hover {
    color: var(--dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.btn-gold:hover::before {
    opacity: 1;
}

.btn-outline-gold {
    border: 1.5px solid var(--gold);
    color: var(--gold);
    background: transparent;
    font-weight: 600;
    padding: 0.75rem 1.9rem;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.btn-outline-light {
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    color: var(--white);
    border-radius: 50px;
    font-weight: 500;
    transition: var(--transition);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--dark);
    border-color: var(--white);
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    background:
        linear-gradient(135deg, rgba(10, 14, 23, 0.92), rgba(16, 24, 39, 0.75)),
        url('https://images.unsplash.com/photo-1611974789855-9c2a0a7236a3?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 30%, rgba(201, 163, 92, 0.15), transparent 60%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 6rem 0;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(201, 163, 92, 0.12);
    border: 1px solid var(--border);
    border-radius: 50px;
    color: var(--gold-light);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.text-gradient {
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin-bottom: 2.2rem;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 3rem;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.92rem;
}

.trust-item i {
    color: var(--gold);
    font-size: 1.15rem;
}

.scroll-down {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--gold);
    font-size: 1.6rem;
    animation: bounce 2s infinite;
    z-index: 3;
    transition: var(--transition);
}

.scroll-down:hover {
    color: var(--gold-light);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ---------- Sections ---------- */
.section {
    padding: 6rem 0;
    position: relative;
}

.section-dark {
    background: var(--dark);
    color: var(--white);
}

.section-eyebrow {
    display: inline-block;
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.7rem);
    margin-bottom: 1rem;
    letter-spacing: -0.3px;
}

.section-text {
    color: var(--gray);
    font-size: 1.05rem;
}

.section-dark .section-text {
    color: rgba(255, 255, 255, 0.7);
}

/* ---------- About ---------- */
.about-image-wrapper {
    position: relative;
}

.about-img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    width: 100%;
    object-fit: cover;
}

.about-card-float {
    position: absolute;
    bottom: -25px;
    right: -15px;
    background: var(--white);
    padding: 1.2rem 1.5rem;
    border-radius: var(--radius-sm);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
    display: flex;
    align-items: center;
    gap: 1rem;
    border-left: 4px solid var(--gold);
}

.about-card-float i {
    font-size: 2rem;
    color: var(--gold);
}

.float-value {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
}

.float-label {
    font-size: 0.8rem;
    color: var(--gray);
}

.feature-box {
    padding: 1.2rem;
    border-radius: var(--radius-sm);
    background: var(--light);
    transition: var(--transition);
    border: 1px solid transparent;
}

.feature-box:hover {
    background: var(--white);
    border-color: var(--border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    transform: translateY(-4px);
}

.feature-box i {
    font-size: 1.6rem;
    color: var(--gold);
    margin-bottom: 0.6rem;
    display: block;
}

.feature-box h5 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.feature-box p {
    font-size: 0.85rem;
    color: var(--gray);
    margin: 0;
}

/* ---------- Services ---------- */
.service-card {
    background: var(--dark-3);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius);
    padding: 2rem 1.7rem;
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--border);
    background: #1e2839;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(201, 163, 92, 0.12);
    color: var(--gold);
    font-size: 1.6rem;
    margin-bottom: 1.3rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--gold);
    color: var(--dark);
    transform: rotate(-6deg) scale(1.05);
}

.service-card h4 {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.7rem;
}

.service-card p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.92rem;
    margin-bottom: 1.2rem;
}

.service-link {
    color: var(--gold);
    font-weight: 500;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover {
    color: var(--gold-light);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* ---------- Stats ---------- */
.stats-section {
    background: linear-gradient(135deg, var(--dark-2), var(--dark-3));
    color: var(--white);
    padding: 5rem 0;
}

.stat-item {
    padding: 1.5rem;
}

.stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

/* ---------- Pricing ---------- */
.pricing-card {
    background: var(--dark-3);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius);
    padding: 2.5rem 1.8rem;
    height: 100%;
    transition: var(--transition);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: var(--border);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.pricing-featured {
    border: 1.5px solid var(--gold);
    background: linear-gradient(180deg, rgba(201, 163, 92, 0.08), var(--dark-3));
    transform: scale(1.03);
}

.pricing-featured:hover {
    transform: scale(1.03) translateY(-8px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
    color: var(--dark);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.pricing-card h4 {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 1rem;
}

.price {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.3rem;
}

.price span {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
}

.price-sub {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1.5rem;
}

.pricing-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.pricing-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.pricing-list i {
    color: var(--gold);
    font-size: 1rem;
    flex-shrink: 0;
}

/* ---------- CTA ---------- */
.cta-section {
    background:
        linear-gradient(135deg, rgba(10, 14, 23, 0.9), rgba(201, 163, 92, 0.25)),
        url('https://images.unsplash.com/photo-1590283603385-17ffb3a7f29f?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat fixed;
    padding: 6rem 0;
    color: var(--white);
    text-align: center;
}

.cta-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* ---------- Contact ---------- */
.contact-info {
    list-style: none;
    padding: 0;
    margin-top: 2rem;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.7rem 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.contact-info i {
    color: var(--gold);
    font-size: 1.2rem;
    width: 24px;
}

.contact-form .form-control,
.contact-form .form-select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--white);
    padding: 0.85rem 1.1rem;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    transition: var(--transition);
}

.contact-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--gold);
    box-shadow: 0 0 0 0.2rem rgba(201, 163, 92, 0.2);
    color: var(--white);
}

.contact-form .form-select option {
    background: var(--dark-3);
    color: var(--white);
}

.form-message {
    font-size: 0.95rem;
    font-weight: 500;
    text-align: center;
}

.form-message.success {
    color: #4ade80;
}

.form-message.error {
    color: #f87171;
}

/* ---------- Footer ---------- */
.footer {
    background: #070a10;
    color: rgba(255, 255, 255, 0.7);
    padding: 4rem 0 2rem;
    font-size: 0.9rem;
}

.footer-brand {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.footer-text {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.88rem;
}

.footer h6 {
    font-family: var(--font-body);
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1.2rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.88rem;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 4px;
}

.socials {
    display: flex;
    gap: 0.7rem;
    margin-top: 1.2rem;
}

.socials a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    transition: var(--transition);
}

.socials a:hover {
    background: var(--gold);
    color: var(--dark);
    transform: translateY(-4px);
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.8rem;
}

.newsletter-form input {
    flex: 1;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--white);
    padding: 0.7rem 1rem;
    border-radius: 50px;
    font-size: 0.88rem;
    outline: none;
    transition: var(--transition);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

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

.newsletter-form button {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
    color: var(--dark);
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    transform: scale(1.08);
    box-shadow: var(--shadow-gold);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.08);
    margin: 3rem 0 1.5rem;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.85rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

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

/* ---------- Back to Top ---------- */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
    color: var(--dark);
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 1050;
    box-shadow: 0 8px 25px rgba(201, 163, 92, 0.4);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px) scale(1.05);
}

/* ---------- Reveal Animations ---------- */
.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

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

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
    .custom-navbar .navbar-collapse {
        background: rgba(10, 14, 23, 0.98);
        border-radius: var(--radius-sm);
        padding: 1rem;
        margin-top: 0.8rem;
        border: 1px solid var(--border);
    }

    .custom-navbar .nav-link {
        padding: 0.7rem 1rem !important;
    }

    .pricing-featured {
        transform: scale(1);
    }

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

    .about-card-float {
        right: 10px;
        bottom: -20px;
        padding: 1rem 1.2rem;
    }

    .section {
        padding: 4.5rem 0;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-actions .btn {
        width: 100%;
        margin-left: 0 !important;
    }

    .hero-actions .btn+.btn {
        margin-top: 0.5rem;
    }

    .hero-trust {
        gap: 1rem;
    }

    .trust-item {
        font-size: 0.82rem;
    }

    .stat-item {
        padding: 0.8rem;
    }

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

    .back-to-top {
        bottom: 1.2rem;
        right: 1.2rem;
        width: 44px;
        height: 44px;
    }

    .cta-section {
        background-attachment: scroll;
    }
}

@media (max-width: 575.98px) {
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.9rem;
    }

    .section {
        padding: 3.5rem 0;
    }

    .service-card,
    .pricing-card {
        padding: 1.6rem 1.3rem;
    }
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}