:root {
    --gold: #C9A84C;
    --gold-light: #E5C46A;
    --gold-dark: #8B6914;
    --black: #0A0A0A;
    --dark: #111111;
    --dark2: #1A1A1A;
    --dark3: #222222;
    --white: #F5F0E8;
    --gray: #888888;
    --woo-gold: #C9A84C;
    --woo-black: #0A0A0A;
    --woo-dark: #1A1A1A;
    --woo-border: rgba(201, 168, 76, 0.2);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--black);
    color: var(--white);
    font-family: 'Barlow', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    color: #fff !important;
}

.nav-bar a {
    text-decoration: none;
}

/* hamburger menu  */

/* Desktop: Hide Toggle */
.menu-toggle {
    display: none;
    cursor: pointer;
}

.menu-toggle .bar {
    display: block;
    width: 25px;
    height: 2px;
    margin: 5px auto;
    background-color: var(--gold);
    transition: all 0.3s ease-in-out;
}

@media (max-width: 900px) {
    .menu-toggle {
        display: block;
        z-index: 101;
    }

    /* Nav Links as Mobile Overlay */
    .nav-links {
        position: fixed;
        left: -100%;
        /* Hidden by default */
        top: 0;
        flex-direction: column;
        background: var(--black);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: 0.3s;
        padding-top: 100px;
        gap: 20px !important;
        z-index: 100;
        display: flex !important;
        /* Force display since desktop has display:none */
        backdrop-filter: blur(10px);
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links a {
        font-size: 20px !important;
        /* Mobile par bade links */
    }

    .hide-mobile {
        display: none;
    }

    /* Hamburger Animation */
    .menu-toggle.is-active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.is-active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .menu-toggle.is-active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
}


/* Page Hero banner inner */

.inner-hero-banner {
    background-color: #14130e;
    /* Aapka preferred dark color */
    padding: 150px 0;
    /* Oopar neeche ki space */
    text-align: center;
    /* Title center mein rahega */
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 250px;
    /* Banner ki height */
}

.inner-hero-banner .hero-title {
    color: #ffffff;
    /* Heading color (white) */
    font-size: 3rem;
    /* Badi heading */
    font-weight: 700;
    margin: 0;
    text-transform: capitalize;
    letter-spacing: -1px;
}

/* Optional: Breadcrumbs style (agar Yoast use kar rahe hain) */
#breadcrumbs {
    color: #a5a5a5;
    margin-top: 15px;
    font-size: 0.9rem;
}

#breadcrumbs a {
    color: #ffffff;
    text-decoration: none;
}

/* Contact page */
.contact-section {
    background-color: #000;
    padding: 100px 0;
    color: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

.section-title span {
    color: #C9A84C;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.info-item h4 {
    margin: 0;
    color: #C9A84C;
    font-size: 1rem;
}

/* CF7 Form Styling */
.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 8px;
}

.wpcf7-form-control {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 12px 15px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.wpcf7-submit {
    background: #C9A84C !important;
    color: #000 !important;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none !important;
    cursor: pointer;
    transition: 0.3s;
}

.wpcf7-submit:hover {
    background: #fff !important;
}

.nav-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 60px;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.97), transparent);
    backdrop-filter: blur(6px);
}

.nav-logo {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 18px;
    letter-spacing: 0.2em;
    color: var(--gold);
    text-transform: uppercase;
}

.nav-logo img , .woocommerce img .nav-logo img {
    max-width: 150px !important;
}



.nav-logo span {
    display: block;
    font-size: 10px;
    color: var(--gray);
    letter-spacing: 0.3em;
    font-weight: 400;
}

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

.nav-links a {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white);
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.3s, color 0.3s;
}

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

.nav-cta {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--black);
    background: var(--gold);
    padding: 10px 24px;
    text-decoration: none;
    transition: background 0.3s;
}

.nav-cta:hover {
    background: var(--gold-light);
}

.btn-primary {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--black);
    background: var(--gold);
    padding: 16px 36px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold-light);
    transform: translateX(-100%);
    transition: transform 0.3s;
}

.btn-primary:hover::after {
    transform: translateX(0);
}

.btn-primary span {
    position: relative;
    z-index: 1;
}

.btn-secondary {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    background: transparent;
    border: 1px solid var(--gold-dark);
    padding: 16px 36px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.btn-secondary:hover {
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.08);
}

.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(201, 168, 76, 0.07) 0%, transparent 60%), radial-gradient(ellipse at 80% 20%, rgba(201, 168, 76, 0.04) 0%, transparent 50%), var(--black);
}

.hero-left {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 60px 80px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.2s forwards;
}

.hero-tag::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.hero-headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(44px, 4.5vw, 70px);
    font-weight: 900;
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.4s forwards;
}

.hero-headline em {
    font-style: italic;
    color: var(--gold);
}

.hero-sub {
    font-size: 17px;
    line-height: 1.7;
    color: var(--gray);
    max-width: 480px;
    margin-bottom: 48px;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.6s forwards;
}

.hero-sub strong {
    color: var(--white);
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.8s forwards;
}

.hero-right {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 60px 80px 20px;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 400px;
    opacity: 0;
    animation: fadeIn 1s ease 1s forwards;
}

.hero-image-wrapper img {
    width: 500px;
}

.hero-svg-visual {
    width: 100%;
    display: block;
    border: 1px solid rgba(201, 168, 76, 0.2);
}

.hero-badge {
    position: absolute;
    bottom: -20px;
    left: -30px;
    background: var(--gold);
    color: var(--black);
    padding: 20px 24px;
    min-width: 160px;
}

.hero-badge .badge-num {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 900;
    line-height: 1;
    display: block;
}

.hero-badge .badge-text {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: block;
    margin-top: 4px;
}

.authority-strip {
    background: var(--dark2);
    border-top: 1px solid rgba(201, 168, 76, 0.15);
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    padding: 24px 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.authority-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white);
    opacity: 0.8;
}

.authority-item .dot {
    width: 6px;
    height: 6px;
    background: var(--gold);
    flex-shrink: 0;
}

section {
    padding: 120px 60px;
}

.section-tag {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.section-tag::before {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--gold);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
}

.story {
    background: var(--dark);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(34px, 3.5vw, 50px);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 36px;
}

.story-title em {
    font-style: italic;
    color: var(--gold);
}

.story-text p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 20px;
}

.story-text strong {
    color: var(--white);
    font-weight: 500;
}

.story-text .highlight {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--gold);
    margin: 32px 0;
    padding-left: 24px;
    border-left: 3px solid var(--gold);
}

.story-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.story-visual img {
    width: 100%;
    border: 2px solid #3d3724;
}

.story-svg {
    width: 100%;
    display: block;
    border: 1px solid rgba(201, 168, 76, 0.15);
}

.story-quote-box {
    background: var(--dark2);
    border: 1px solid rgba(201, 168, 76, 0.2);
    padding: 40px;
    position: relative;
}

.story-quote-box::before {
    content: '\201C';
    font-family: 'Playfair Display', serif;
    font-size: 100px;
    color: var(--gold);
    opacity: 0.15;
    position: absolute;
    top: -10px;
    left: 16px;
    line-height: 1;
}

.story-quote-box p {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-style: italic;
    line-height: 1.6;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.story-quote-box .author {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 20px;
    display: block;
}

.rrr-system {
    background: var(--black);
    text-align: center;
}

.rrr-system .section-tag {
    justify-content: center;
}

.rrr-system .section-tag::before {
    display: none;
}

.rrr-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 64px;
    background: rgba(201, 168, 76, 0.1);
}

.rrr-card {
    background: var(--dark);
    padding: 0 0 48px;
    position: relative;
    transition: background 0.3s;
}

.rrr-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.rrr-card:hover {
    background: var(--dark2);
}

.rrr-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.4s;
    z-index: 1;
}

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

.rrr-card-svg {
    width: 100%;
    display: block;
}

.rrr-card-body {
    padding: 28px 36px 0;
}

.rrr-number {
    font-family: 'Playfair Display', serif;
    font-size: 60px;
    font-weight: 900;
    color: rgba(201, 168, 76, 0.07);
    line-height: 1;
}

.rrr-icon {
    font-size: 30px;
    margin: 8px 0 12px;
    display: block;
}

.rrr-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
    display: block;
}

.rrr-name {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 14px;
}

.rrr-desc {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray);
}

.offers {
    background: var(--dark);
}

.offers-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    margin-top: 64px;
    background: rgba(201, 168, 76, 0.1);
}

.offer-card {
    background: var(--black);
    padding: 60px 48px;
    position: relative;
}

.offer-card img {
    width: 40%;
    height: 250px;
    background: #c9a84c;
    margin-bottom: 20px;
}

.offer-card.featured {
    background: var(--dark2);
    border: 1px solid rgba(201, 168, 76, 0.25);
}

.offer-badge {
    display: inline-block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--black);
    background: var(--gold);
    padding: 6px 16px;
    margin-bottom: 32px;
}

.offer-number {
    font-family: 'Playfair Display', serif;
    font-size: 60px;
    font-weight: 900;
    color: rgba(201, 168, 76, 0.06);
    line-height: 1;
    position: absolute;
    top: 32px;
    right: 40px;
}

.offer-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 16px;
}

.offer-desc {
    font-size: 17px;
    line-height: 1.7;
    color: var(--gray);
    margin-bottom: 36px;
}

.offer-features {
    list-style: none;
    margin-bottom: 40px;
}

.offer-features li {
    font-size: 15px;
    color: var(--white);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    gap: 12px;
}

.offer-features li::before {
    content: 'â€”';
    color: var(--gold);
    font-weight: 700;
    flex-shrink: 0;
}

.testimonials {
    background: var(--black);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 64px;
    background: rgba(201, 168, 76, 0.08);
}

.testimonial-card {
    background: var(--dark);
    padding: 48px 36px;
}

.testimonial-stars {
    color: var(--gold);
    font-size: 14px;
    letter-spacing: 4px;
    margin-bottom: 24px;
    display: block;
}

.testimonial-text {
    font-size: 17px;
    line-height: 1.7;
    color: var(--white);
    margin-bottom: 28px;
    font-style: italic;
}

.testimonial-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
}

.final-cta {
    text-align: center;
    padding: 160px 60px;
    position: relative;
    overflow: hidden;
}

.final-cta-svg-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.final-cta .section-tag {
    justify-content: center;
    position: relative;
    z-index: 1;
}

.final-cta .section-tag::before {
    display: none;
}

.final-cta .section-title {
    font-size: clamp(42px, 5vw, 70px);
    max-width: 700px;
    margin: 0 auto 24px;
    position: relative;
    z-index: 1;
}

.final-cta .section-title em {
    font-style: italic;
    color: var(--gold);
}

.final-cta-sub {
    font-size: 18px;
    line-height: 1.7;
    color: var(--gray);
    max-width: 520px;
    margin: 0 auto 52px;
    position: relative;
    z-index: 1;
}

.final-cta .btn-primary {
    font-size: 16px;
    padding: 20px 52px;
    position: relative;
    z-index: 1;
}

footer {
    background: var(--black);
    border-top: 1px solid rgba(201, 168, 76, 0.1);
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 32px;
}

.footer-brand .name {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 16px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
}

.footer-brand .tagline {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gray);
    margin-top: 6px;
}

.footer-brand img , .woocommerce img .footer-brand img{
    max-width: 150px !important;
}

.footer-links {
    display: flex;
    gap: 30px;
    list-style: none;
    padding: 0;
}

.footer-links a {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 20px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-copy {
    font-size: 18px;
    color: rgba(136, 136, 136, 0.5);
}

.gold-divider {
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin: 32px 0;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@media (max-width: 900px) {

    .offer-card img {
        width: 100%;
    }

    nav {
        padding: 20px 24px;
    }

    .nav-links {
        display: none;
    }

    section {
        padding: 80px 24px;
    }

    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-right {
        display: none;
    }

    .hero-left {
        padding: 120px 24px 80px;
    }

    .story {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .rrr-grid,
    .offers-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .authority-strip {
        padding: 20px 24px;
        gap: 24px;
    }

    footer {
        flex-direction: column;
        padding: 40px 24px;
    }

    .final-cta {
        padding: 100px 24px;
    }
    .contact-grid {
        display: flex;
        flex-direction: column;
    }
    .contact-info {
        padding: 20px 15px;
    }
    .info-item a {
        color: #fff;
        font-size: 20px;
        text-decoration: none;
    }
}