/* ========================================
   THE SKIN INVESTOR - PREMIUM STYLESHEET
   ======================================== */

/* ========================================
   CSS VARIABLES - LIGHT THEME (DEFAULT)
   ======================================== */
:root {
    /* Colors */
    --bg-color: #FAF8F5;
    --card-bg: #FFFFFF;
    --text-color: #2E2E2E;
    --text-muted: #6B6B6B;
    --primary-accent: #C6A96E;
    --secondary-accent: #8CA89C;
    
    /* Legacy variables for compatibility */
    --white: #FFFFFF;
    --soft-beige: #F5F0E8;
    --light-gold: #C6A96E;
    --soft-gold: #E8D5A3;
    --soft-green: #8CA89C;
    --dark-green: #2F4F4F;
    --text-dark: #2E2E2E;
    --text-light: #6B6B6B;
    --bg-white: #FFFFFF;
    --bg-soft-beige: #FAF8F5;
    --bg-light: #FAFAFA;
    
    /* Shadows */
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.06);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.08);
    --shadow-strong: 0 15px 40px rgba(0, 0, 0, 0.05);
    --shadow-premium: 0 15px 40px rgba(0, 0, 0, 0.05);
    
    /* Border Radius */
    --radius-small: 12px;
    --radius-medium: 16px;
    --radius-large: 20px;
    --radius-pill: 50px;
    
    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-medium: 0.4s ease;
    
    /* Fonts */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --section-padding: 100px 20px;
    --container-max: 1200px;
}

/* ========================================
   DARK THEME VARIABLES
   ======================================== */
body.dark-mode {
    --bg-color: #121212;
    --card-bg: #1E1E1E;
    --text-color: #F1F1F1;
    --text-muted: #A0A0A0;
    --primary-accent: #D4B77C;
    --secondary-accent: #7A9C90;
    
    /* Legacy variables */
    --white: #1E1E1E;
    --soft-beige: #2A2A2A;
    --light-gold: #D4B77C;
    --soft-gold: #3D3D3D;
    --soft-green: #7A9C90;
    --text-dark: #F1F1F1;
    --text-light: #A0A0A0;
    --bg-white: #1E1E1E;
    --bg-soft-beige: #181818;
    --bg-light: #252525;
    
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.2);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.25);
    --shadow-strong: 0 15px 40px rgba(0, 0, 0, 0.3);
    --shadow-premium: 0 15px 40px rgba(0, 0, 0, 0.2);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--bg-color);
    transition: background 0.4s ease, color 0.4s ease;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-color);
    transition: color 0.4s ease;
}

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

ul {
    list-style: none;
}

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

/* ========================================
   THEME TOGGLE BUTTON
   ======================================== */
.theme-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: var(--radius-pill);
    border: none;
    background: var(--card-bg);
    color: var(--primary-accent);
    font-size: 20px;
    cursor: pointer;
    box-shadow: var(--shadow-medium);
    z-index: 1001;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme-toggle:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-strong);
}

body.dark-mode .theme-toggle {
    color: var(--primary-accent);
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 15px;
    color: var(--text-color);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 40px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-accent) 0%, #B8956A 100%);
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(198, 169, 110, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(198, 169, 110, 0.4);
}

.btn-secondary {
    background: var(--card-bg);
    color: var(--text-color);
    border: 2px solid var(--soft-gold);
}

.btn-secondary:hover {
    background: var(--soft-beige);
    border-color: var(--primary-accent);
}

.btn-instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #FFFFFF;
}

.btn-instagram:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(225, 48, 108, 0.4);
}

/* ========================================
   PAGE LOADER
   ======================================== */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-color);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

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

.loader-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid var(--soft-beige);
    border-top-color: var(--primary-accent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

.loader-content p {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-accent);
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ========================================
   STICKY WHATSAPP FLOAT BUTTON
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: var(--shadow-medium);
    z-index: 1000;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-strong);
}

/* ========================================
   HERO TRUST BADGES
   ======================================== */
.trust-badges {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
    font-size: 0.95rem;
    color: var(--secondary-accent);
}

.trust-badges span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

@media (max-width: 600px) {
    .trust-badges {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
}

 /* ========================================
   HERO SECTION
   ======================================== */
   .hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;   /* Mobile safe viewport */
    min-height: 100dvh;   /* Dynamic viewport for modern phones */
    
    display: flex;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(135deg, rgba(250,248,245,0.95) 0%, rgba(255,255,255,0.9) 100%),
        url('https://images.unsplash.com/photo-1570172619644-dfd03ed5d881?auto=format&fit=crop&w=1920&q=80');

    background-size: cover;
    background-position: center;
    background-attachment: fixed;

    padding: 100px 20px;
}
@media (max-width: 768px) {
    .hero {
        padding: 80px 20px 60px;
        background-attachment: scroll;
    }
}

 /* ========================================
   ABOUT SECTION
   ======================================== */
.about {
    padding: var(--section-padding);
    background: var(--bg-color);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1000px;
    margin: 60px auto 0;
}

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

.about-image img {
    width: 100%;
    max-width: 400px;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-medium);
    transition: transform 0.4s ease;
}

.about-image img:hover {
    transform: scale(1.02);
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.credibility-list {
    display: grid;
    gap: 15px;
}

.cred-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: var(--text-color);
}

.cred-item i {
    color: var(--primary-accent);
    font-size: 1.1rem;
}

/* Tablet & Mobile */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .about-image img {
        max-width: 300px;
        height: 400px;
    }
}

@media (max-width: 480px) {
    .about {
        padding: 80px 15px;
    }
    
.about-image img {
        max-width: 250px;
        height: 350px;
    }
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services {
    padding: var(--section-padding);
    background: var(--bg-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.service-card {
    background: var(--card-bg);
    padding: 40px 30px;
    border-radius: var(--radius-large);
    text-align: center;
    box-shadow: var(--shadow-premium);
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-accent), var(--secondary-accent));
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-strong);
}

.service-icon {
    width: 72px;
    height: 72px;
   /* background: linear-gradient(135deg, var(--soft-beige), var(--primary-accent));*/
    background: linear-gradient(135deg, var(--soft-beige) 0%, var(--card-bg) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: #FFFFFF;
    transition: transform 0.3s ease;
}

.service-icon i {
    font-size: 1.4rem;
    color: var(--primary-accent);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--text-color);
}

/* ========================================
   SERVICE MODAL
   ======================================== */
.service-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.service-modal.show {
    opacity: 1;
    visibility: visible;
}

.service-modal-content {
    background: var(--card-bg);
    color: var(--text-color);
    max-width: 600px;
    max-height: 80vh;
    width: 90%;
    border-radius: var(--radius-large);
    overflow-y: auto;
    transform: scale(0.8) translateY(20px);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-strong);
}

.service-modal.show .service-modal-content {
    transform: scale(1) translateY(0);
}

.service-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px 20px;
    border-bottom: 1px solid var(--soft-beige);
}

#serviceTitle {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-muted);
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: var(--soft-beige);
    color: var(--text-color);
}

.service-description {
    padding: 30px;
    line-height: 1.7;
}

/* ========================================
   TESTIMONIALS CAROUSEL (FINAL FIXED VERSION)
   ======================================== */

   .testimonials {
    padding: var(--section-padding);
    background: linear-gradient(
        180deg,
        var(--bg-color) 0%,
        var(--soft-beige) 100%
    );
}

/* Carousel wrapper */

.testimonial-carousel {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0;
    overflow: hidden;
    border-radius: var(--radius-large);
}

/* Sliding track */

.carousel-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
}

/* Individual testimonial */

.testimonial-card {
    flex: 0 0 100%;
    background: var(--card-bg);
    padding: 45px 35px;
    text-align: center;
    box-shadow: var(--shadow-premium);
    border-radius: var(--radius-medium);
}

/* Client image */

.testimonial-image {
    margin-bottom: 20px;
}

.testimonial-image img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: var(--shadow-soft);
    border: 4px solid var(--soft-beige);
}

/* Stars */

.stars {
    color: #FFD700;
    font-size: 1.6rem;
    margin-bottom: 20px;
}

/* Testimonial text */

.testimonial-card p {
    font-style: italic;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 1.05rem;
}

/* Name */

.testimonial-card h4 {
    font-size: 1.3rem;
    color: var(--text-color);
    margin-bottom: 5px;
}

/* Location */

.location {
    color: var(--secondary-accent);
    font-size: 0.95rem;
    font-weight: 500;
}

/* Navigation buttons */

.carousel-prev,
.carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--primary-accent);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(198,169,110,0.3);
    z-index: 10;
}

/* Button positions */

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

/* Hover animation */

.carousel-prev:hover,
.carousel-next:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(198,169,110,0.4);
}

/* Tablet */

@media (max-width: 768px) {

    .carousel-prev,
    .carousel-next {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .carousel-prev {
        left: 5px;
    }

    .carousel-next {
        right: 5px;
    }

}

/* Mobile */

@media (max-width: 480px) {

    .testimonials {
        padding: 80px 15px;
    }

    .testimonial-card {
        padding: 35px 25px;
    }

    .testimonial-image img {
        width: 70px;
        height: 70px;
    }

}

.modal-actions {
    padding: 20px 30px 30px;
    text-align: center;
    border-top: 1px solid var(--soft-beige);
}

@media (max-width: 600px) {
    .service-modal-content {
        width: 95%;
        margin: 20px;
        border-radius: var(--radius-medium);
    }
    
    .service-modal-header {
        padding: 20px;
    }
    
    .service-description {
        padding: 20px;
    }
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.6;
}

.btn-sm {
    padding: 12px 28px;
    font-size: 0.9rem;
}

.service-learn-more {
    background: transparent !important;
    border-color: var(--primary-accent) !important;
    color: var(--primary-accent) !important;
}

.service-learn-more:hover {
    background: var(--primary-accent) !important;
    color: #FFFFFF !important;
}

/*
body.dark-mode .service-icon {
    background: linear-gradient(135deg, var(--soft-gold), var(--primary-accent));
}*/

 body.dark-mode .hero {
     background: 
         linear-gradient(135deg, rgba(18, 18, 18, 0.95) 0%, rgba(30, 30, 30, 0.9) 100%),
         url('https://images.unsplash.com/photo-1570172619644-dfd03ed5d881?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat;
}

/* Overlay stays the same */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.2) 0%, rgba(250,248,245,0.4) 100%);
}

body.dark-mode .hero-overlay {
    background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(18,18,18,0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
}
.hero-content {
    margin-top: -30px;
}

/* Responsive adjustments */
@media screen and (max-width: 1024px) {
    .hero {
        min-height: 80vh; 
        background-position: center top;
    }
    .brand-name {
        font-size: 3.5rem;
    }
    .subtitle {
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 768px) {
    .hero {
        min-height: 70vh;
        background-position: top center;
        background-attachment: scroll; /* disable fixed on mobile */
        padding: 60px 15px;
    }
    .brand-name {
        font-size: 2.5rem;
    }
    .subtitle {
        font-size: 1rem;
    }
    .hero .instagram-handle {
        font-size: 0.9rem;
    }
    .hero-buttons .btn {
        font-size: 0.9rem;
        padding: 10px 18px;
    }
}

@media screen and (max-width: 480px) {
    .hero {
        min-height: 60vh;
        padding: 40px 10px;
        background-position: top center;
    }
    .brand-name {
        font-size: 2rem;
    }
    .subtitle {
        font-size: 0.9rem;
    }
    .hero .instagram-handle {
        font-size: 0.8rem;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }
}


 /* ========================================
   SERVICES SECTION
   ======================================== 
 .services {
    padding: 60px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.services h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    text-align: center;
    margin-bottom: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.service-card {
    background: var(--card-bg);
    padding: 28px;
    border-radius: var(--radius-large);
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

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

.service-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--soft-beige) 0%, var(--card-bg) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 24px;
}
.service-icon i {
    font-size: 1.3rem;
    color: var(--primary-accent);
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    margin-bottom: 8px;
}

.service-card p {
    font-size: 14px;
    color: var(--text-secondary);
}*/



/* ========================================
   PROCESS SECTION
   ======================================== */
.process {
    padding: var(--section-padding);
    background: var(--bg-color);
    transition: background 0.4s ease;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.process-card {
    background: var(--card-bg);
    padding: 40px 30px;
    border-radius: var(--radius-large);
    text-align: center;
    box-shadow: var(--shadow-premium);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-accent), var(--secondary-accent));
}

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

.process-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--soft-beige) 0%, var(--card-bg) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.process-icon i {
    font-size: 2rem;
    color: var(--primary-accent);
}

.process-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.process-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.step-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--soft-beige);
}

/* ========================================
   PAYMENT SECTION
   ======================================== */
.payment {
    padding: var(--section-padding);
    background: var(--bg-color);
    transition: background 0.4s ease;
}

.payment-content {
    display: grid;
    gap: 40px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.pricing-card {
    background: var(--card-bg);
    border: 2px solid var(--soft-beige);
    border-radius: var(--radius-large);
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    border-color: var(--primary-accent);
    box-shadow: var(--shadow-soft);
    transform: translateY(-5px);
}

.pricing-header {
    margin-bottom: 20px;
}

.pricing-header i {
    font-size: 2rem;
    color: var(--secondary-accent);
    margin-bottom: 15px;
    display: block;
}

.pricing-header h3 {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 500;
    font-family: var(--font-body);
}

.price {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-accent);
}

.payment-details {
    display: grid;
    gap: 30px;
}

.payment-methods,
.benefits {
    background: var(--card-bg);
    padding: 30px;
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-premium);
    transition: all 0.3s ease;
}

.payment-methods h3,
.benefits h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.payment-methods h3 i {
    color: var(--primary-accent);
}

.benefits h3 i {
    color: var(--secondary-accent);
}

.bank-details {
    display: grid;
    gap: 15px;
}

.bank-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: var(--bg-light);
    border-radius: var(--radius-small);
    flex-wrap: wrap;
    gap: 10px;
    transition: all 0.3s ease;
}

.bank-name {
    font-weight: 500;
    color: var(--text-color);
}

.account-number {
    font-family: monospace;
    font-size: 1.1rem;
    color: var(--primary-accent);
    font-weight: 600;
}

.benefits ul {
    display: grid;
    gap: 12px;
}

.benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: var(--text-color);
}

.benefits li i {
    color: var(--secondary-accent);
    font-size: 1rem;
}

.important-notice {
    background: linear-gradient(135deg, #FFF3CD 0%, #FFE69C 100%);
    border: 2px solid #FFDA6A;
    border-radius: var(--radius-large);
    padding: 25px;
}

body.dark-mode .important-notice {
    background: linear-gradient(135deg, #3D3520 0%, #4A4025 100%);
    border-color: #5C4F2A;
}

.important-notice h4 {
    font-size: 1.1rem;
    color: #856404;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

body.dark-mode .important-notice h4 {
    color: #D4B77C;
}

.important-notice p {
    color: #856404;
    font-size: 0.95rem;
}

body.dark-mode .important-notice p {
    color: #C9B896;
}

/* ========================================
   BOOKING SECTION
   ======================================== */
.booking {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--bg-color) 0%, var(--soft-beige) 100%);
    transition: background 0.4s ease;
}

.booking-form-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--card-bg);
    padding: 50px 40px;
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-premium);
    transition: all 0.3s ease;
}

.booking-form {
    display: grid;
    gap: 25px;
}

.form-group {
    display: grid;
    gap: 10px;
}

.form-group label {
    font-weight: 500;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.4s ease;
}

.form-group label i {
    color: var(--primary-accent);
}

.form-group input,
.form-group select {
    padding: 15px 20px;
    border: 2px solid var(--soft-beige);
    border-radius: var(--radius-small);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--bg-light);
    color: var(--text-color);
}

.form-group input:focus, 
.form-group select:focus {
    outline: none;
    border-color: var(--primary-accent);
    background: var(--card-bg);
    box-shadow: 0 0 0 4px rgba(198, 169, 110, 0.15);
}

.form-group input::placeholder {
    color: var(--text-muted);
}

/* Form Row - Side by side on desktop */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Date and Time Input Styles */
.form-group input[type="date"],
.form-group input[type="time"] {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23C6A96E' d='M6 0C2.7 0 0 2.7 0 6s2.7 6 6 6 6-2.7 6-6-2.7-6-6-6zm0 11c-2.8 0-5-2.2-5-5s2.2-5 5-5 5 2.2 5 5-2.2 5-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

body.dark-mode .form-group input[type="date"],
body.dark-mode .form-group input[type="time"] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23D4B77C' d='M6 0C2.7 0 0 2.7 0 6s2.7 6 6 6 6-2.7 6-6-2.7-6-6-6zm0 11c-2.8 0-5-2.2-5-5s2.2-5 5-5 5 2.2 5 5-2.2 5-5 5z'/%3E%3C/svg%3E");
}

.form-group input[type="date"]:focus,
.form-group input[type="time"]:focus {
    outline: none;
    border-color: var(--primary-accent);
    background-color: var(--card-bg);
    box-shadow: 0 0 0 4px rgba(198, 169, 110, 0.15);
}

/* Helper Text */
.helper-text {
    font-size: 0.9rem;
    color: var(--secondary-accent);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.4s ease;
}

.helper-text i {
    font-size: 0.85rem;
}

.btn-submit {
    width: 100%;
    margin-top: 10px;
}



/* ========================================
   INSTAGRAM SECTION
   ======================================== */
.instagram-section {
    padding: var(--section-padding);
    background: var(--soft-beige);
    transition: background 0.4s ease;
}

body.dark-mode .instagram-section {
    background: #1A1A1A;
}

.instagram-card {
    max-width: 500px;
    margin: 0 auto;
    background: var(--card-bg);
    padding: 50px 40px;
    border-radius: var(--radius-large);
    text-align: center;
    box-shadow: var(--shadow-premium);
    transition: all 0.3s ease;
}

.instagram-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.instagram-icon i {
    font-size: 2rem;
    color: #FFFFFF;
}

.instagram-card h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.instagram-card .instagram-handle {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--text-dark);
    color: #FFFFFF;
    padding: 60px 20px 30px;
    transition: background 0.4s ease;
}

body.dark-mode .footer {
    background: #0A0A0A;
}

.footer-content {
    display: grid;
    gap: 30px;
    text-align: center;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.footer-contact a:hover {
    color: var(--primary-accent);
}

.footer-contact a i {
    font-size: 1.2rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* ========================================
   FADE IN ANIMATION
   ======================================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Tablet */
@media (max-width: 992px) {
    .brand-name {
        font-size: 3.2rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 320px;
    }
}

/* Mobile Large */
@media (max-width: 768px) {
    :root {
        --section-padding: 80px 15px;
    }
    
    .brand-name {
        font-size: 2.6rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 50px;
    }
    
    .hero {
        padding: 80px 15px;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .booking-form-container {
        padding: 35px 25px;
    }
    
    .form-cta-card {
        padding: 45px 30px;
    }
    
    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 26px;
        bottom: 20px;
        right: 20px;
    }
    
    /* Stack form row on mobile */
    .form-row {
        grid-template-columns: 1fr;
    }
    
    /* Adjust theme toggle for mobile */
    .theme-toggle {
        top: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
    }
}

/* Mobile Small */
@media (max-width: 480px) {
    .brand-name {
        font-size: 2.2rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .instagram-handle {
        font-size: 0.9rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .price {
        font-size: 2rem;
    }
    
    .process-card {
        padding: 30px 20px;
    }
    
    .bank-item {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-content {
        gap: 25px;
    }
    
    .theme-toggle {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }
}

/* Extra Small */
@media (max-width: 320px) {
    .brand-name {
        font-size: 1.9rem;
    }
    
    .btn {
        padding: 14px 28px;
        font-size: 0.95rem;
    }
}

/* Landscape Orientation */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 100px 20px;
    }
    
    .scroll-indicator {
        display: none;
    }
}

.success-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.success-modal.show {
    opacity: 1;
    visibility: visible;
}

.success-box {
    background: var(--card-bg);
    color: var(--text-color);
    padding: 40px 50px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    transform: scale(0.9);
    transition: all 0.3s ease;
}

.success-modal.show .success-box {
    transform: scale(1);
}

.success-icon {
    font-size: 80px;       /* bigger */
    color: #4BB543;        /* green */
    margin-bottom: 20px;
    animation: pop 0.4s ease;
}

@keyframes pop {
    0% { transform: scale(0); }
    80% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

.success-icon i {
    animation: pop 0.4s ease, pulse 1s ease-in-out 0.4s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* ========================================
   HERO FIXES – SCROLL INDICATOR + BUTTON SPACING
   ======================================== */

   /* ========================================
   FLOATING SCROLL INDICATOR
   ======================================== */

.scroll-indicator {
    position: fixed;
    left: 50%;
    bottom: 25px;
    transform: translateX(-50%);
    z-index: 999;
    
    width: 48px;
    height: 48px;
    border-radius: 50%;
    
    display: flex;
    align-items: center;
    justify-content: center;
    
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    
    animation: floatBounce 2s infinite;
    transition: all 0.3s ease;
}

body.dark-mode .scroll-indicator {
    background: rgba(30,30,30,0.9);
}

.scroll-indicator i {
    font-size: 18px;
    color: var(--primary-accent);
}

/* Floating bounce animation */
@keyframes floatBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-8px); }
}


/* Better spacing for hero buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

/* Tablet */
@media (max-width: 992px) {
    .hero-buttons {
        flex-direction: column;
        gap: 16px;
        margin-top: 10px;
    }

    .hero-buttons .btn {
        width: 90%;
        max-width: 320px;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .hero-buttons {
        flex-direction: column;
        gap: 14px;
        margin-top: 15px;
    }

    .hero-buttons .btn {
        width: 92%;
        max-width: 300px;
    }

    .scroll-indicator {
        bottom: 18px;
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 600px) {
    .hero .instagram-handle {
        margin-bottom: 25px;
    }
}
