:root {
    --primary-color: #1B263B;
    /* Deep Navy */
    --secondary-color: #C5A059;
    /* Gold/Bronze */
    --accent-color: #E0E1DD;
    /* Soft Light Grey */
    --bg-color: #FDFBF7;
    /* Cream/Off-white */
    --text-color: #333333;
    --text-light: #666666;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.1);
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 100;
    background: transparent;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.cta-button-small {
    padding: 0.5rem 1.5rem;
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button-small:hover {
    background-color: var(--primary-color);
    color: #fff;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    /* space for navbar */
    background: linear-gradient(135deg, #FDFBF7 0%, #F0EEE9 100%);
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    gap: 4rem;
}

.hero-text {
    flex: 1;
    margin: 0 auto;
}

.subtitle {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero-text h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-text h1 .highlight {
    color: var(--secondary-color);
    font-style: italic;
}

.description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-group {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

.cta-button {
    padding: 1rem 2.5rem;
    background-color: var(--secondary-color);
    color: #fff;
    font-weight: 600;
    border-radius: 5px;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: var(--shadow-soft);
}

.cta-button:hover {
    background-color: #bfa05f;
    /* custom darker shade */
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.hero-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    max-width: 550px;
    border-radius: 20px;
    box-shadow: 20px 20px 0px var(--secondary-color);
    /* Premium offset block */
    object-fit: cover;
}

/* Concerns Section */
.concerns {
    padding: 6rem 0;
    background-color: #fff;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.concern-content {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 4rem;
    flex-wrap: wrap;
    /* responsive */
}

.concern-text {
    flex: 1;
}

.concern-text p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.concern-text .emphasis {
    font-style: italic;
    font-weight: 500;
    color: var(--primary-color);
    border-left: 4px solid var(--secondary-color);
    padding-left: 1rem;
}

.concern-image {
    flex: 1;
}

.concern-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow-soft);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-top: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Aspirations Section */
.aspirations {
    padding: 6rem 0;
    background-color: var(--bg-color);
}

.aspirations-grid {
    display: grid;
    grid-template-columns: 1fr;
    text-align: center;
    gap: 4rem;
    align-items: center;
}

.aspiration-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow-soft);
}

.aspiration-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.aspiration-text ul {
    list-style: none;
    margin-bottom: 2rem;
}

.aspiration-text ul li {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    justify-content: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.aspiration-text ul li i {
    color: var(--secondary-color);
    margin-top: 5px;
}

.cta-button.secondary {
    background-color: var(--primary-color);
}

/* Barriers Section */
.barriers {
    padding: 6rem 0;
    background-color: var(--primary-color);
    color: #fff;
}

.barriers-header {
    text-align: center;
    margin-bottom: 4rem;
}

.barriers-header h2 {
    color: var(--secondary-color);
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.barriers-header p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
}

.barriers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.barrier-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.barrier-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.barrier-card .icon {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.barrier-card h3 {
    color: #fff;
    font-family: var(--font-body);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.barrier-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

/* Offer Section */
.offer {
    padding: 6rem 0;
    background-color: #E6DCCD;
    /* custom beige from image vibe */
}

.offer-header {
    text-align: center;
    margin-bottom: 3rem;
}

.offer-header h2 {
    font-size: 3rem;
}

.offer-steps {
    display: flex;
    justify-content: center;
    gap: 0;
}

.step-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.3);
    padding: 3rem 2rem;
    border-right: 1px solid rgba(0, 0, 0, 0.05);
    text-align: left;
    transition: background 0.3s;
}

.step-card:last-child {
    border-right: none;
}

.step-card:hover {
    background: rgba(255, 255, 255, 0.6);
}

.step-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* Brand Info */
.brand-info {
    padding: 6rem 0;
    background-color: #fff;
}

.brand-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
}

.brand-logo-area h2 {
    font-size: 3.5rem;
    color: var(--primary-color);
}

.brand-logo-area p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--primary-color);
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    width: 30px;
}

/* Final Steps */
.final-steps {
    padding: 4rem 0 6rem 0;
    background-color: var(--bg-color);
}

.steps-grid {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
}

.steps-left,
.steps-right {
    flex: 1;
}

.steps-grid h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.steps-grid ul {
    list-style: none;
}

.steps-grid ul li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.steps-left i {
    color: var(--secondary-color);
}

.steps-right i {
    color: var(--primary-color);
}


/* Footer */
footer {
    background-color: var(--primary-color);
    color: #fff;
    padding: 2rem 0;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 900px) {

    .hero-content,
    .concern-content,
    .aspirations-grid,
    .steps-grid {
        flex-direction: column;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 3rem;
    }

    .hero-image,
    .concern-image,
    .aspiration-image {
        order: -1;
        margin-bottom: 2rem;
    }

    .hero-image img {
        box-shadow: 10px 10px 0px var(--secondary-color);
    }

    .offer-steps {
        flex-direction: column;
        gap: 1rem;
    }

    .step-card {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.5);
    }

    .concern-text .emphasis {
        border-left: none;
        border-top: 4px solid var(--secondary-color);
        padding-top: 1rem;
        padding-left: 0;
    }
}
/* CSS APPENDED FOR NEW SECTIONS */

/* Utility Classes */
.text-warning {
    color: var(--secondary-color) !important;
}

.txt-color-1 {
    color: var(--primary-color) !important;
}

.product-section {
    padding: 4rem 0;
    background-color: #fff;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* VSL Section */
.hero-video {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: var(--shadow-hover);
}

.hero-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Testimonial Slider */
.testimonial-slider-block {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-slider-shell {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 2rem;
}

.testimonial-track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 1rem;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE */
    width: 100%;
    max-width: 960px; /* Space for 3 cards roughly or scroll */
}

.testimonial-track::-webkit-scrollbar {
    display: none;
}

.t-card {
    flex: 0 0 300px;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 9/16; /* Portrait Video helper */
    box-shadow: var(--shadow-soft);
}

.t-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.t-arrow {
    background: var(--primary-color);
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
    position: absolute;
}

.t-arrow:hover {
    background: var(--secondary-color);
}

.t-prev { left: -20px; }
.t-next { right: -20px; }


/* Pricing Cards */
.pricing-cards {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.course-card {
    background: #fff;
    border: 1px solid #eee;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-hover);
    text-align: center;
    max-width: 400px;
    width: 100%;
    transition: transform 0.3s;
    border-top: 5px solid var(--secondary-color);
}

.course-card:hover {
    transform: translateY(-5px);
}

.card-header {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.card-price {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1.2rem;
}

.new-price {
    color: var(--secondary-color);
    font-size: 2.5rem;
    font-weight: 700;
}

.card-details p {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    color: var(--text-light);
}

.buy-btn {
    padding: 1rem 3rem;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50px; /* Pill shape */
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(27, 38, 59, 0.3);
    transition: all 0.3s;
}

.buy-btn:hover {
    background-color: var(--secondary-color);
    transform: scale(1.05);
}

/* Final CTA Section tweaks */
.final-cta {
    background-color: #fff !important; /* Override if needed or match theme */
    padding: 6rem 0;
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.link-style {
    color: var(--secondary-color);
    font-weight: 700;
    text-decoration: underline;
}

/* Responsive tweaks for new content */
@media (max-width: 768px) {
    .testimonial-track {
        justify-content: flex-start; /* Ensure scrolling works on mobile */
    }
    
    .t-arrow {
        display: none; /* Hide arrows on touch devices usually better to swipe */
    }
    
    .pricing-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .steps-grid {
        grid-template-columns: 1fr !important;
    }
}

/* NEW FOOTER STYLES */
footer {
    background-color: var(--bg-color) !important; /* Changed to light background */
    color: var(--text-color) !important;
    text-align: center;
    padding: 6rem 0 4rem;
    border-top: 1px solid rgba(0,0,0,0.05); /* Separator */
    opacity: 1 !important;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
    background-color: var(--primary-color);
    transition: transform 0.3s, background-color 0.3s;
}

.social-icon:hover {
    transform: translateY(-3px);
    background-color: var(--secondary-color);
}

.credentials {
    font-weight: 700;
    margin-bottom: 2rem;
    letter-spacing: 1px;
    line-height: 1.8;
}

.txt-color-3 {
    color: var(--secondary-color); /* Assuming secondary/gold for credentials */
}

.contact {
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.footer-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.footer-brand-name {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.atg-footer-container, .buzan-footer-container {
    margin-bottom: 3rem;
}

.atg-logo-footer, .buzan-logo-footer {
    max-width: 150px;
    height: auto;
    filter: grayscale(100%); /* Optional refinement */
    opacity: 0.8;
    transition: all 0.3s;
}

.atg-logo-footer:hover, .buzan-logo-footer:hover {
    filter: grayscale(0%);
    opacity: 1;
}

