:root {
    --bg-color: #1a1a1a;
    --text-color: #e0e0e0;
    --accent-color: #c5a059;
    --border-color: #333;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    padding: 2rem 0;
    border-bottom: 1px solid var(--border-color);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.logo h1 {
    margin: 0;
    font-size: 1.5rem;
    color: var(--accent-color);
    line-height: 1.2;
    letter-spacing: 1px;
}

nav {
    display: flex;
    gap: 1.5rem;
    align-items: baseline; /* Ensures text baselines align properly */
}

nav a {
    color: var(--accent-color);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 1px;
    padding: 0.5rem 1rem;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

nav a:hover {
    text-decoration: none;
    border-color: var(--accent-color); /* Highlight border on hover */
}

/* Sections */
section {
    padding: 4rem 0;
    border-bottom: 1px solid var(--border-color);
}

.grid-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

h2 {
    color: var(--accent-color);
    font-size: 2.5rem;
    line-height: 1.1;
    margin-top: 0;
    text-transform: uppercase;
}

p {
    color: #999;
    margin-bottom: 1.5rem;
}

/* Hero */
.smiley-box {
    background-color: #000;
    border: 1px solid var(--accent-color);
    aspect-ratio: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 5rem;
    position: relative;
}


.cta-button {
    background-color: transparent;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    padding: 1rem 2rem;
    font-size: 1rem;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: var(--accent-color);
    color: var(--bg-color);
}

/* About */
.signature {
    background-color: #333;
    color: #d4af37;
    border: 1px solid #d4af37;    font-size: 2rem;
    margin-top: 1rem;
    text-decoration: line-through; /* Just for style as per mockup idea, or remove if not needed */
    text-decoration-color: red;
}
.signature {
    text-decoration: none; /* Resetting strikethrough */
    position: relative;
}

.best-for {
    font-size: 0.85rem;
    line-height: 1.4;
    color: #aaa;
    margin: 15px 0;
    padding-top: 15px;
    border-top: 1px solid #333;
    flex-grow: 1; /* Pushes button to ffeaturesthe bottom */
}

/* Reviews Carousel */
.reviews h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.carousel-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    height: 600px; /* Increased height for longer reviews */
}

.carousel-track-container {
    height: 100%;
    overflow: hidden;
    position: relative;
}

.carousel-track {
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative;
    height: 100%;
    transition: transform 250ms ease-in;
}

.carousel-slide {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
}

.review-content {
    width: 100%;
    height: 100%;
    background-color: #222;
    border: 1px solid var(--accent-color);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem; /* Generous padding for text */
    box-sizing: border-box;
    overflow-y: auto; /* Allow scrolling for very long reviews */
}

.review-content p {
    color: #e0e0e0;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 800px; /* Keep line length readable */
    margin: 0;
    font-style: italic;
    white-space: pre-line; /* Respects newlines in text */
}

.reviewer-name {
    color: var(--accent-color);
    font-weight: bold;
    font-style: normal;
    display: block;
    margin-top: 1rem;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--accent-color);
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
}

.prev-btn {
    left: -50px;
}

.next-btn {
    right: -50px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .grid-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .reverse-mobile {
        display: flex;
        flex-direction: column-reverse;
    }
    
    .header-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }

    .carousel-btn {
        display: none; /* Hide buttons on mobile, maybe add swipe later */
    }
}

/* Services Page Design Elements */
.services-page {
    background-color: #0d0d0d; /* Slightly deeper black */
}

.section-title {
    color: var(--accent-color);
    text-align: center;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    font-size: 2rem;
}

/* Matching image_52bd24.png exactly */
.benefits-box {
    background-color: #1a1a1a;
    border-left: 4px solid var(--accent-color);
    border-radius: 8px;
    padding: 3rem;
    margin-bottom: 5rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.benefit-item {
    font-size: 0.95rem;
    color: #b0b0b0;
    line-height: 1.5;
}

/* Live Training Styling */
.gold-text {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.tagline {
    font-size: 0.8rem;
    letter-spacing: 3px;
    color: #666;
    margin-bottom: 2.5rem;
}

.tiered-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

.tier-card {
    background: #111;
    border: 1px solid #333;
    padding: 2.5rem;
    border-radius: 4px;
}

.tier-card h3 {
    border-bottom: 1px solid var(--accent-color);
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.price-points {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.price-points li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #222;
}

.includes-box {
    background: rgba(197, 160, 89, 0.05);
    padding: 1rem;
    font-size: 0.9rem;
    color: #888;
}

/* Bottom Product Cards */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: stretch; /* Ensures all cards are the same height */
}

/* Best For Section Styling */
.best-for-container {
    margin-top: auto; /* Pushes this section to the bottom */
    padding-top: 20px;
    border-top: 1px solid #333;
    margin-bottom: 20px;
}

.best-for-text {
    font-size: 0.85rem;
    line-height: 1.5;
    color: #ccc;
}

.best-for-text strong {
    color: #fff;
}

/* Gold Highlight for Discounts */
.gold-discount {
    color: #d4af37;
    font-weight: bold;
}

.product-card {
    background: #111; /* Darker background to match screenshot */
    padding: 3rem 2.5rem; /* Increased padding for the "airy" look */
    border: 1px solid #333;
    display: flex;
    flex-direction: column;
    text-align: left; /* Forces all content to the left */
    transition: all 0.3s ease;
    position: relative; /* Necessary for badge positioning */
}

.badge {
position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: bold;
    letter-spacing: 1px;
    background-color: #d4af37; /* Gold background for both */
    color: #000; /* Black text for both */
    border: none;
    white-space: nowrap;
}

/* Specific styling for the Card Title */
.product-card h3 {
    color: #ffffff;
    font-size: 1.4rem;
    line-height: 1.3;
    margin-bottom: 2.5rem;
    text-transform: none; /* Keeps casing natural */
    font-weight: 700;
}

/* Gold Price Styling */
.product-card .price {
    color: var(--accent-color);
    font-size: 1.75rem;
    font-weight: bold;
    margin-bottom: 2.5rem;
    margin-top: 0;
}

/* Custom Bullet Points */
.product-card .features {
    list-style: none; /* Remove default bullets */
    padding: 0;
    margin: 0 0 3rem 0;
}

.features li strong {
    color: #d4af37;
}

.product-card .features li {
    position: relative;
    padding-left: 1.5rem; /* Space for the custom bullet */
    margin-bottom: 0.8rem;
    color: #e0e0e0;
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Create the small white bullet from the screenshot */
.product-card .features li::before {
    content: "•";
    color: #fff;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    top: -2px;
}

.best-value {
    background-color: #d4af37; /* Gold */
    color: #000;
}

/* Button override to match the tan/gold in screenshot */
.product-card .select-plan-btn,
.pricing-card .select-plan-btn {
    background-color: var(--accent-color); /* Matching the specific tan-gold */
    color: #1a1a1a;
    border: none;
    padding: 1rem 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: auto; /* Pushes button to the very bottom */
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
}

.product-card .select-plan-btn:hover {
    background-color: #d6b67d;
}

/* Featured Card Border */
.product-card.featured {
    border: 1px solid var(--accent-color);
}

/* Hover Highlight Effect */
.product-card:hover {
    border-color: var(--accent-color); /* Highlights gold on hover */
    box-shadow: 0 0 15px rgba(197, 160, 89, 0.2); /* Subtle gold glow */
}

/* Ensure the button stays at the bottom */
.product-card .select-plan-btn, 
.product-card button {
    margin-top: auto;
    width: 100%;
}

.product-card .price {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: bold;
    margin: 1rem 0;
}

.ideal-tag {
    margin-top: auto;
    padding-top: 1.5rem;
    font-size: 0.8rem;
    color: #555;
    border-top: 1px solid #222;
}

/* Responsive */
@media (max-width: 992px) {
    .benefits-grid, .tiered-grid, .product-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Page Specifics */
.contact-page {
    background-color: #0d0d0d;
}

.contact-hero {
    text-align: center;
    padding: 4rem 0 2rem;
}

/* Matching the container depth from image_52bd24.png */
.google-form-container {
    border-left: 4px solid var(--accent-color);
    border-top: 1px solid #333;
    border-right: 1px solid #333;
    border-bottom: 1px solid #333;
    border-radius: 8px;
    padding: 10px; /* Minimal padding so the form fills the space */
    max-width: 850px;
    margin: 0 auto 5rem;
    overflow: hidden;
}

.google-form-container iframe {
    display: block;
    border: none;
    border-radius: 4px;
}

.footer-simple {
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid var(--border-color);
    font-size: 0.8rem;
    color: #555;
}

/* Ensure active nav link is gold */
nav a.active {
    color: var(--accent-color);
    font-weight: bold;
}

.form-wrapper {
    position: relative;
    width: 100%;
    max-width: 850px;
    margin: 0 auto;
    border: 1px solid var(--accent-color); /* Gold accent */
    border-radius: 8px;
    overflow: hidden;
    /* This creates a baseline height based on the screen size */
    height: 75vh; 
    max-height: 900px;
    min-height: 500px;
}

/* The actual iframe */
.responsive-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Mobile Adjustment */
@media (max-width: 768px) {
    .form-wrapper {
        height: 85vh; /* Gives more room on smaller vertical screens */
        border-radius: 4px;
    }
}
/* --- New & Updated Styles --- */

/* Squish the benefits section */
.compact-benefits {
    padding: 1.5rem 0 !important;
    text-align: center;
}
.benefits-list p {
    font-size: 0.9rem;
    color: var(--accent-color);
    letter-spacing: 1px;
}

/* Fix image box sizes */
.smiley-box {
    max-width: 350px; /* Reduced from taking up whole screen */
    margin: 0 auto;
}

/* Gold Prices */
.gold-price {
    color: var(--accent-color);
    font-size: 1.2rem;
}
.price-note {
    font-size: 0.8rem;
    color: #666;
    text-transform: none;
}

.height-selector {
    display: flex;
    gap: 10px;
}

.height-selector select {
    flex: 1; /* Makes both dropdowns equal width */
}



.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(212, 175, 55, 0.1);
    border-top: 5px solid #d4af37; /* Gold */
    border-radius: 50%;
    margin: 0 auto 20px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Error Notice Styling */
.error-notice {
    background-color: #721c24;
    color: #f8d7da;
    padding: 15px;
    border: 1px solid #f5c6cb;
    border-radius: 4px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: bold;
}

/* Spinner Animation */
.loader-container {
    text-align: center;
    padding: 50px 0;
}

/* Hover State: Inverse Colors */
.select-plan-btn:hover {
    background-color: transparent;
    color: #000000;
    transform: translateY(-2px); /* Subtle lift effect */
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

/* Contact Dropdown */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.nav-dropdown .dropbtn {
    color: var(--accent-color);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 1px;
    cursor: pointer;
    background: none;
    border: 1px solid transparent;
    padding: 0.5rem 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.nav-dropdown .dropbtn:hover {
    border-color: var(--accent-color); /* Highlight border on hover */
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #222;
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    right: 0;
    padding: 10px;
    border: 1px solid var(--accent-color);
}
.dropdown-content p {
    color: var(--accent-color);
    margin: 0;
    font-size: 0.8rem;
}
.nav-dropdown:hover .dropdown-content {
    display: block;
}

/* Clean Form Styling */
.form-wrapper-clean {
    max-width: 600px;
    margin: 0 auto 5rem;
    padding: 2rem;
    border: 1px solid var(--border-color);
}
.application-form { display: flex; flex-direction: column; gap: 1rem; }
.application-form input, .application-form select, .application-form textarea {
    padding: 10px;
    background: #111;
    border: 1px solid #333;
    color: white;
}
.application-form label { font-size: 0.8rem; color: var(--accent-color); text-transform: uppercase; }

/* Squished benefits section */
.compact-benefits {
    padding: 1.5rem 0 !important;
    border-bottom: 1px solid var(--border-color);
}
.benefits-row {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Image box size fix */
.smiley-box {
    max-width: 450px; /* Prevents seeing 'pores' on large screens */
    margin: 0 auto;
}

/* Pricing Enhancements */
.gold-price {
    color: var(--accent-color);
}
.price-note {
    font-size: 0.75rem;
    color: #777;
    text-transform: none;
    font-weight: normal;
    margin-left: 10px;
}

/* Dropdown Menu */
.nav-dropdown { position: relative; display: inline-block; }
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #111;
    min-width: 220px;
    padding: 15px;
    border: 1px solid var(--accent-color);
    right: 0;
    z-index: 100;
}
.dropdown-content p { color: var(--accent-color); margin: 0; font-size: 0.8rem; }
.nav-dropdown:hover .dropdown-content { display: block; }

/* Integrated Form Styles */
.form-container {
    max-width: 700px;
    margin: 4rem auto;
    padding: 2rem;
    border: 1px solid var(--accent-color);
}
.application-form { display: flex; flex-direction: column; gap: 1.2rem; }
.application-form input, .application-form select, .application-form textarea {
    background: #000;
    border: 1px solid #333;
    padding: 12px;
    color: #fff;
}

/* --- Fix for Bio Image Border --- */

/* 1. Reset the container so it doesn't create those disconnected lines */
.about .image-placeholder img {
    border: 2px solid var(--accent-color); /* Continuous gold border */
    border-radius: 12px;
    max-width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

/* Optional: Subtle hover effect for the image */
.about .image-placeholder img:hover {
    transform: scale(1.01);
}
/* Ensure the grid can handle 3 columns on desktop */
.live-grid {
    display: grid;
    grid-template-columns: 1fr 2fr; /* Pricing column takes 1 part, FAQ takes 2 parts */
    gap: 20px;
    align-items: stretch;
}

.pricing-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Styling for the new FAQ card to match your aesthetic */
.faq-card {
    background: #1a1a1a; /* Match your card background */
    padding: 20px;
    border: 1px solid #333;
    border-radius: 8px;
}

.faq-card h3 {
    color: #d4af37; /* Gold color from your branding */
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.faq-question {
    font-weight: bold;
    color: #fff;
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.faq-answer {
    color: #ccc;
    font-size: 0.85rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

/* Responsive: Stack them on small screens */
@media (max-width: 900px) {
    .live-grid {
        grid-template-columns: 1fr;
    }
}