/* ============================================
   TABLE OF CONTENTS
   1. Reset & Variables
   2. Base Styles
   3. Layout Components
   4. Header & Navigation
   5. Hero Section
   6. Stats Bar
   7. Services Section
   8. Plans Section
   9. About Section
   10. Testimonials Section
   11. Contact Section
   12. Footer
   13. Responsive Design
   ============================================ */

/* ============================================
   1. Reset & Variables
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --brand-dark-gold: #A26D00;
    --brand-bright-gold: #E8BF02;
    --brand-gradient: linear-gradient(135deg, var(--brand-dark-gold) 0%, var(--brand-bright-gold) 100%);
    --gold-dim: rgba(162, 109, 0, 0.08);
    --gold-deep-dark: #1F1500;
    --gold-shadow: #3A2700;
    --white: #ffffff;
    --off-white: #FAF8F5;
    --text-dark: #261D0C;
    --text-muted: #5F503A;
    --border-light: rgba(162, 109, 0, 0.12);
    --border-white: rgba(255, 255, 255, 0.15);
    
    /* Spacing & Effects */
    --radius-card: 16px;
    --radius-sm: 8px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.5);
    --shadow-md: 0 12px 30px rgba(162, 109, 0, 0.15);
}

/* ============================================
   2. Base Styles
   ============================================ */
body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    scroll-behavior: smooth;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 8rem 0;
}

.section-alt {
    background-color: var(--off-white);
}

/* Typography */
.eyebrow {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--brand-dark-gold);
    display: inline-block;
    margin-bottom: 1.25rem;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    color: var(--gold-deep-dark);
    letter-spacing: -0.01em;
}

h1 {
    font-size: clamp(2.2rem, 4.2vw, 3.6rem);
    font-weight: 700;
    line-height: 1.2;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: var(--shadow-sm);
}

h2 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 1.5rem;
}

.lead {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 720px;
    margin-bottom: 3.5rem;
}

/* ============================================
   3. Layout Components
   ============================================ */
/* Grid Systems */
.services-grid,
.tgrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.about-grid,
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 5rem;
    align-items: center;
}

/* Cards */
.service-card,
.plan-card,
.tcard,
.quote-form-wrap {
    background: var(--white);
    border-radius: var(--radius-card);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.service-card,
.plan-card,
.tcard {
    padding: 3rem;
}

.service-card:hover {
    border-color: var(--brand-dark-gold);
    background: var(--off-white);
}

.service-icon {
    background: var(--gold-dim);
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--brand-dark-gold);
    margin-bottom: 1.75rem;
}

.service-card h3 {
    font-size: 1.45rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.service-card p,
.tcard p {
    color: var(--text-muted);
    font-size: 1rem;
}

/* ============================================
   4. Header & Navigation
   ============================================ */
header {
    position: sticky;
    top: 0;
    z-index: 1050;
    background: #000000;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-white);
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-img {
    height: 64px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--brand-bright-gold);
}

.nav-cta {
    background: var(--brand-gradient);
    color: var(--gold-deep-dark) !important;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
}

.nav-cta:hover {
    opacity: 0.9;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: white;
    transition: var(--transition);
}

/* ============================================
   5. Hero Section
   ============================================ */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: #000000;
    overflow: hidden;
    padding: 6rem 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.75) 100%);
    z-index: 1;
}

.hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.85;
}

.hero .container {
    position: relative;
    z-index: 5;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.hero-tagline {
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--brand-bright-gold);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.hero-left h1 span {
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    font-size: 0.85em;
    font-weight: 400;
    font-style: italic;
    font-family: 'Playfair Display', serif;
    margin-top: 0.5rem;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 600px;
    text-shadow: var(--shadow-sm);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
    margin-bottom: 3rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: var(--shadow-sm);
}

.feature-item i {
    color: var(--brand-bright-gold);
    font-size: 1.3rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

/* Buttons */
.btn-primary,
.btn-secondary,
.right-btn,
.form-submit {
    display: inline-block;
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background: var(--brand-gradient);
    color: var(--gold-deep-dark);
}

.btn-primary:hover,
.form-submit:hover {
    opacity: 0.92;
}

.btn-secondary {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-secondary:hover {
    border-color: var(--brand-bright-gold);
    background: rgba(255, 255, 255, 0.1);
}

/* Hero Right Panel */
.hero-right {
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(16px);
    border-radius: var(--radius-card);
    padding: 3rem;
    border: 1px solid rgba(232, 191, 2, 0.35);
}

.hero-right h2 {
    font-size: 1.6rem;
    color: white;
    margin-bottom: 1rem;
}

.hero-right p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.right-feature-list {
    list-style: none;
    margin-bottom: 2.5rem;
}

.right-feature-list li {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

.right-feature-list li i {
    color: var(--brand-bright-gold);
    font-size: 1.2rem;
}

.right-btn {
    background: transparent;
    border: 1px solid var(--brand-bright-gold);
    color: white;
    width: 100%;
}

.right-btn:hover {
    background: var(--brand-gradient);
    color: var(--gold-deep-dark);
    border-color: transparent;
}

/* ============================================
   6. Stats Bar
   ============================================ */
.stats-bar {
    background: var(--white);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-bottom: 1px solid var(--border-light);
}

.stat {
    padding: 3rem 1.5rem;
    text-align: center;
    border-right: 1px solid var(--border-light);
}

.stat:last-child {
    border-right: none;
}

.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold-deep-dark);
    display: block;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    font-weight: 600;
}

/* ============================================
   7. Services Section
   ============================================ */
/* Inherits from .services-grid and .service-card above */

/* ============================================
   8. Plans Section
   ============================================ */
.plan-card {
    text-align: center;
    text-decoration: none;
    flex-direction: column;
    align-items: center;
    display: flex;
    padding: 3rem 2rem;
}

.plan-card-icon {
    height: 68px;
    width: 68px;
    object-fit: contain;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.plan-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.plan-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: justify;
    margin: 0 auto;
    max-width: 28rem;
}

.plan-card:hover {
    background: var(--brand-gradient);
    border-color: transparent;
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.plan-card:hover .plan-card-icon {
    filter: brightness(0.2) contrast(1.2);
}

.plan-card:hover h3,
.plan-card:hover p {
    color: var(--gold-deep-dark);
}

/* ============================================
   9. About Section
   ============================================ */
.about-card-stats {
    background: var(--gold-deep-dark);
    border-radius: var(--radius-card);
    padding: 3.5rem;
    color: white;
}

.stat-vertical {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.75rem 0;
}

.stat-vertical:first-child {
    padding-top: 0;
}

.stat-vertical:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.stat-number-lg {
    font-size: 2.4rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    color: var(--brand-bright-gold);
    white-space: nowrap;
}

.trust-badge {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    padding: 6px 16px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    display: inline-block;
}

.about-right p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.check-list {
    list-style: none;
}

.check-list li {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 1.2rem;
    font-size: 1rem;
    color: var(--gold-deep-dark);
    font-weight: 500;
}

.check-list li i {
    color: var(--brand-dark-gold);
    font-size: 1.25rem;
}

/* Founder Block */
.founder-block {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 3.5rem;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-card);
    padding: 3rem;
    margin-top: 4rem;
    align-items: center;
}

.founder-img-wrap {
    width: 100%;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 2px solid var(--brand-dark-gold);
}

.founder-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.founder-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.founder-title {
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--brand-dark-gold);
    margin-bottom: 1.5rem;
}

.founder-quote {
    font-size: 1.05rem;
    color: var(--text-dark);
    font-style: italic;
    line-height: 1.7;
}

/* ============================================
   10. Testimonials Section
   ============================================ */
.tcard {
    padding: 2.5rem;
}

.tcard-stars {
    color: var(--brand-dark-gold);
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
}

.tcard p {
    font-style: italic;
    margin-bottom: 1.5rem;
}

.tcard-author {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--brand-dark-gold);
}

/* ============================================
   11. Contact Section
   ============================================ */
.contact-item {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 2rem;
    align-items: center;
}

.c-icon {
    background: var(--gold-dim);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--brand-dark-gold);
}

.c-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.contact-item a,
.contact-address {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gold-deep-dark);
    text-decoration: none;
}

.quote-form-wrap {
    padding: 3.5rem;
}

.quote-form-wrap h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

/* Form Elements */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

input,
select,
textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 1px solid #D9E1E8;
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--text-dark);
    background-color: var(--white);
    transition: var(--transition);
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--brand-dark-gold);
    background-color: #FFFDF9;
}

.form-submit {
    background: var(--brand-gradient);
    border: none;
    width: 100%;
    cursor: pointer;
    font-size: 1rem;
    margin-top: 0.5rem;
}

/* Alerts */
.alert-success {
    background: #d4edda;
    color: #155724;
    padding: 1rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1.5rem;
    border-left: 4px solid #28a745;
    font-size: 0.9rem;
}

/* ============================================
   12. Footer
   ============================================ */
.premium-footer {
    background: #0D0900;
    color: #E2DEC9;
    padding: 6rem 0 0;
    border-top: 4px solid var(--brand-dark-gold);
}

.footer-main-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
    gap: 4rem;
    padding-bottom: 5rem;
}

.footer-brand-pane img {
    height: 52px;
    width: auto;
    object-fit: contain;
    margin-bottom: 1.5rem;
}

.footer-brand-pane p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #B2AE99;
    margin-bottom: 2rem;
    max-width: 320px;
}

.footer-social-wrap {
    display: flex;
    gap: 1rem;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(162, 109, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-bright-gold);
    text-decoration: none;
    font-size: 1.1rem;
    transition: var(--transition);
}

.footer-social-link:hover {
    background: var(--brand-gradient);
    color: var(--gold-deep-dark);
    border-color: transparent;
    transform: translateY(-2px);
}

.footer-column h4 {
    font-family: 'Playfair Display', serif;
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    position: relative;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background: var(--brand-bright-gold);
}

.footer-links-list {
    list-style: none;
}

.footer-links-list li {
    margin-bottom: 1rem;
}

.footer-links-list li a {
    color: #B2AE99;
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
    display: inline-block;
}

.footer-links-list li a:hover {
    color: var(--brand-bright-gold);
    transform: translateX(4px);
}

.footer-contact-block {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
    align-items: flex-start;
}

.footer-contact-block i {
    color: var(--brand-bright-gold);
    font-size: 1.2rem;
    margin-top: 3px;
}

.footer-contact-text span {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.4);
}

.footer-contact-text p,
.footer-contact-text a {
    font-size: 0.95rem;
    color: #E2DEC9;
    text-decoration: none;
    font-weight: 500;
}

.footer-contact-text a:hover {
    color: var(--brand-bright-gold);
}

.footer-map-wrap {
    width: 100%;
    height: 125px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid rgba(162, 109, 0, 0.35);
    margin-top: 1.25rem;
}

.footer-map-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.footer-compliance-row {
    background: #070500;
    padding: 2rem 0;
    border-top: 1px solid rgba(162, 109, 0, 0.15);
}

.footer-compliance-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-compliance-container p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
}

.footer-legal-nav {
    display: flex;
    gap: 2rem;
}

.footer-legal-nav a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    transition: var(--transition);
}

.footer-legal-nav a:hover {
    color: var(--brand-bright-gold);
}

/* ============================================
   13. Responsive Design
   ============================================ */
@media (max-width: 1100px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    
    .hero-right {
        max-width: 600px;
    }
    
    .plans-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .founder-block {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .founder-img-wrap {
        max-width: 320px;
        margin: 0 auto;
    }
    
    .footer-main-grid {
        grid-template-columns: 1.2fr 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    section {
        padding: 5rem 0;
    }
    
    /* Mobile Navigation */
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 97px;
        left: 0;
        right: 0;
        background: #000000;
        padding: 2.5rem;
        gap: 1.5rem;
        border-bottom: 1px solid var(--border-white);
    }
    
    .nav-links.open {
        display: flex;
    }
    
    .hamburger {
        display: flex;
    }
    
    /* Grid Adjustments */
    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid,
    .tgrid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-main-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 540px) {
    .plans-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stats-bar {
        grid-template-columns: 1fr;
    }
    
    .stat {
        border-right: none;
        border-bottom: 1px solid var(--border-light);
    }
    
    .stat:last-child {
        border-bottom: none;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
    
    .footer-main-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-compliance-container {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal-nav {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
}