/* =========================================
   VARIABLES & DESIGN SYSTEM
========================================= */
:root {
    --primary-bg: #FCF9F2; /* Off-white warm */
    --text-dark: #2C2A26;
    --text-light: #6A6762;
    
    /* Banto Colors */
    --color-orange: #F28C28;
    --color-mustard: #EAA420;
    --color-pink: #E94187;
    --color-brown: #5C3A21;
    
    /* Spacing */
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    
    /* Effects */
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 15px 40px rgba(233, 65, 135, 0.15);
    --radius-md: 12px;
    --radius-lg: 24px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* =========================================
   RESET & GLOBAL
========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

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

ul {
    list-style: none;
}

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

.img-rounded {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.section-padding {
    padding: var(--space-xl) 0;
}

.text-center {
    text-align: center;
}

.bg-light {
    background-color: #FFFFFF;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
    color: var(--text-dark);
}

.section-title span {
    color: var(--color-pink);
    font-style: italic;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto var(--space-lg);
}

.lead-text {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    color: var(--color-orange);
    margin-bottom: 1.5rem;
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-orange), var(--color-mustard));
    color: white;
    box-shadow: 0 4px 15px rgba(242, 140, 40, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(242, 140, 40, 0.4);
    color: white;
}

.btn-secondary {
    background: transparent;
    color: var(--color-orange);
    border: 2px solid var(--color-orange);
}

.btn-secondary:hover {
    background: var(--color-orange);
    color: white;
}

.btn-large {
    font-size: 1.2rem;
    padding: 1.2rem 3rem;
}

/* =========================================
   HEADER / HERO
========================================= */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: var(--space-xl) 0;
}

.hero-bg-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: -2;
}

.hero-gradient {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(242, 140, 40, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(233, 65, 135, 0.1) 0%, transparent 50%);
    z-index: -1;
}

.logo-container {
    margin-bottom: var(--space-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo {
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 4rem;
    letter-spacing: -2px;
    line-height: 1;
    text-transform: uppercase;
}

.logo span {
    display: inline-block;
}
.color-b { color: var(--color-orange); }
.color-a { color: var(--color-mustard); }
.color-n { color: var(--color-mustard); }
.color-t { color: var(--color-orange); }
.color-o { 
    color: var(--color-pink);
}

.logo-em-cores {
    display: block;
    color: var(--color-pink);
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 2rem;
    text-transform: lowercase;
    margin-top: -10px;
}

.badge-maes {
    background-color: var(--color-pink);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(233, 65, 135, 0.3);
    margin-top: 5px;
}



.hero-text-box {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.hero-subtitle-text {
    font-size: 1.4rem;
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--color-brown);
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* =========================================
   MEANING SECTION
========================================= */
.meaning-flex {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.meaning-image {
    flex: 1;
}

.meaning-image img {
    aspect-ratio: 4/3;
    object-fit: cover;
}

.meaning-text {
    flex: 1;
}

.meaning-text p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* =========================================
   WHO IS IT FOR SECTION
========================================= */
.who-for-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.who-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: var(--transition);
}

.who-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.who-icon {
    font-size: 3rem;
    color: var(--color-orange);
    margin-bottom: 1.5rem;
}

.who-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

/* =========================================
   INCLUDED SECTION
========================================= */
.included-flex {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.included-image {
    flex: 1;
}

.included-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.included-text {
    flex: 1;
}

.included-list {
    margin-top: 2rem;
}

.included-list li {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.included-list li i {
    color: var(--color-pink);
    font-size: 1.2rem;
}

/* =========================================
   EMOTIONAL BANNER
========================================= */
.emotional-banner {
    background: linear-gradient(rgba(233, 65, 135, 0.9), rgba(242, 140, 40, 0.9)), url('https://images.unsplash.com/photo-1460518451285-97b6aa326961?q=80&w=1920&auto=format&fit=crop') center/cover;
    color: white;
}

.emotional-content {
    max-width: 800px;
}

.emotional-content h2 {
    color: white;
    font-size: 3rem;
    margin-bottom: 2rem;
}

.emotional-content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.emotional-quotes {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.3);
}

.emotional-quotes p {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 0.5rem;
}

/* =========================================
   HOW IT WORKS SECTION
========================================= */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step-card {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--color-mustard);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    font-family: var(--font-heading);
}

.step-card h3 {
    margin-bottom: 1rem;
}

/* =========================================
   PACKAGES SECTION
========================================= */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.2rem;
    margin-top: var(--space-lg);
}

.packages-grid.grid-5-cols {
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}

.package-card {
    background: white;
    border-radius: var(--radius-md);
    padding: 1.8rem 1.5rem 1.5rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(233, 65, 135, 0.2);
}

.package-card.highlighted {
    border: 2px solid var(--color-pink);
    transform: scale(1.05);
    z-index: 2;
}

.package-card.highlighted:hover {
    transform: scale(1.05) translateY(-10px);
}

.highlight-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-pink);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
}

.package-header {
    border-bottom: 1px solid #eee;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.package-header h3 {
    font-size: 1.8rem;
    color: var(--color-orange);
}

.package-header p {
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 600;
}

.package-price {
    font-size: 2.2rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--color-orange);
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.package-features-list {
    text-align: left;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.package-features-list li {
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.package-features-list li i {
    color: #4CAF50; /* Green checkmark */
    margin-top: 4px;
}

.package-card .btn-primary, .package-card .btn-secondary {
    width: 100%;
    padding: 1rem 0.5rem;
    font-size: 0.9rem;
}

/* =========================================
   ABOUT BANTO SECTION
========================================= */
.about-flex {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.about-image {
    flex: 1;
}

/* =========================================
   SOCIAL PROOF / GALLERY
========================================= */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 280px;
    gap: 15px;
    margin-top: 3rem;
}

.gallery-grid.gallery-uniform img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: var(--transition);
    cursor: pointer;
}

.gallery-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: var(--transition);
    cursor: pointer;
}

.gallery-grid img:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-soft);
    z-index: 2;
    position: relative;
}

@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* =========================================
   FAQ SECTION
========================================= */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    overflow: hidden;
}

.faq-item summary {
    padding: 1.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    list-style: none;
    position: relative;
    color: var(--text-dark);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--color-orange);
}

.faq-item[open] summary::after {
    content: '-';
}

.faq-content {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-light);
}

/* =========================================
   LEAD CAPTURE FORM
========================================= */
.lead-form {
    display: flex;
    justify-content: center;
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.lead-form input {
    padding: 1rem 1.5rem;
    border: 1px solid #ddd;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 1rem;
    flex: 1;
    min-width: 200px;
    outline: none;
    transition: var(--transition);
}

.lead-form input:focus {
    border-color: var(--color-orange);
    box-shadow: 0 0 0 3px rgba(242, 140, 40, 0.2);
}

.lead-form button {
    border: none;
    min-width: 200px;
}

/* =========================================
   FINAL CTA
========================================= */
.final-cta {
    background-color: var(--primary-bg);
}

.final-cta h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.final-cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}

.fine-print {
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-light);
}

/* =========================================
   FOOTER
========================================= */
.footer {
    background-color: white;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding: var(--space-xl) 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.footer h3, .footer h4 {
    margin-bottom: 1.5rem;
    font-family: var(--font-body);
}

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

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px; height: 40px;
    background: var(--primary-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
}

.social-links a:hover {
    background: var(--color-orange);
    color: white;
}

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

.footer-links ul li a {
    color: var(--text-light);
    font-size: 0.9rem;
}

.footer-links ul li a:hover {
    color: var(--color-orange);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0,0,0,0.05);
    color: var(--text-light);
    font-size: 0.85rem;
}

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 992px) {
    .included-flex, .about-flex, .meaning-flex {
        flex-direction: column;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .emotional-content h2 {
        font-size: 2.5rem;
    }

    .packages-grid.grid-5-cols {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .logo {
        font-size: 3rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .package-card.highlighted {
        transform: scale(1);
    }
    
    .package-card.highlighted:hover {
        transform: translateY(-5px);
    }

    .packages-grid.grid-5-cols {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .badge-maes {
        right: -10px;
    }

    .back-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

/* Simple animation classes for JS */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   BACK TO TOP BUTTON
========================================= */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-orange), var(--color-mustard));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(242, 140, 40, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
    cursor: pointer;
}

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

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(242, 140, 40, 0.5);
    color: white;
}

/* =========================================
   IMAGE MODAL
========================================= */
.image-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    align-items: center;
    justify-content: center;
}

.image-modal .modal-content {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 8px;
    animation: zoom 0.3s ease;
    object-fit: contain;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.close-modal:hover,
.close-modal:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

@keyframes zoom {
    from {transform:scale(0.8); opacity:0;} 
    to {transform:scale(1); opacity:1;}
}
