/* =====================================================
   EXPLORA KIDS CLUB - Landing Page Styles
   Inspired by KidStar playful design
   ===================================================== */

/* === VARIABLES === */
:root {
    --orange: #FF69B4;
    --orange-dark: #E5559E;
    --orange-light: #FF8CC8;
    --purple: #42FAE0;
    --purple-dark: #2ED8C0;
    --purple-light: #6BFCE8;
    --peach: #FFF0F5;
    --peach-light: #FFF8FA;
    --yellow: #FDB813;
    --yellow-bg: #FF69B4;
    --green: #42FAE0;
    --red: #E74C3C;
    --dark: #1a1a1a;
    --dark-light: #2d2d2d;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-500: #888888;
    --gray-700: #495057;
    --gray-900: #212529;
    --white: #ffffff;
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 25px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --shadow-card: 0 5px 20px rgba(232, 115, 42, 0.08);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --transition: all 0.3s ease;
    --font-cursive: 'Dancing Script', cursive;
    /* Keep old variable names for compatibility with legal pages */
    --primary: #FF69B4;
    --primary-dark: #E5559E;
    --primary-light: #FF8CC8;
    --secondary: #42FAE0;
    --accent: #42FAE0;
}

/* === GOOGLE FONTS IMPORT === */
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;600;700&display=swap');

/* === RESET & BASE === */
.landing-page {
    font-family: 'Poppins', sans-serif;
    color: var(--gray-900);
    overflow-x: hidden;
    scroll-behavior: smooth;
    background: var(--white);
}

.landing-page *,
.landing-page *::before,
.landing-page *::after {
    box-sizing: border-box;
}

.landing-page img { max-width: 100%; height: auto; }
.landing-page a { text-decoration: none; color: inherit; transition: var(--transition); }
.landing-page section { padding: 80px 0; position: relative; }

/* === WAVE DIVIDERS === */
.wave-divider {
    position: absolute;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 2;
}
.wave-divider.top { top: -1px; }
.wave-divider.bottom { bottom: -1px; }
.wave-divider svg { display: block; width: calc(100% + 2px); position: relative; }
.wave-divider.flip svg { transform: rotateX(180deg); }

.zigzag-divider {
    position: absolute;
    left: 0;
    width: 100%;
    height: 20px;
    z-index: 2;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 20'%3E%3Cpath d='M0 20 L30 0 L60 20 L90 0 L120 20 L150 0 L180 20 L210 0 L240 20 L270 0 L300 20 L330 0 L360 20 L390 0 L420 20 L450 0 L480 20 L510 0 L540 20 L570 0 L600 20 L630 0 L660 20 L690 0 L720 20 L750 0 L780 20 L810 0 L840 20 L870 0 L900 20 L930 0 L960 20 L990 0 L1020 20 L1050 0 L1080 20 L1110 0 L1140 20 L1170 0 L1200 20' fill='%23FFFFFF'/%3E%3C/svg%3E") repeat-x;
    background-size: 60px 20px;
}
.zigzag-divider.top { top: -1px; }
.zigzag-divider.bottom { bottom: -1px; }
.zigzag-divider.orange {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 20'%3E%3Cpath d='M0 20 L30 0 L60 20 L90 0 L120 20 L150 0 L180 20 L210 0 L240 20 L270 0 L300 20 L330 0 L360 20 L390 0 L420 20 L450 0 L480 20 L510 0 L540 20 L570 0 L600 20 L630 0 L660 20 L690 0 L720 20 L750 0 L780 20 L810 0 L840 20 L870 0 L900 20 L930 0 L960 20 L990 0 L1020 20 L1050 0 L1080 20 L1110 0 L1140 20 L1170 0 L1200 20' fill='%23FF69B4'/%3E%3C/svg%3E");
}
.zigzag-divider.purple {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 20'%3E%3Cpath d='M0 20 L30 0 L60 20 L90 0 L120 20 L150 0 L180 20 L210 0 L240 20 L270 0 L300 20 L330 0 L360 20 L390 0 L420 20 L450 0 L480 20 L510 0 L540 20 L570 0 L600 20 L630 0 L660 20 L690 0 L720 20 L750 0 L780 20 L810 0 L840 20 L870 0 L900 20 L930 0 L960 20 L990 0 L1020 20 L1050 0 L1080 20 L1110 0 L1140 20 L1170 0 L1200 20' fill='%2342FAE0'/%3E%3C/svg%3E");
}

.cloud-divider {
    position: absolute;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 2;
}
.cloud-divider.top { top: -1px; }
.cloud-divider.bottom { bottom: -1px; transform: rotate(180deg); }

/* === DECORATIVE SHAPES === */
.deco-circle {
    position: absolute;
    border: 3px solid var(--orange);
    border-radius: 50%;
    opacity: 0.3;
    pointer-events: none;
}
.deco-triangle {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 18px solid transparent;
    border-right: 18px solid transparent;
    border-bottom: 30px solid var(--orange);
    opacity: 0.4;
    pointer-events: none;
}
.deco-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--orange);
    border-radius: 50%;
    opacity: 0.25;
    pointer-events: none;
}

/* === NAVBAR === */
.landing-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    padding: 10px 0;
    transition: var(--transition);
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.landing-navbar.scrolled {
    box-shadow: var(--shadow-sm);
    padding: 6px 0;
}

.landing-navbar .navbar-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--orange);
    display: flex;
    align-items: center;
    gap: 8px;
}

.landing-navbar .navbar-brand i { color: var(--orange); }

.landing-navbar .nav-link {
    color: var(--gray-700);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 8px 14px !important;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    text-align: center;
}

.landing-navbar .nav-link:hover {
    color: var(--orange);
    background: rgba(232, 115, 42, 0.06);
}

.landing-navbar .nav-link .nav-icon {
    display: block;
    font-size: 1.3rem;
    margin-bottom: 2px;
    color: var(--orange);
}

.navbar-toggler { border: 2px solid var(--orange); padding: 6px 10px; }
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23E8732A' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* === BUTTONS === */
.btn-primary-custom {
    background: var(--orange);
    color: var(--white);
    border: none;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}
.btn-primary-custom:hover {
    background: var(--orange-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(232, 115, 42, 0.35);
}

.btn-secondary-custom {
    background: var(--orange);
    color: var(--white);
    border: none;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}
.btn-secondary-custom:hover {
    background: var(--orange-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(232, 115, 42, 0.35);
}

.btn-outline-custom {
    background: transparent;
    color: var(--orange);
    border: 2px solid var(--orange);
    padding: 12px 30px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}
.btn-outline-custom:hover {
    background: var(--orange);
    color: var(--white);
    transform: translateY(-2px);
}

.landing-navbar .btn-outline-custom { color: var(--orange); border-color: var(--orange); }
.landing-navbar .btn-outline-custom:hover { background: var(--orange); color: #fff; }

.btn-sm-custom { padding: 8px 20px; font-size: 0.875rem; }

/* === CURSIVE SUBTITLE (KidStar style) === */
.section-cursive {
    font-family: var(--font-cursive);
    color: var(--orange);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

/* === HERO SECTION === */
.hero-section {
    min-height: 100vh;
    background: var(--peach);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 90px;
    padding-bottom: 40px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 10%;
    right: -5%;
    width: 550px;
    height: 550px;
    background: rgba(253, 184, 19, 0.08);
    border-radius: 50%;
}
.hero-section::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: 20%;
    width: 400px;
    height: 400px;
    background: rgba(232, 115, 42, 0.06);
    border-radius: 50%;
}

.hero-content { position: relative; z-index: 2; }

.hero-badge {
    display: none; /* replaced by cursive subtitle */
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
    color: var(--dark);
    margin-bottom: 20px;
}

.hero-title span {
    color: var(--orange);
    -webkit-text-fill-color: var(--orange);
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-image-wrapper { position: relative; z-index: 2; }

.hero-video-container,
.hero-image-card {
    background: none !important;
    backdrop-filter: none !important;
    border: none !important;
    padding: 0 !important;
}

.hero-resource-thumb {
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 3/4;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}
.hero-resource-thumb img { width: 100%; height: 100%; object-fit: cover; }
.hero-resource-thumb:hover { transform: scale(1.03); }

/* === SOCIAL PROOF BAR === */
.social-proof-section {
    background: var(--yellow-bg);
    padding: 50px 0;
    position: relative;
}

.proof-item {
    text-align: center;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    margin: 8px;
}

.proof-icon {
    font-size: 2.5rem;
    margin-bottom: 8px;
}

.proof-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
    margin-bottom: 4px;
}

.proof-label {
    font-size: 0.9rem;
    color: var(--gray-500);
    font-weight: 500;
}

/* === SECTION HEADERS === */
.section-header { text-align: center; margin-bottom: 50px; }

.section-tag {
    display: inline-block;
    font-family: var(--font-cursive);
    color: var(--orange);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
    background: none;
    padding: 0;
    border-radius: 0;
    text-transform: none;
    letter-spacing: 0;
}

.section-title {
    font-size: 2.3rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
}

/* === RESOURCE PREVIEW === */
.resources-section { background: var(--white); }

.resource-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.resource-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.resource-card-img { position: relative; aspect-ratio: 3/4; overflow: hidden; }
.resource-card-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.resource-card:hover .resource-card-img img { transform: scale(1.05); }

.resource-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 14px;
    border-radius: var(--radius-xl);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}
.resource-badge.free { background: var(--green); color: var(--white); }
.resource-badge.premium { background: var(--purple); color: var(--white); }

.resource-card-body { padding: 16px; flex-grow: 1; display: flex; flex-direction: column; }
.resource-category {
    font-size: 0.8rem;
    color: var(--orange);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}
.resource-title { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 0; line-height: 1.3; }

/* === HOW IT WORKS === */
.how-it-works-section { background: var(--white); }

.step-card { text-align: center; padding: 30px 20px; position: relative; }

.step-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--white);
    position: relative;
}
.step-icon.step-1 { background: var(--purple); }
.step-icon.step-2 { background: var(--orange); }
.step-icon.step-3 { background: var(--green); }

.step-number {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 28px;
    height: 28px;
    background: var(--dark);
    color: var(--white);
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-title { font-size: 1.15rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.step-desc { font-size: 0.9rem; color: var(--gray-500); line-height: 1.6; }

/* === PRICING === */
.pricing-section { background: var(--white); padding-top: 100px; }

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
}
.pricing-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.pricing-card.featured {
    border-color: var(--orange);
    transform: scale(1.03);
    box-shadow: 0 8px 40px rgba(232, 115, 42, 0.2);
}
.pricing-card.featured:hover { transform: scale(1.03) translateY(-8px); }

.pricing-popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--orange);
    color: var(--white);
    padding: 6px 24px;
    border-radius: var(--radius-xl);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.pricing-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.5rem;
}
.pricing-card:nth-child(1) .pricing-icon { background: rgba(76,175,80,0.1); color: var(--green); }
.pricing-card:nth-child(2) .pricing-icon { background: rgba(232,115,42,0.1); color: var(--orange); }
.pricing-card:nth-child(3) .pricing-icon { background: rgba(123,94,167,0.1); color: var(--purple); }

.pricing-plan-name { font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: 12px; }
.pricing-price { margin-bottom: 8px; }
.pricing-currency { font-size: 1.2rem; font-weight: 700; color: var(--gray-700); vertical-align: top; }
.pricing-amount { font-size: 3rem; font-weight: 800; color: var(--dark); line-height: 1; }
.pricing-period { font-size: 0.9rem; color: var(--gray-500); }
.pricing-desc { font-size: 0.85rem; color: var(--gray-500); margin-bottom: 24px; min-height: 22px; }

.pricing-features { list-style: none; padding: 0; margin: 0 0 28px; text-align: left; flex-grow: 1; }
.pricing-features li {
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--gray-700);
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--gray-200);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li i { font-size: 1.1rem; flex-shrink: 0; }
.pricing-features li i.bx-check { color: var(--green); }
.pricing-features li i.bx-x { color: var(--red); }
.pricing-features li.disabled { color: var(--gray-500); text-decoration: line-through; opacity: 0.6; }
.pricing-btn { width: 100%; margin-top: auto; }

/* === FAQ === */
.faq-section { background: var(--white); }

.faq-accordion .accordion-item {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md) !important;
    margin-bottom: 12px;
    overflow: hidden;
}
.faq-accordion .accordion-button {
    font-weight: 600;
    font-size: 1rem;
    color: var(--dark);
    padding: 18px 24px;
    background: var(--white);
    box-shadow: none;
}
.faq-accordion .accordion-button:not(.collapsed) {
    background: rgba(232, 115, 42, 0.05);
    color: var(--orange);
}
.faq-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23E8732A'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.faq-accordion .accordion-body { font-size: 0.95rem; color: var(--gray-700); line-height: 1.7; padding: 0 24px 18px; }

/* === TESTIMONIALS === */
.testimonials-section {
    background: var(--purple);
    position: relative;
    padding: 100px 0 80px;
}
.testimonials-section .section-title { color: var(--white); }
.testimonials-section .section-subtitle { color: rgba(255,255,255,0.75); }
.testimonials-section .section-tag { color: var(--yellow); }

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 28px;
    height: 100%;
    position: relative;
    box-shadow: var(--shadow-sm);
}

.testimonial-quote {
    color: var(--orange);
    font-size: 2.5rem;
    line-height: 1;
    margin-bottom: 12px;
    font-weight: 800;
}

.testimonial-text {
    color: var(--gray-700);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--white);
}

.testimonial-stars { color: var(--yellow); font-size: 1rem; }

/* === FOOTER === */
.landing-footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 0;
}

.footer-brand {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
}
.footer-brand i { color: var(--orange); }

.footer-desc { font-size: 0.9rem; line-height: 1.7; margin-bottom: 20px; max-width: 320px; }

.footer-social { display: flex; gap: 12px; }
.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    transition: var(--transition);
}
.footer-social a:nth-child(1) { background: #E1306C; } /* TikTok/Instagram pink */
.footer-social a:nth-child(2) { background: #1877F2; } /* Facebook blue */
.footer-social a:hover { transform: translateY(-3px); opacity: 0.85; }

.footer-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}
.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 6'%3E%3Cpath d='M0 3 Q5 0 10 3 Q15 6 20 3 Q25 0 30 3 Q35 6 40 3' fill='none' stroke='%23E8732A' stroke-width='2'/%3E%3C/svg%3E") no-repeat;
    background-size: contain;
}

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 0.9rem; color: rgba(255,255,255,0.6); transition: var(--transition); }
.footer-links a:hover { color: var(--orange); padding-left: 5px; }

.footer-contact-item { display: flex; gap: 12px; margin-bottom: 14px; font-size: 0.9rem; }
.footer-contact-item i { color: var(--orange); font-size: 1.1rem; margin-top: 3px; flex-shrink: 0; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 40px;
    padding: 20px 0;
    text-align: center;
    font-size: 0.85rem;
}

/* === WHATSAPP FLOAT === */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1040;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: var(--transition);
    text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37,211,102,0.5); color: var(--white); }

/* === AUTH MODAL === */
.auth-modal .modal-content { border: none; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); overflow: hidden; }
.auth-modal .modal-header {
    background: var(--orange);
    border-bottom: none;
    padding: 24px 30px 18px;
}
.auth-modal .modal-title { color: var(--white); font-weight: 700; font-size: 1.3rem; }
.auth-modal .btn-close { filter: brightness(0) invert(1); opacity: 0.7; }
.auth-modal .btn-close:hover { opacity: 1; }
.auth-modal .modal-body { padding: 30px; }

.auth-modal .form-control,
.auth-modal .form-select {
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-size: 0.95rem;
    transition: var(--transition);
    color: var(--gray-900);
    background: var(--white);
}
.auth-modal .form-control:focus,
.auth-modal .form-select:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(232, 115, 42, 0.15);
}
.auth-modal .form-control::placeholder { color: var(--gray-500); }
.auth-modal .input-group-text { background: var(--gray-100); border: 2px solid var(--gray-200); border-right: none; color: var(--gray-500); }

.auth-modal .auth-submit-btn {
    width: 100%;
    padding: 14px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 1rem;
    border: none;
    background: var(--orange);
    color: var(--white);
    transition: var(--transition);
    cursor: pointer;
}
.auth-modal .auth-submit-btn:hover { background: var(--orange-dark); transform: translateY(-1px); box-shadow: 0 4px 15px rgba(232,115,42,0.3); }

.auth-modal .auth-toggle-text { text-align: center; margin-top: 20px; font-size: 0.9rem; color: var(--gray-500); }
.auth-modal .auth-toggle-link { color: var(--orange); font-weight: 600; cursor: pointer; }
.auth-modal .auth-toggle-link:hover { text-decoration: underline; }
.auth-modal .input-phone-modal { display: flex; gap: 8px; }
.auth-modal .input-phone-modal select { max-width: 120px; flex-shrink: 0; }

/* === LEGAL PAGES === */
.legal-page { padding-top: 100px; min-height: 100vh; }
.legal-page .legal-content { max-width: 800px; margin: 0 auto; padding: 40px 20px 80px; }
.legal-page h1 { font-size: 2rem; font-weight: 800; color: var(--dark); margin-bottom: 8px; }
.legal-page .legal-updated { color: var(--gray-500); font-size: 0.9rem; margin-bottom: 36px; }
.legal-page h2 { font-size: 1.3rem; font-weight: 700; color: var(--dark); margin-top: 36px; margin-bottom: 16px; padding-bottom: 8px; border-bottom: 2px solid var(--gray-200); }
.legal-page p, .legal-page li { font-size: 0.95rem; color: var(--gray-700); line-height: 1.8; margin-bottom: 12px; }
.legal-page ul { padding-left: 24px; }
.legal-page ul li { margin-bottom: 8px; }
.legal-page .legal-highlight {
    background: rgba(232, 115, 42, 0.06);
    border-left: 4px solid var(--orange);
    padding: 16px 20px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 20px 0;
}

/* === CONTACT PAGE === */
.contact-section { background: var(--gray-100); }
.contact-info-card { background: var(--white); padding: 30px; border-radius: var(--radius-md); box-shadow: var(--shadow-card); height: 100%; }
.contact-info-item { display: flex; gap: 16px; margin-bottom: 24px; }
.contact-info-icon {
    width: 48px; height: 48px; border-radius: 50%;
    background: rgba(232, 115, 42, 0.1);
    display: flex; align-items: center; justify-content: center;
    color: var(--orange); font-size: 1.3rem; flex-shrink: 0;
}
.contact-info-label { font-size: 0.8rem; color: var(--gray-500); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.contact-info-value { font-size: 0.95rem; color: var(--dark); font-weight: 500; }
.contact-form-card { background: var(--white); padding: 36px; border-radius: var(--radius-md); box-shadow: var(--shadow-card); }
.contact-form-card .form-control {
    border: 2px solid var(--gray-200); border-radius: var(--radius-sm); padding: 12px 16px; font-size: 0.95rem; transition: var(--transition);
}
.contact-form-card .form-control:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(232, 115, 42, 0.15); }

/* === SCROLL ANIMATIONS === */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* === RESPONSIVE === */
@media (max-width: 991.98px) {
    .hero-title { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-image-wrapper { margin-top: 40px; }
    .landing-navbar .navbar-collapse { background: var(--white); border-radius: var(--radius-md); padding: 20px; margin-top: 10px; box-shadow: var(--shadow-md); }
    .navbar-nav-buttons { margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--gray-200); }
    .pricing-card.featured { transform: none; }
    .pricing-card.featured:hover { transform: translateY(-8px); }
    .landing-page section { padding: 60px 0; }
}

@media (max-width: 767.98px) {
    .hero-section { text-align: center; padding-top: 100px; }
    .hero-title { font-size: 2rem; }
    .hero-subtitle { font-size: 0.95rem; margin-left: auto; margin-right: auto; }
    .hero-buttons { justify-content: center; }
    .section-title { font-size: 1.7rem; }
    .proof-number { font-size: 1.8rem; }
    .pricing-card { max-width: 380px; margin: 0 auto; }
    .landing-page section { padding: 50px 0; }
    .landing-footer { text-align: center; }
    .footer-desc { margin-left: auto; margin-right: auto; }
    .footer-social { justify-content: center; }
    .footer-title::after { left: 50%; transform: translateX(-50%); }
    .testimonials-section { padding: 80px 0 60px; }
}

@media (max-width: 575.98px) {
    .hero-title { font-size: 1.75rem; }
    .hero-buttons .btn-primary-custom,
    .hero-buttons .btn-outline-custom { width: 100%; justify-content: center; }
    .section-title { font-size: 1.5rem; }
    .pricing-amount { font-size: 2.5rem; }
    .auth-modal .modal-body { padding: 20px; }
}
