/**
 * landing.css - Landing Page Styles
 * Location: /var/www/html/sunlife/assets/css/landing.css
 */

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

html, body {
    width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

:root {
    --gold: #FFD700;
    --gold-dark: #DAA520;
    --gold-light: #FFF9C4;
    --gold-pure: #FFD700;
    --dark: #1a1a2e;
    --gray: #6c757d;
    --white: #ffffff;
    --black: #000000;
    --about-bg: #f8f6f0;
    --shadow-sm: 0 2px 15px rgba(0,0,0,0.04);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.06);
    --shadow-lg: 0 15px 50px rgba(0,0,0,0.08);
    --shadow-xl: 0 25px 70px rgba(0,0,0,0.12);
    --radius: 20px;
    --radius-sm: 12px;
    --radius-lg: 28px;
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    color: #333;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 100%;
    overflow-x: hidden;
}

/* ============ FIX TABLET GAPS - ENSURE FULL WIDTH ============ */
.container,
.container-fluid,
.row,
.col,
.col-*,
section,
.hero,
.hero-mobile,
.about,
.about-mobile,
.feedback-section,
.features,
.pricing,
.faq-section,
.cta {
    max-width: 100% !important;
    overflow-x: hidden !important;
}

.container {
    padding-left: 15px !important;
    padding-right: 15px !important;
}

/* ============ NAVIGATION LINKS ============ */
.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    padding: 0;
}

.nav-links a {
    color: #444;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    transition: var(--transition);
    display: block;
}

.nav-links a:hover {
    color: var(--gold-pure);
    background: rgba(255, 215, 0, 0.08);
}

/* ============ NAVBAR MOBILE/ TABLET PORTRAIT OVERRIDES ============ */
@media (max-width: 991px) {
    .navbar-nav {
        padding: 0.5rem 0;
        width: 100%;
    }
    
    .navbar-nav .nav-item {
        width: 100%;
    }
    
    .navbar-nav .nav-item.nav-link-item {
        width: 100%;
    }
    
    .navbar-nav .nav-item.nav-link-item a {
        width: 100%;
        padding: 0.6rem 0.8rem;
        font-size: 0.9rem;
        display: block;
        text-align: left;
        color: #444;
        text-decoration: none;
        font-weight: 500;
        border-radius: 6px;
        transition: var(--transition);
    }
    
    .navbar-nav .nav-item.nav-link-item a:hover {
        color: var(--gold-pure);
        background: rgba(255, 215, 0, 0.08);
    }
    
    /* Dropdown in mobile */
    .navbar-nav .dropdown {
        width: 100%;
    }
    
    .navbar-nav .dropdown .nav-link {
        padding: 0.6rem 0.8rem !important;
        width: 100%;
        text-align: left;
        display: block;
    }
    
    .navbar-nav .dropdown .dropdown-menu {
        background: transparent;
        box-shadow: none;
        padding: 0;
        margin: 0;
        border: none;
        animation: none;
        position: static !important;
        transform: none !important;
        width: 100%;
    }
    
    .navbar-nav .dropdown .dropdown-item {
        padding: 0.5rem 0.8rem 0.5rem 1.8rem;
        font-size: 0.85rem;
        color: #444;
        width: 100%;
        text-align: left;
    }
    
    .navbar-nav .dropdown .dropdown-item:hover {
        background: rgba(255, 215, 0, 0.08);
        color: var(--gold-pure);
        padding-left: 1.8rem;
    }
    
    /* Get Started button in mobile */
    .navbar-nav .nav-item .btn-gold,
    .navbar-nav .nav-item .btn-outline-gold {
        width: 100%;
        text-align: center;
        padding: 0.6rem 1.2rem;
        margin: 0.2rem 0;
        min-height: 44px;
        font-size: 0.9rem;
        border-radius: 8px;
        display: block;
        justify-content: center;
    }
    
    /* Navbar button container */
    .navbar-nav .nav-item.btn-container {
        padding: 0.2rem 0;
        margin-top: 0.3rem;
        border-top: 1px solid rgba(0,0,0,0.06);
        padding-top: 0.5rem;
    }
    
    /* Login dropdown toggle alignment */
    .navbar-nav .dropdown .nav-link.dropdown-toggle {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .navbar-nav .dropdown .nav-link.dropdown-toggle::after {
        margin-left: auto;
    }
}

/* ============ DESKTOP DEFAULT - SHOW DESKTOP HERO ============ */
.hero {
    display: flex !important;
}
.hero-mobile {
    display: none !important;
}
.about {
    display: block !important;
}
.about-mobile {
    display: none !important;
}

/* ============ MOBILE (up to 767px) - SHOW MOBILE HERO ============ */
@media (max-width: 767px) {
    .hero {
        display: none !important;
    }
    .hero-mobile {
        display: flex !important;
    }
    .about {
        display: none !important;
    }
    .about-mobile {
        display: block !important;
    }
    
    .feedback-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    .features .col-6 {
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }
    
    .pricing .col-md-6 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        margin-bottom: 1.5rem !important;
    }
    
    .pricing-card.featured {
        transform: scale(1) !important;
    }
    
    .feedback-header-content {
        flex-direction: column !important;
        align-items: flex-start !important;
    }
    
    .feedback-header-right {
        text-align: left !important;
        width: 100% !important;
    }
    
    .feedback-section .section-title {
        text-align: left !important;
    }
    
    .feedback-section .section-subtitle {
        text-align: left !important;
    }
    
    .feedback-header-right .btn-read-all {
        width: 100% !important;
        justify-content: center !important;
    }
}

/* ============ TABLET PORTRAIT (768px - 1024px) - SHOW MOBILE HERO ============ */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
    /* Show mobile hero */
    .hero {
        display: none !important;
    }
    .hero-mobile {
        display: flex !important;
    }
    
    /* Show mobile about */
    .about {
        display: none !important;
    }
    .about-mobile {
        display: block !important;
    }
    
    .container {
        max-width: 100% !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
    
    .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .col-lg-6,
    .col-lg-5,
    .col-md-6,
    .col-md-3,
    .col-6 {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
    
    /* Feedback grid - single column like mobile */
    .feedback-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    /* Features - 2 columns like mobile */
    .features .col-6 {
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }
    
    .features .col-md-3 {
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }
    
    /* Pricing - full width like mobile */
    .pricing .col-md-6 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        margin-bottom: 1.5rem !important;
    }
    
    .pricing-card.featured {
        transform: scale(1) !important;
    }
    
    .pricing-card.featured:hover {
        transform: scale(1.02) !important;
    }
    
    /* CTA adjustments */
    .cta h2 {
        font-size: 1.8rem !important;
    }
    
    .cta p {
        font-size: 0.95rem !important;
    }
    
    .cta .btn-gold {
        padding: 0.7rem 2rem !important;
        font-size: 0.95rem !important;
        min-height: 46px !important;
    }
    
    /* Section padding adjustments */
    .hero-mobile {
        padding: 80px 0 10px !important;
        min-height: 70vh !important;
    }
    
    .about-mobile {
        padding: 2rem 0 3rem !important;
    }
    
    .feedback-section {
        padding: 3rem 0 !important;
    }
    
    .features {
        padding: 3rem 0 !important;
    }
    
    .pricing {
        padding: 3rem 0 !important;
    }
    
    .faq-section {
        padding: 3rem 0 !important;
    }
    
    .cta {
        padding: 3rem 0 !important;
    }
    
    /* Section titles */
    .section-title {
        font-size: 1.8rem !important;
    }
    
    .section-subtitle {
        font-size: 0.95rem !important;
        margin-bottom: 2rem !important;
    }
    
    /* Feedback header */
    .feedback-header-content {
        flex-direction: column !important;
        align-items: flex-start !important;
    }
    
    .feedback-header-right {
        text-align: left !important;
        width: 100% !important;
    }
    
    .feedback-section .section-title {
        text-align: left !important;
    }
    
    .feedback-section .section-subtitle {
        text-align: left !important;
    }
    
    .feedback-header-right .btn-read-all {
        padding: 0.5rem 1.5rem !important;
        font-size: 0.85rem !important;
        width: 100% !important;
        justify-content: center !important;
    }
    
    /* Feature cards */
    .feature-card {
        padding: 1.5rem 1rem !important;
        min-height: 220px !important;
    }
    
    .feature-icon {
        width: 56px !important;
        height: 56px !important;
        font-size: 1.5rem !important;
    }
    
    .feature-card h4 {
        font-size: 1rem !important;
    }
    
    .feature-card p {
        font-size: 0.8rem !important;
    }
    
    /* Pricing cards */
    .pricing-card {
        padding: 1.5rem 1rem !important;
    }
    
    .price {
        font-size: 2.2rem !important;
    }
    
    /* About mobile */
    .about-mobile h3 {
        font-size: 1.7rem !important;
    }
    
    .about-mobile p {
        font-size: 0.92rem !important;
    }
    
    .about-mobile .check-list li {
        font-size: 0.9rem !important;
    }
    
    .about-mobile .about-image-wrapper img {
        max-width: 70% !important;
    }
    
    /* Hero mobile */
    .hero-mobile h1 {
        font-size: 1.8rem !important;
    }
    
    .hero-mobile .lead {
        font-size: 0.9rem !important;
    }
    
    .hero-mobile .btn-gold-mobile,
    .hero-mobile .btn-outline-gold-mobile {
        font-size: 0.8rem !important;
        padding: 0.7rem 0.5rem !important;
        min-height: 48px !important;
        width: 35% !important;
    }
    
    .hero-mobile .mobile-side-image img {
        width: 90% !important;
    }
    
    /* Feedback cards */
    .feedback-card {
        padding: 1.2rem !important;
    }
    
    .feedback-user h6 {
        font-size: 0.85rem !important;
    }
    
    .feedback-text {
        font-size: 0.85rem !important;
    }
    
    /* Navbar */
    .navbar-brand img {
        height: 30px !important;
    }
    
    .navbar-brand {
        font-size: 1rem !important;
        gap: 6px !important;
    }
    
    .navbar-brand .brand-text {
        font-size: 0.85rem !important;
    }
    
    .navbar {
        padding: 0.4rem 0 !important;
    }
    
    .navbar-nav {
        padding: 0.3rem 0 !important;
        gap: 2px !important;
    }
    
    .nav-link {
        padding: 0.4rem 0.8rem !important;
        font-size: 0.85rem !important;
    }
    
    .navbar .btn-gold,
    .navbar .btn-outline-gold {
        width: 100% !important;
        text-align: center !important;
        padding: 0.5rem 1.2rem !important;
        margin: 0.2rem 0 !important;
        min-height: 42px !important;
        font-size: 0.85rem !important;
    }
}

/* ============ TABLET LANDSCAPE (768px - 1024px) - SHOW DESKTOP HERO ============ */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    .hero {
        display: flex !important;
    }
    .hero-mobile {
        display: none !important;
    }
    
    .about {
        display: block !important;
    }
    .about-mobile {
        display: none !important;
    }
    
    .container {
        max-width: 100% !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
    
    .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .col-lg-6,
    .col-lg-5,
    .col-md-6,
    .col-md-3,
    .col-6 {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
    
    .feedback-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.2rem !important;
    }
    
    .features .col-md-3 {
        flex: 0 0 25% !important;
        max-width: 25% !important;
    }
    
    .pricing .col-md-6 {
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }
}

/* ============ SCROLL PROGRESS INDICATOR ============ */
.scroll-progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    z-index: 10000;
    background: rgba(0,0,0,0.04);
    backdrop-filter: blur(2px);
}

.scroll-progress-bar {
    height: 100%;
    width: 0%;
    background: var(--gold-pure);
    border-radius: 0 2px 2px 0;
    position: relative;
    transition: width 0.1s linear;
}

/* ============ NAVBAR ============ */
.navbar {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    padding: 0.6rem 0;
    transition: var(--transition);
    border-bottom: none;
    margin-top: 4px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    width: 100%;
}

.navbar .container {
    max-width: 100% !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
}

.navbar.scrolled {
    padding: 0.3rem 0;
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.navbar-brand .brand-gold {
    color: var(--gold-pure);
}

.navbar-brand .brand-black {
    color: var(--black);
}

.navbar-brand img {
    height: 40px;
    width: auto;
    transition: var(--transition);
}

.navbar-brand:hover img {
    transform: scale(1.05) rotate(-2deg);
}

.navbar-brand .brand-text {
    display: inline-block;
}

.navbar-toggler {
    border: none;
    padding: 6px 8px;
    border-radius: 8px;
    transition: var(--transition);
    background: rgba(255, 215, 0, 0.08);
}

.navbar-toggler:hover {
    background: rgba(255, 215, 0, 0.15);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.3);
}

.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='rgba(26,26,46,0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-nav {
    gap: 4px;
    align-items: center;
}

.nav-link {
    font-weight: 600;
    color: #444 !important;
    padding: 0.5rem 1rem !important;
    transition: var(--transition);
    position: relative;
    border-radius: 8px;
    font-size: 0.9rem;
}

.nav-link:hover {
    color: var(--gold-pure) !important;
    background: rgba(255, 215, 0, 0.08);
}

/* Navigation links in navbar - desktop */
.navbar-nav .nav-item.nav-link-item a {
    color: #444;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    transition: var(--transition);
    display: block;
}

.navbar-nav .nav-item.nav-link-item a:hover {
    color: var(--gold-pure);
    background: rgba(255, 215, 0, 0.08);
}

.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-lg);
    border-radius: 12px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    animation: fadeInDown 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.1);
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.dropdown-item {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    color: #333;
}

.dropdown-item:hover {
    background: var(--gold-light);
    color: var(--gold-pure);
    padding-left: 2rem;
}

/* Buttons - Reduced border radius, no shadows */
.btn-outline-gold {
    border: 2px solid var(--gold-pure);
    color: var(--gold-pure);
    background: transparent;
    padding: 0.6rem 1.8rem;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
    font-size: 0.9rem;
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-outline-gold:hover {
    background: var(--gold-pure);
    color: #333;
    transform: translateY(-2px);
    border-color: var(--gold-pure);
}

.btn-gold {
    background: var(--gold-pure);
    color: #333;
    border: none;
    padding: 0.6rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
    font-size: 0.9rem;
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-gold:hover {
    transform: translateY(-2px);
    color: #333;
    background: var(--gold-pure);
}

.btn-gold-lg {
    padding: 0.8rem 2.8rem;
    font-size: 1.05rem;
    min-height: 52px;
    border-radius: 8px;
}

.btn-gold.w-100 {
    min-height: 46px;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
}

/* ============ HERO SECTION - DESKTOP ============ */
.hero {
    padding: 110px 0 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    margin-top: 0;
    width: 100%;
}

.hero .container {
    max-width: 100% !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
}

.hero .golden-curve-right {
    position: absolute;
    right: -5%;
    top: 20%;
    width: 45%;
    height: 60%;
    background: radial-gradient(ellipse at 70% 50%, rgba(255, 215, 0, 0.12) 0%, rgba(255, 215, 0, 0.05) 40%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    transform: rotate(-10deg);
}

.hero .golden-curve-right-2 {
    position: absolute;
    right: -2%;
    top: 25%;
    width: 35%;
    height: 50%;
    background: radial-gradient(ellipse at 60% 50%, rgba(255, 215, 0, 0.06) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    transform: rotate(-5deg);
}

.hero .container {
    position: relative;
    z-index: 3;
    padding: 40px 0 80px;
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.12;
    margin-bottom: 1.2rem;
}

.hero h1 .highlight {
    color: var(--gold-pure);
    position: relative;
    display: inline-block;
}

.hero h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gold-pure);
    opacity: 0.2;
    border-radius: 3px;
}

.hero .lead {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 1.8rem;
    line-height: 1.8;
    max-width: 500px;
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 380px;
    width: 100%;
}

.hero-image-wrapper .image-stack {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 380px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrapper .side-image-2 {
    position: absolute;
    top: 22%;
    left: -5%;
    width: 45%;
    height: auto;
    z-index: 1;
    opacity: 0.5;
    animation: slideFromLeft 8s ease-in-out infinite;
    filter: drop-shadow(0 10px 30px rgba(255, 215, 0, 0.10));
}

.hero-image-wrapper .side-image-1 {
    position: absolute;
    top: 5%;
    right: 0;
    width: 72%;
    height: auto;
    z-index: 2;
    animation: moveInPosition 6s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.10));
    transition: var(--transition);
}

.hero-image-wrapper .side-image-1:hover {
    transform: scale(1.02) translateY(-5px);
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.15));
}

@keyframes slideFromLeft {
    0% { transform: translateX(-40px) scale(0.95); opacity: 0.3; }
    25% { transform: translateX(0px) scale(1); opacity: 0.6; }
    75% { transform: translateX(0px) scale(1); opacity: 0.6; }
    100% { transform: translateX(-40px) scale(0.95); opacity: 0.3; }
}

@keyframes moveInPosition {
    0% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-10px) scale(1.02); }
    100% { transform: translateY(0px) scale(1); }
}

.hero-image-wrapper .golden-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    background: radial-gradient(ellipse, rgba(255, 215, 0, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 1; }
}

/* ============ MOBILE HERO ============ */
.hero-mobile {
    display: none;
    padding: 80px 0 10px;
    background: linear-gradient(135deg, #f8f6f0 0%, #ffffff 100%);
    position: relative;
    min-height: 100vh;
    align-items: flex-start;
    overflow: hidden;
    width: 100%;
}

.hero-mobile .container {
    max-width: 100% !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
}

.hero-mobile .container {
    position: relative;
    z-index: 2;
    padding: 20px 15px;
}

.hero-mobile .hero-content {
    max-width: 100%;
    padding: 5px 0;
}

.hero-mobile h1 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.15;
    margin-bottom: 0.8rem;
}

.hero-mobile h1 .highlight {
    color: var(--gold-pure);
    position: relative;
    display: inline-block;
}

.hero-mobile h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold-pure);
    opacity: 0.3;
    border-radius: 2px;
}

.hero-mobile .lead {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

.hero-mobile .btn-group-mobile {
    display: flex;
    gap: 0.6rem;
    justify-content: flex-start;
    margin-bottom: 1.5rem;
}

.hero-mobile .btn-gold-mobile {
    background: var(--gold-pure);
    color: #333;
    padding: 0.7rem 0.5rem;
    font-size: 0.8rem;
    min-height: 48px;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    text-decoration: none;
    width: 35%;
    text-align: center;
    flex-shrink: 0;
}

.hero-mobile .btn-gold-mobile:hover {
    transform: translateY(-2px);
    background: #e6c200;
    color: #333;
}

.hero-mobile .btn-outline-gold-mobile {
    border: 2px solid var(--gold-pure);
    color: var(--gold-pure);
    background: transparent;
    padding: 0.7rem 0.5rem;
    font-size: 0.8rem;
    min-height: 48px;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    width: 35%;
    text-align: center;
    flex-shrink: 0;
}

.hero-mobile .btn-outline-gold-mobile:hover {
    background: var(--gold-pure);
    color: #333;
    transform: translateY(-2px);
}

.hero-mobile .mobile-side-image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0.5rem;
    width: 100%;
}

.hero-mobile .mobile-side-image img {
    width: 90%;
    max-width: 400px;
    height: auto;
    opacity: 0.6;
}

/* ============ ABOUT SECTION - DESKTOP ============ */
.about {
    padding: 5rem 0 4rem;
    background: var(--white);
    position: relative;
    z-index: 1;
    width: 100%;
}

.about .container {
    max-width: 100% !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
}

.about::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 30%;
    height: 60%;
    background: radial-gradient(ellipse, rgba(255, 215, 0, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.about h3 {
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: var(--dark);
}

.about h3 span {
    color: var(--gold-pure);
    position: relative;
}

.about h3 span::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold-pure);
    opacity: 0.2;
    border-radius: 2px;
}

.about p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.about-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image-wrapper img {
    width: 100%;
    max-width: 380px;
    height: auto;
    border-radius: var(--radius-lg);
    display: block;
    transition: var(--transition);
}

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

/* ============ MOBILE ABOUT ============ */
.about-mobile {
    display: none;
    padding: 2rem 0 3rem;
    background: var(--white);
    width: 100%;
}

.about-mobile .container {
    max-width: 100% !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
}

.about-mobile h3 {
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
    text-align: left;
}

.about-mobile h3 span {
    color: var(--gold-pure);
}

.about-mobile p {
    color: var(--gray);
    line-height: 1.8;
    font-size: 0.92rem;
    margin-bottom: 0.8rem;
    text-align: left;
}

.about-mobile .check-list {
    list-style: none;
    padding: 0;
    margin: 1.2rem 0 1.5rem;
}

.about-mobile .check-list li {
    padding: 0.5rem 0;
    color: #444;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    border-bottom: 1px solid rgba(0,0,0,0.04);
}

.about-mobile .check-list li:last-child {
    border-bottom: none;
}

.about-mobile .check-list li i {
    color: var(--gold-pure);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.about-mobile .about-image-wrapper {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-mobile .about-image-wrapper img {
    max-width: 70%;
    height: auto;
    border-radius: var(--radius-lg);
    display: block;
}

/* ============ FEEDBACK SECTION ============ */
.feedback-section {
    padding: 4.5rem 0;
    background: var(--about-bg);
    color: var(--dark);
    overflow: hidden;
    position: relative;
    width: 100%;
}

.feedback-section .container {
    max-width: 100% !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
}

.feedback-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 40%;
    height: 100%;
    background: radial-gradient(ellipse, rgba(255, 215, 0, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.feedback-section .section-title {
    color: var(--dark);
    margin-bottom: 0.3rem;
    text-align: left;
}

.feedback-section .section-title span {
    color: var(--gold-pure);
}

.feedback-section .section-subtitle {
    color: var(--gray);
    margin-bottom: 0;
    text-align: left;
}

.feedback-header-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.feedback-header-left {
    flex: 1;
}

.feedback-header-right {
    text-align: right;
}

.feedback-header-right .btn-read-all {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.8rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    background: var(--gold-pure);
    color: #333;
    border: none;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.feedback-header-right .btn-read-all:hover {
    transform: translateY(-2px);
    color: #333;
    background: var(--gold-pure);
}

.feedback-header-right .btn-read-all i {
    font-size: 1rem;
}

.feedback-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.feedback-card {
    background: rgba(255, 215, 0, 0.08);
    border-radius: var(--radius);
    padding: 1.8rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    color: var(--dark);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.05);
}

.feedback-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(50px, -50px);
    pointer-events: none;
}

.feedback-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    background: rgba(255, 215, 0, 0.12);
}

.feedback-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
    padding-bottom: 0.4rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.feedback-user {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feedback-user i {
    font-size: 1.3rem;
    color: var(--gold-pure);
}

.feedback-user h6 {
    margin: 0;
    font-weight: 600;
    color: var(--dark);
    font-size: 0.95rem;
}

.feedback-date {
    font-size: 0.7rem;
    color: var(--gray);
}

.feedback-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 0;
}

.feedback-text i {
    color: var(--gold-pure);
    margin-right: 0.4rem;
    font-size: 1rem;
}

.no-feedback {
    text-align: center;
    padding: 2.5rem;
    background: rgba(255, 215, 0, 0.05);
    border-radius: var(--radius);
    border: 2px dashed rgba(255, 215, 0, 0.15);
}

.no-feedback i {
    font-size: 2.5rem;
    color: var(--gold-pure);
    margin-bottom: 0.8rem;
}

.no-feedback h4 {
    color: var(--dark);
    margin-bottom: 0.8rem;
}

.no-feedback p {
    color: var(--gray);
}

/* ============ FEATURES SECTION ============ */
.features {
    padding: 4rem 0;
    background: var(--white);
    position: relative;
    width: 100%;
}

.features .container {
    max-width: 100% !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
}

.features::before {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 40%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(255, 215, 0, 0.03) 0%, transparent 60%);
    pointer-events: none;
}

.section-title {
    text-align: center;
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.section-title span {
    color: var(--gold-pure);
    position: relative;
}

.section-title span::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold-pure);
    opacity: 0.2;
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
}

.feature-card {
    text-align: center;
    padding: 2rem 1.2rem;
    border-radius: var(--radius);
    transition: var(--transition);
    background: white;
    border: 1px solid #eee;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    opacity: 0;
    transform: translateY(40px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 280px;
    width: 100%;
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-card.hidden-up {
    opacity: 0;
    transform: translateY(-40px);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold-pure);
    transform: scaleX(0);
    transition: var(--transition);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 215, 0, 0.2);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: var(--gold-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    color: var(--gold-pure);
    font-size: 1.8rem;
    transition: var(--transition);
    flex-shrink: 0;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--gold-pure);
    color: white;
}

.feature-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--dark);
    flex-shrink: 0;
}

.feature-card p {
    color: var(--gray);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 0;
    flex: 1;
}

.feature-col {
    display: flex;
    align-items: stretch;
}

/* ============ PRICING SECTION ============ */
.pricing {
    padding: 4rem 0;
    background: var(--about-bg);
    width: 100%;
}

.pricing .container {
    max-width: 100% !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
}

.pricing-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--transition);
    border: 1px solid #eee;
    position: relative;
    height: 100%;
    box-shadow: var(--shadow-sm);
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 215, 0, 0.2);
}

.pricing-card.featured {
    border: 2px solid var(--gold-pure);
    transform: scale(1.02);
    background: linear-gradient(180deg, white 0%, var(--gold-light) 100%);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.08);
}

.pricing-card.featured:hover {
    transform: scale(1.04);
}

.popular-badge {
    position: absolute;
    top: -10px;
    right: 15px;
    background: var(--gold-pure);
    color: #333;
    padding: 0.2rem 1rem;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 700;
}

.pricing-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.price {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--gold-pure);
    margin: 0.5rem 0 0.8rem;
}

.price small {
    font-size: 0.85rem;
    color: var(--gray);
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 1.2rem 0;
    text-align: left;
}

.pricing-card ul li {
    padding: 0.5rem 0;
    color: #555;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
}

.pricing-card ul li i {
    color: var(--gold-pure);
    margin-right: 0.5rem;
    font-size: 1rem;
}

/* ============ FAQ SECTION ============ */
.faq-section {
    padding: 4rem 0;
    background: var(--white);
    width: 100%;
}

.faq-section .container {
    max-width: 100% !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
}

.faq-section .section-title {
    text-align: center;
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.faq-section .section-title span {
    color: var(--gold-pure);
}

.faq-section .section-subtitle {
    text-align: center;
    color: var(--gray);
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
}

.faq-item {
    border-bottom: 1px solid #e8e8e8;
    padding: 1rem 0;
    transition: var(--transition);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 0.5rem 0;
    transition: var(--transition);
    user-select: none;
}

.faq-item .faq-question:hover {
    color: var(--gold-pure);
}

.faq-item .faq-question h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark);
    margin: 0;
    transition: var(--transition);
}

.faq-item .faq-question .faq-toggle {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--gold-pure);
    transition: var(--transition);
    min-width: 30px;
    text-align: center;
    line-height: 1;
}

.faq-item .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 0 0 0 0;
}

.faq-item .faq-answer p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
    padding: 0.5rem 0 0.8rem 0;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

@media (max-width: 768px) {
    .faq-item .faq-question h4 {
        font-size: 0.95rem;
    }
    
    .faq-item .faq-answer p {
        font-size: 0.88rem;
    }
}

/* ============ CTA SECTION ============ */
.cta {
    padding: 4rem 0;
    background: var(--gold-pure);
    color: #333;
    text-align: center;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.cta .container {
    max-width: 100% !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
}

.cta::before {
    content: '';
    position: absolute;
    top: -40%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
}

.cta::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -5%;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
}

.cta h2 {
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    position: relative;
}

.cta p {
    opacity: 0.8;
    margin-bottom: 1.8rem;
    font-size: 1.05rem;
    position: relative;
}

.cta .btn-gold {
    background: #333;
    color: var(--gold-pure);
    position: relative;
    min-height: 50px;
    padding: 0.8rem 2.8rem;
    font-size: 1rem;
    border-radius: 8px;
}

.cta .btn-gold:hover {
    background: #1a1a1a;
    color: var(--gold-pure);
    transform: translateY(-3px);
}

/* ============ SECURITY BADGE ============ */
.security-badge {
    position: fixed;
    bottom: 15px;
    right: 15px;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #aaa;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 10px;
    z-index: 9999;
    pointer-events: none;
    border: 1px solid rgba(255, 215, 0, 0.15);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 6px;
}

.security-badge i {
    color: var(--gold-pure);
    font-size: 12px;
}

.security-badge .lock-icon {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* ============ CHATBOT ============ */
.chatbot-container {
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 9998;
}

.chatbot-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gold-pure);
    color: #333;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.chatbot-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #e74c3c;
    color: white;
    font-size: 0.6rem;
    font-weight: 700;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chatbot-window {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 360px;
    max-width: calc(100vw - 40px);
    height: 450px;
    max-height: calc(100vh - 120px);
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    display: none;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.chatbot-window.active {
    display: flex;
}

.chatbot-header {
    background: var(--gold-pure);
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.chatbot-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chatbot-avatar {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #333;
}

.chatbot-title {
    font-size: 1rem;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.chatbot-status {
    font-size: 0.7rem;
    color: #2d7d2d;
    background: rgba(255,255,255,0.6);
    padding: 2px 10px;
    border-radius: 12px;
}

.chatbot-close {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #333;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 6px;
    transition: var(--transition);
}

.chatbot-close:hover {
    background: rgba(255,255,255,0.3);
}

.chatbot-messages {
    flex: 1;
    padding: 16px;
    overflow-y: auto;
    background: #f8f6f0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.chatbot-message {
    display: flex;
    flex-direction: column;
    max-width: 85%;
}

.chatbot-message-user {
    align-self: flex-end;
}

.chatbot-message-bot {
    align-self: flex-start;
}

.chatbot-message-content {
    padding: 10px 14px;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.chatbot-message-user .chatbot-message-content {
    background: var(--gold-pure);
    color: #333;
    border-bottom-right-radius: 4px;
}

.chatbot-message-bot .chatbot-message-content {
    background: white;
    color: #333;
    border-bottom-left-radius: 4px;
    box-shadow: var(--shadow-sm);
}

.chatbot-message-content i {
    font-size: 1rem;
    margin-top: 2px;
}

.chatbot-message-content p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.chatbot-message-time {
    font-size: 0.6rem;
    color: var(--gray);
    margin-top: 4px;
    padding: 0 4px;
}

.chatbot-input-container {
    display: flex;
    padding: 12px 16px;
    background: white;
    border-top: 1px solid #eee;
    gap: 8px;
}

.chatbot-input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: var(--transition);
    outline: none;
}

.chatbot-input:focus {
    border-color: var(--gold-pure);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.2);
}

.chatbot-send {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: var(--gold-pure);
    color: #333;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.chatbot-send:hover {
    transform: scale(1.05);
    background: #e6c200;
}

.chatbot-send:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

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

/* Desktop / Tablet Landscape */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 2.6rem;
    }
    
    .hero .lead {
        max-width: 100%;
    }
    
    .hero-image-wrapper {
        min-height: 320px;
    }
    
    .hero-image-wrapper .image-stack {
        height: 320px;
        max-width: 420px;
    }
    
    .hero-image-wrapper .side-image-2 {
        width: 40%;
        top: 25%;
        left: -3%;
    }
    
    .hero-image-wrapper .side-image-1 {
        width: 68%;
        top: 8%;
    }
    
    .hero .golden-curve-right {
        width: 50%;
        height: 50%;
        right: -8%;
        top: 25%;
    }
    
    .hero .golden-curve-right-2 {
        width: 40%;
        height: 40%;
        right: -5%;
        top: 30%;
    }
    
    .about-image-wrapper img {
        max-width: 100%;
        margin-top: 1.5rem;
    }
    
    .feedback-header-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .feedback-header-right {
        text-align: left;
        width: 100%;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about h3 {
        font-size: 2rem;
    }
    
    .chatbot-window {
        width: 320px;
        height: 400px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .navbar-brand img {
        height: 30px;
    }
    
    .navbar-brand {
        font-size: 1rem;
        gap: 6px;
    }
    
    .navbar-brand .brand-text {
        font-size: 0.85rem;
    }
    
    .navbar {
        padding: 0.4rem 0;
    }
    
    .navbar-nav {
        padding: 0.3rem 0;
        gap: 2px;
    }
    
    .nav-link {
        padding: 0.4rem 0.8rem !important;
        font-size: 0.85rem;
    }
    
    .navbar-nav .nav-item.nav-link-item a {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }
    
    .dropdown-menu {
        background: transparent;
        box-shadow: none;
        padding: 0;
        margin: 0;
        border: none;
        animation: none;
    }
    
    .dropdown-item {
        padding: 0.4rem 0.8rem 0.4rem 1.8rem;
        font-size: 0.85rem;
    }
    
    .dropdown-item:hover {
        padding-left: 2rem;
        background: var(--gold-light);
    }
    
    .navbar .btn-gold,
    .navbar .btn-outline-gold {
        width: 100%;
        text-align: center;
        padding: 0.5rem 1.2rem;
        margin: 0.2rem 0;
        min-height: 42px;
        font-size: 0.85rem;
        border-radius: 8px;
    }
    
    .navbar .ms-auto {
        margin-top: 0.3rem;
    }
    
    .hero-mobile {
        padding: 75px 0 10px;
        min-height: 70vh;
    }
    
    .hero-mobile h1 {
        font-size: 1.5rem;
    }
    
    .hero-mobile .lead {
        font-size: 0.85rem;
    }
    
    .hero-mobile .btn-group-mobile {
        gap: 0.5rem;
    }
    
    .hero-mobile .btn-gold-mobile,
    .hero-mobile .btn-outline-gold-mobile {
        font-size: 0.75rem;
        padding: 0.6rem 0.4rem;
        min-height: 44px;
        width: 35%;
        border-radius: 8px;
    }
    
    .hero-mobile .mobile-side-image img {
        width: 90%;
    }
    
    .feedback-section {
        padding: 3rem 0;
    }
    
    .feedback-header-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .feedback-header-right {
        text-align: left;
        width: 100%;
    }
    
    .feedback-section .section-title {
        text-align: left;
    }
    
    .feedback-section .section-subtitle {
        text-align: left;
    }
    
    .feedback-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .feedback-card {
        padding: 1.2rem;
    }
    
    .feedback-user h6 {
        font-size: 0.85rem;
    }
    
    .feedback-text {
        font-size: 0.85rem;
    }
    
    .feedback-header-right .btn-read-all {
        padding: 0.5rem 1.5rem;
        font-size: 0.85rem;
        width: 100%;
        justify-content: center;
        border-radius: 8px;
    }
    
    .features {
        padding: 3rem 0;
    }
    
    .faq-section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
    
    .feature-card {
        padding: 1.5rem 1rem;
        min-height: 220px;
    }
    
    .feature-icon {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
    }
    
    .feature-card h4 {
        font-size: 1rem;
    }
    
    .feature-card p {
        font-size: 0.8rem;
    }
    
    .features .col-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    .pricing {
        padding: 3rem 0;
    }
    
    .pricing-card {
        padding: 1.5rem 1rem;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: scale(1.02);
    }
    
    .price {
        font-size: 2.2rem;
    }
    
    .cta {
        padding: 3rem 0;
    }
    
    .cta h2 {
        font-size: 1.8rem;
    }
    
    .cta p {
        font-size: 0.95rem;
    }
    
    .cta .btn-gold {
        padding: 0.7rem 2rem;
        font-size: 0.95rem;
        min-height: 46px;
        border-radius: 8px;
    }
    
    .security-badge {
        bottom: 8px;
        right: 8px;
        font-size: 8px;
        padding: 4px 10px;
        border-radius: 8px;
    }
    
    .scroll-progress-container {
        height: 3px;
    }
    
    .chatbot-window {
        width: calc(100vw - 30px);
        height: 400px;
        right: -5px;
    }
    
    .chatbot-toggle {
        width: 54px;
        height: 54px;
        font-size: 1.5rem;
    }
    
    .chatbot-container {
        bottom: 75px;
        right: 15px;
    }
}

/* Small Mobile */
@media (max-width: 576px) {
    .hero-mobile h1 {
        font-size: 1.3rem;
    }
    
    .hero-mobile .lead {
        font-size: 0.8rem;
    }
    
    .hero-mobile .btn-group-mobile {
        gap: 0.4rem;
    }
    
    .hero-mobile .btn-gold-mobile,
    .hero-mobile .btn-outline-gold-mobile {
        font-size: 0.7rem;
        padding: 0.5rem 0.3rem;
        min-height: 40px;
        width: 35%;
        border-radius: 8px;
    }
    
    .hero-mobile .mobile-side-image img {
        width: 90%;
    }
    
    .about-mobile h3 {
        font-size: 1.4rem;
    }
    
    .about-mobile p {
        font-size: 0.85rem;
    }
    
    .about-mobile .check-list li {
        font-size: 0.82rem;
        padding: 0.4rem 0;
    }
    
    .about-mobile .about-image-wrapper img {
        max-width: 60%;
    }
    
    .feedback-card {
        padding: 1rem;
    }
    
    .feedback-user i {
        font-size: 1.1rem;
    }
    
    .feedback-user h6 {
        font-size: 0.75rem;
    }
    
    .feedback-text {
        font-size: 0.75rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .features .col-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .feature-card {
        padding: 1.2rem 0.8rem;
        min-height: 180px;
    }
    
    .chatbot-window {
        height: 350px;
    }
}

/* Extra Small */
@media (max-width: 400px) {
    .hero-mobile h1 {
        font-size: 1.1rem;
    }
    
    .hero-mobile .btn-group-mobile {
        gap: 0.3rem;
    }
    
    .hero-mobile .btn-gold-mobile,
    .hero-mobile .btn-outline-gold-mobile {
        font-size: 0.65rem;
        padding: 0.4rem 0.2rem;
        min-height: 36px;
        width: 35%;
        border-radius: 8px;
    }
    
    .hero-mobile .mobile-side-image img {
        width: 90%;
    }
    
    .navbar-brand {
        font-size: 0.85rem;
    }
    
    .navbar-brand img {
        height: 26px;
    }
    
    .about-mobile .about-image-wrapper img {
        max-width: 80%;
    }
    
    .feature-card {
        min-height: 160px;
        padding: 1rem 0.6rem;
    }
}

/* ============ UTILITY CLASSES ============ */
.fade-in {
    animation: fadeIn 0.8s ease forwards;
    opacity: 0;
}

.fade-in:nth-child(1) { animation-delay: 0.1s; }
.fade-in:nth-child(2) { animation-delay: 0.2s; }
.fade-in:nth-child(3) { animation-delay: 0.3s; }

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}