/* ================================================
   CRAVINGS PARTNER – MAIN STYLESHEET
   White + Forest Green + Gold Theme | Bootstrap 5
   Logo Colors: #2E7D32 (Green) | #C8960C (Gold) | #fff (White)
   ================================================ */

/* ── DESIGN TOKENS ── */
:root {
    --green:         #2E7D32;
    --green-light:   #43A047;
    --green-dark:    #1B5E20;
    --green-pale:    #f0f7f0;
    --green-pale2:   #e6f2e6;
    --green-glow:    rgba(46, 125, 50, 0.12);
    --green-glow-md: rgba(46, 125, 50, 0.2);
    --gold:          #C8960C;
    --gold-light:    #D4A520;
    --gold-pale:     #fdf5e0;
    --gold-glow:     rgba(200, 150, 12, 0.2);
    --white:         #ffffff;
    --bg:            #ffffff;
    --bg-light:      #f7faf7;
    --bg-green:      #f0f7f0;
    --card-bg:       #ffffff;
    --card-border:   rgba(46, 125, 50, 0.14);
    --text-dark:     #1a2e1a;
    --text-medium:   #4a6b4a;
    --text-light:    #7a9a7a;
    --text-on-green: #ffffff;
    --nav-bg:        #ffffff;
    --hero-bg:       #1B5E20;
    --footer-bg:     #1a3d1a;
    --radius-sm:     8px;
    --radius-md:     16px;
    --radius-lg:     24px;
    --radius-xl:     40px;
    --shadow-sm:     0 2px 12px rgba(46,125,50,0.08);
    --shadow-md:     0 8px 32px rgba(46,125,50,0.12);
    --shadow-lg:     0 16px 48px rgba(46,125,50,0.15);
    --shadow-gold:   0 8px 24px rgba(200,150,12,0.2);
    --transition:    all 0.3s cubic-bezier(0.4,0,0.2,1);
    --font-main:     'Poppins', sans-serif;
    --font-body:     'Inter', sans-serif;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text-dark); font-family: var(--font-body); font-size: 1rem; line-height: 1.7; overflow-x: hidden; }
::selection { background: var(--green); color: #fff; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-light); }
::-webkit-scrollbar-thumb { background: var(--green); border-radius: 99px; }

/* ── PRELOADER ── */
#preloader { position: fixed; inset: 0; z-index: 9999; background: #fff; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 20px; transition: opacity 0.5s ease; }
#preloader.hide { opacity: 0; pointer-events: none; }
.preloader-bar { width: 120px; height: 3px; background: var(--green-pale2); border-radius: 99px; margin: 16px auto 0; overflow: hidden; }
.preloader-fill { height: 100%; background: linear-gradient(90deg, var(--green), var(--gold)); border-radius: 99px; animation: fillBar 1.5s ease-in-out forwards; }
@keyframes fillBar { from { width: 0; } to { width: 100%; } }

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4,h5,h6 { font-family: var(--font-main); font-weight: 700; line-height: 1.2; color: var(--text-dark); }
.text-green  { color: var(--green) !important; }
.text-gold   { color: var(--gold) !important; }
.text-muted-cp { color: var(--text-light) !important; }
.text-orange { color: var(--gold) !important; }

/* ── SECTION LABELS ── */
.section-label {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--green-glow); border: 1px solid rgba(46,125,50,0.25);
    color: var(--green); font-family: var(--font-main); font-size: 0.7rem;
    font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
    padding: 4px 12px; border-radius: 99px; margin-bottom: 8px;
}
.section-title { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 800; margin-bottom: 0.5rem; color: var(--text-dark); }
.section-title span { color: var(--gold); }
.section-subtitle { color: var(--text-medium); font-size: 0.85rem; max-width: 560px; margin: 0 auto; }

/* ── BUTTONS ── */
.btn-orange, .btn-green {
    background: linear-gradient(135deg, var(--green), var(--green-light));
    color: #fff !important; border: none; padding: 12px 28px;
    border-radius: var(--radius-xl); font-family: var(--font-main);
    font-weight: 600; font-size: 0.9rem; letter-spacing: 0.5px;
    transition: var(--transition); display: inline-flex; align-items: center;
    gap: 8px; position: relative; overflow: hidden; text-decoration: none;
    box-shadow: var(--shadow-md);
}
.btn-orange:hover, .btn-green:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); background: linear-gradient(135deg, var(--green-dark), var(--green)); color: #fff !important; }

.btn-outline-orange, .btn-outline-green {
    background: transparent; color: var(--green) !important;
    border: 2px solid var(--green); padding: 10px 28px;
    border-radius: var(--radius-xl); font-family: var(--font-main);
    font-weight: 600; font-size: 0.9rem; transition: var(--transition);
    display: inline-flex; align-items: center; gap: 8px; text-decoration: none;
}
.btn-outline-orange:hover, .btn-outline-green:hover { background: var(--green); color: #fff !important; box-shadow: var(--shadow-md); transform: translateY(-2px); }

.btn-gold {
    background: linear-gradient(135deg, #a87800, var(--gold));
    color: #fff !important; border: none; padding: 12px 28px;
    border-radius: var(--radius-xl); font-family: var(--font-main);
    font-weight: 600; font-size: 0.9rem; transition: var(--transition);
    display: inline-flex; align-items: center; gap: 8px; text-decoration: none;
    box-shadow: var(--shadow-gold);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(200,150,12,0.35); }

.btn-white {
    background: #fff; color: var(--green) !important; border: none;
    padding: 12px 28px; border-radius: var(--radius-xl);
    font-family: var(--font-main); font-weight: 700; font-size: 0.9rem;
    transition: var(--transition); display: inline-flex; align-items: center;
    gap: 8px; text-decoration: none; box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); color: var(--green-dark) !important; }

/* ── NAVBAR ── */
#mainNav {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(46,125,50,0.1);
    padding: 8px 0; transition: var(--transition);
}
#mainNav.scrolled { background: #fff; box-shadow: 0 4px 24px rgba(46,125,50,0.1); }
.nav-logo { height: 52px; width: auto; transition: var(--transition); }
.nav-logo:hover { transform: scale(1.04); }
.navbar-nav .nav-link {
    color: var(--text-medium) !important; font-family: var(--font-main);
    font-weight: 500; font-size: 0.9rem; padding: 8px 14px !important;
    border-radius: var(--radius-sm); transition: var(--transition); position: relative;
}
.navbar-nav .nav-link::after {
    content: ''; position: absolute; bottom: 3px; left: 14px; right: 14px;
    height: 2px; background: var(--gold); transform: scaleX(0);
    transition: transform 0.3s ease; border-radius: 99px;
}
.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active { color: var(--green) !important; }
.navbar-nav .nav-link:hover::after, .navbar-nav .nav-link.active::after { transform: scaleX(1); }
.navbar-toggler { border: none; padding: 4px; background: none !important; box-shadow: none !important; }
.navbar-toggler-icon-custom { display: flex; flex-direction: column; gap: 5px; width: 26px; cursor: pointer; }
.navbar-toggler-icon-custom span { display: block; height: 2px; background: var(--green); border-radius: 99px; transition: var(--transition); }
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon-custom span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon-custom span:nth-child(2) { opacity: 0; }
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon-custom span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ── */
.hero-section {
    position: relative; min-height: 100vh;
    display: flex; align-items: center; overflow: hidden;
    background: var(--green-dark);
}
.hero-bg {
    position: absolute; inset: 0;
    background-image: url('../assets/images/hero_food.png');
    background-size: cover; background-position: center;
    filter: brightness(0.28); transform: scale(1.05); transition: transform 8s ease;
}
.hero-section:hover .hero-bg { transform: scale(1); }
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(27,62,32,0.92) 0%, rgba(46,125,50,0.15) 60%, rgba(27,62,32,0.85) 100%);
}
.hero-particles {
    position: absolute; inset: 0;
    background-image:
        radial-gradient(circle at 15% 80%, rgba(46,125,50,0.2) 0%, transparent 45%),
        radial-gradient(circle at 85% 20%, rgba(200,150,12,0.12) 0%, transparent 40%);
}
.hero-content { position: relative; z-index: 2; }
.hero-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); padding: 4px 12px; border-radius: 99px; font-size: 0.7rem; font-weight: 600; color: var(--gold); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 1rem; animation: fadeSlideDown 0.8s ease forwards; }
.hero-title { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 900; line-height: 1.1; margin-bottom: 0.8rem; color: #fff; animation: fadeSlideUp 0.8s ease 0.2s both; }
.hero-title .highlight { color: var(--gold-light); position: relative; display: inline-block; }
.hero-title .highlight::after { content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--gold), transparent); border-radius: 99px; }
.hero-subtitle { font-size: 0.85rem; color: rgba(255,255,255,0.85); max-width: 500px; margin-bottom: 1.2rem; animation: fadeSlideUp 0.8s ease 0.35s both; font-weight: 400; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; animation: fadeSlideUp 0.8s ease 0.5s both; }
.hero-stats { display: flex; align-items: center; gap: 16px; margin-top: 1.5rem; animation: fadeSlideUp 0.8s ease 0.7s both; }
.hero-stat-num { font-size: 1.3rem; font-weight: 800; color: var(--gold); font-family: var(--font-main); line-height: 1; }
.hero-stat-label { font-size: 0.65rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }
.hero-divider { width: 1px; background: rgba(255,255,255,0.15); }
.hero-image-card { position: relative; animation: floatCard 4s ease-in-out infinite; }
@keyframes floatCard { 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-14px); } }
.hero-img-main { width: 100%; border-radius: var(--radius-lg); box-shadow: 0 32px 80px rgba(0,0,0,0.4), 0 0 0 3px rgba(200,150,12,0.3); }
.hero-floating-badge { position: absolute; background: rgba(255,255,255,0.96); backdrop-filter: blur(10px); border-radius: var(--radius-md); padding: 12px 18px; display: flex; align-items: center; gap: 10px; box-shadow: var(--shadow-lg); border: 1px solid rgba(46,125,50,0.12); }
.hero-floating-badge.badge-1 { top: 20px; left: -24px; }
.hero-floating-badge.badge-2 { bottom: 30px; right: -24px; }
.hero-floating-badge .badge-icon { width: 40px; height: 40px; background: var(--green-pale); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.hero-floating-badge .badge-text strong { display: block; font-size: 0.88rem; color: var(--text-dark); }
.hero-floating-badge .badge-text span { font-size: 0.73rem; color: var(--text-medium); }

/* ── GLASS CARD (light version) ── */
.glass-card { background: #fff; border: 1px solid var(--card-border); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); transition: var(--transition); }
.glass-card:hover { border-color: rgba(46,125,50,0.3); box-shadow: var(--shadow-md); transform: translateY(-5px); }

/* ── FEATURE CARDS ── */
.feature-card { background: #fff; border: 1px solid var(--card-border); border-radius: var(--radius-lg); padding: 2rem; text-align: center; transition: var(--transition); position: relative; overflow: hidden; box-shadow: var(--shadow-sm); }
.feature-card::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--green), var(--gold)); transform: scaleX(0); transition: transform 0.4s ease; }
.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover { border-color: rgba(46,125,50,0.25); transform: translateY(-8px); box-shadow: var(--shadow-md); }
.feature-icon { width: 72px; height: 72px; background: var(--green-pale); border: 1px solid rgba(46,125,50,0.2); border-radius: 20px; display: inline-flex; align-items: center; justify-content: center; font-size: 2rem; margin: 0 auto 1.2rem; transition: var(--transition); }
.feature-card:hover .feature-icon { background: var(--green); box-shadow: var(--shadow-md); transform: scale(1.1); }
.feature-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--text-dark); }
.feature-desc { color: var(--text-medium); font-size: 0.9rem; line-height: 1.6; }

/* ── HOW IT WORKS ── */
.hiw-step { display: flex; align-items: flex-start; gap: 20px; padding: 1.5rem; background: #fff; border: 1px solid var(--card-border); border-radius: var(--radius-md); transition: var(--transition); box-shadow: var(--shadow-sm); }
.hiw-step:hover { border-color: var(--green); transform: translateX(6px); box-shadow: var(--shadow-md); }
.hiw-num { width: 52px; height: 52px; flex-shrink: 0; background: linear-gradient(135deg, var(--green), var(--green-light)); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-family: var(--font-main); font-weight: 800; font-size: 1.1rem; color: #fff; box-shadow: 0 4px 14px rgba(46,125,50,0.3); }
.hiw-content h5 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; color: var(--text-dark); }
.hiw-content p { font-size: 0.88rem; color: var(--text-medium); margin: 0; }
.hiw-connector { width: 2px; height: 20px; background: linear-gradient(to bottom, var(--green), var(--green-pale2)); margin: 0 0 0 25px; }

/* ── STATS (green bg section) ── */
.stats-section { background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%); }
.stat-card { text-align: center; padding: 2.5rem 1rem; }
.stat-number { font-family: var(--font-main); font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 900; color: var(--gold-light); line-height: 1; display: block; }
.stat-suffix { font-size: clamp(1.5rem, 3vw, 2.5rem); font-weight: 900; color: var(--gold-light); }
.stat-label { color: rgba(255,255,255,0.75); font-size: 0.9rem; margin-top: 8px; }
.stat-icon { font-size: 2rem; color: rgba(255,255,255,0.2); margin-bottom: 8px; }
.stat-divider { width: 1px; background: rgba(255,255,255,0.15); align-self: stretch; margin: 20px 0; }

/* ── TESTIMONIALS ── */
.testimonial-card { background: #fff; border: 1px solid var(--card-border); border-radius: var(--radius-lg); padding: 2rem; transition: var(--transition); height: 100%; box-shadow: var(--shadow-sm); }
.testimonial-card:hover { border-color: var(--green); transform: translateY(-5px); box-shadow: var(--shadow-md); }
.testimonial-stars { color: var(--gold); font-size: 1rem; margin-bottom: 1rem; }
.testimonial-text { color: var(--text-medium); font-size: 0.93rem; font-style: italic; margin-bottom: 1.5rem; line-height: 1.7; }
.testimonial-text::before { content: '\201C'; color: var(--gold); font-size: 2.5rem; font-style: normal; line-height: 0; vertical-align: -0.5em; margin-right: 4px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, var(--green), var(--green-light)); display: flex; align-items: center; justify-content: center; font-family: var(--font-main); font-weight: 700; font-size: 1.1rem; color: #fff; flex-shrink: 0; }
.testimonial-name { font-weight: 700; font-size: 0.95rem; color: var(--text-dark); }
.testimonial-role { font-size: 0.78rem; color: var(--text-light); }

/* ── GALLERY ── */
.gallery-masonry { columns: 3; column-gap: 16px; }
.gallery-masonry .gallery-item { break-inside: avoid; margin-bottom: 16px; aspect-ratio: unset; border-radius: var(--radius-md); }
.gallery-masonry .gallery-item img { width: 100%; height: auto; display: block; }
@media (max-width: 991.98px) { .gallery-masonry { columns: 2; } }
@media (max-width: 575.98px) { .gallery-masonry { columns: 1; } }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
.gallery-item { position: relative; border-radius: var(--radius-md); overflow: hidden; cursor: pointer; box-shadow: var(--shadow-sm); background: #fff; border: 1.5px solid var(--card-border); transition: var(--transition); }
.gallery-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--green); }
.gallery-img-wrapper { aspect-ratio: 4/3; overflow: hidden; }
.gallery-img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover .gallery-img-wrapper img { transform: scale(1.08); }
.gallery-label { padding: 16px; text-align: center; }
.gallery-label h6 { font-weight: 700; font-size: 0.95rem; margin: 0; color: var(--text-dark); }
.gallery-label span { font-size: 0.78rem; color: var(--green); font-weight: 500; }
.gallery-filters { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.filter-btn { padding: 8px 22px; background: #fff; border: 1.5px solid var(--card-border); color: var(--text-medium); border-radius: 99px; font-size: 0.85rem; font-weight: 500; cursor: pointer; transition: var(--transition); font-family: var(--font-main); }
.filter-btn:hover, .filter-btn.active { background: var(--green); border-color: var(--green); color: #fff; box-shadow: var(--shadow-sm); }

/* ── PLAN CARDS ── */
.plan-card { background: #fff; border: 1.5px solid var(--card-border); border-radius: var(--radius-md); padding: 1.2rem; text-align: center; transition: var(--transition); position: relative; height: 100%; box-shadow: var(--shadow-sm); }
.plan-card.popular { border-color: var(--green); box-shadow: 0 0 0 3px rgba(46,125,50,0.1), var(--shadow-md); transform: scale(1.02); }
.plan-card:hover { border-color: var(--green); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.plan-card.popular:hover { transform: translateY(-4px) scale(1.02); }
.plan-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, var(--green), var(--green-light)); color: #fff; font-family: var(--font-main); font-weight: 700; font-size: 0.65rem; letter-spacing: 1px; text-transform: uppercase; padding: 4px 14px; border-radius: 99px; box-shadow: 0 4px 12px rgba(46,125,50,0.3); white-space: nowrap; z-index: 10; }
.plan-icon { width: 48px; height: 48px; background: var(--green-pale); border-radius: 12px; display: inline-flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 0.5rem; }
.plan-name { font-size: 1rem; font-weight: 800; margin-bottom: 0.2rem; color: var(--text-dark); }
.plan-meals { font-size: 0.75rem; color: var(--text-light); margin-bottom: 1rem; }
.plan-price { font-family: var(--font-main); font-size: 1.8rem; font-weight: 900; color: var(--gold); line-height: 1; }
.plan-price span { font-size: 0.8rem; font-weight: 500; color: var(--text-light); }
.plan-price sub { font-size: 1rem; font-weight: 700; color: var(--gold); }
.plan-divider { height: 1px; background: var(--card-border); margin: 1rem 0; }
.plan-features { list-style: none; padding: 0; margin: 0 0 1.2rem; text-align: left; }
.plan-features li { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; color: var(--text-medium); margin-bottom: 6px; }
.plan-features li i { color: var(--green); flex-shrink: 0; }
.plan-features li.inactive { opacity: 0.4; text-decoration: line-through; }
.plan-features li.inactive i { color: var(--text-light); }

/* ── FAQ ── */
.faq-accordion .accordion-item { background: #fff; border: 1.5px solid var(--card-border) !important; border-radius: var(--radius-md) !important; margin-bottom: 12px; overflow: hidden; box-shadow: var(--shadow-sm); }
.faq-accordion .accordion-button { background: #fff; color: var(--text-dark); font-family: var(--font-main); font-weight: 600; font-size: 0.95rem; border: none; box-shadow: none; padding: 1.2rem 1.5rem; }
.faq-accordion .accordion-button:not(.collapsed) { color: var(--green); background: var(--green-pale); }
.faq-accordion .accordion-button::after { filter: none; }
.faq-accordion .accordion-body { background: var(--green-pale); color: var(--text-medium); font-size: 0.9rem; padding: 0 1.5rem 1.2rem; border-top: 1px solid var(--card-border); }

/* ── CONTACT ── */
.contact-form-card { background: #fff; border: 1.5px solid var(--card-border); border-radius: var(--radius-lg); padding: 2.5rem; box-shadow: var(--shadow-sm); }
.form-group { margin-bottom: 1.2rem; }
.form-label { color: var(--text-medium); font-size: 0.85rem; font-weight: 500; margin-bottom: 6px; }
.form-control, .form-select { background: var(--bg-light); border: 1.5px solid rgba(46,125,50,0.15); color: var(--text-dark) !important; border-radius: var(--radius-sm); padding: 12px 16px; font-size: 0.9rem; transition: var(--transition); }
.form-control:focus, .form-select:focus { background: #fff; border-color: var(--green); box-shadow: 0 0 0 3px rgba(46,125,50,0.1); color: var(--text-dark) !important; }
.form-control::placeholder { color: var(--text-light); }
.form-select option { background: #fff; color: var(--text-dark); }
.contact-info-card { background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%); border-radius: var(--radius-lg); padding: 2.5rem; color: #fff; }
.contact-info-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 1.5rem; }
.contact-info-icon { width: 48px; height: 48px; flex-shrink: 0; background: rgba(255,255,255,0.15); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: var(--gold-light); }
.contact-info-text strong { display: block; font-size: 0.8rem; color: rgba(255,255,255,0.65); font-weight: 500; }
.contact-info-text a, .contact-info-text span { color: #fff; font-size: 0.95rem; text-decoration: none; }
.contact-info-text a:hover { color: var(--gold-light); }

/* ── PAGE HERO ── */
.page-hero { padding: 150px 0 70px; position: relative; text-align: center; background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%); }
.page-hero::before { content: ''; position: absolute; inset: 0; background: url('../assets/images/hero_food.png') center/cover; opacity: 0.08; }
.page-hero-title { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 900; margin-bottom: 1rem; position: relative; color: #fff; }
.page-hero-title span { color: var(--gold-light); }
.page-hero-subtitle { color: rgba(255,255,255,0.75); font-size: 1rem; max-width: 500px; margin: 0 auto 1.5rem; position: relative; }
.breadcrumb { background: none; padding: 0; margin: 0; justify-content: center; position: relative; }
.breadcrumb-item a { color: var(--gold-light); text-decoration: none; font-size: 0.85rem; }
.breadcrumb-item.active { color: rgba(255,255,255,0.6); font-size: 0.85rem; }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); }

/* ── CTA BANNER ── */
.cta-banner { background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%); border-radius: var(--radius-lg); padding: 4rem 3rem; text-align: center; position: relative; overflow: hidden; box-shadow: var(--shadow-lg); }
.cta-banner::before { content: ''; position: absolute; top: -50%; right: -20%; width: 400px; height: 400px; background: rgba(255,255,255,0.04); border-radius: 50%; }
.cta-banner .section-title { color: #fff !important; }
.cta-banner .section-title span { color: var(--gold-light) !important; }
.cta-banner .section-subtitle { color: rgba(255,255,255,0.78) !important; }

/* ── SERVICE CARDS ── */
.service-card { background: #fff; border: 1.5px solid var(--card-border); border-radius: var(--radius-lg); padding: 2rem; transition: var(--transition); height: 100%; position: relative; overflow: hidden; box-shadow: var(--shadow-sm); }
.service-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--green), var(--gold)); transform: scaleX(0); transition: transform 0.4s ease; }
.service-card:hover::after { transform: scaleX(1); }
.service-card:hover { border-color: var(--green); transform: translateY(-6px); box-shadow: var(--shadow-md); }
.service-card-icon { width: 64px; height: 64px; background: var(--green-pale); border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; color: var(--green); margin-bottom: 1.2rem; transition: var(--transition); }
.service-card:hover .service-card-icon { background: var(--green); color: #fff; box-shadow: 0 8px 24px rgba(46,125,50,0.3); }

/* ── ABOUT ── */
.about-img-wrapper { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.about-img-wrapper img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.about-exp-badge { position: absolute; bottom: 24px; right: -16px; background: #fff; border: 2px solid var(--card-border); border-radius: var(--radius-md); padding: 16px 24px; text-align: center; box-shadow: var(--shadow-lg); }
.about-exp-badge .exp-num { font-family: var(--font-main); font-size: 2.5rem; font-weight: 900; color: var(--gold); line-height: 1; }
.about-exp-badge small { font-size: 0.78rem; color: var(--text-medium); }

/* Timeline */
.timeline { position: relative; padding-left: 32px; }
.timeline::before { content: ''; position: absolute; left: 8px; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--green), var(--green-pale2)); }
.timeline-item { position: relative; margin-bottom: 2rem; }
.timeline-item::before { content: ''; position: absolute; left: -28px; top: 6px; width: 12px; height: 12px; background: var(--gold); border-radius: 50%; box-shadow: 0 0 0 3px var(--gold-pale); border: 2px solid #fff; }
.timeline-year { font-family: var(--font-main); font-weight: 700; color: var(--gold); font-size: 0.85rem; margin-bottom: 4px; }
.timeline-title { font-weight: 700; font-size: 1rem; margin-bottom: 4px; color: var(--text-dark); }
.timeline-desc { color: var(--text-medium); font-size: 0.88rem; }

/* Value Cards */
.value-card { display: flex; align-items: flex-start; gap: 16px; background: #fff; border: 1.5px solid var(--card-border); border-radius: var(--radius-md); padding: 1.5rem; transition: var(--transition); box-shadow: var(--shadow-sm); }
.value-card:hover { border-color: var(--green); transform: translateX(6px); box-shadow: var(--shadow-md); }
.value-icon { width: 48px; height: 48px; flex-shrink: 0; background: var(--green-pale); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: var(--green); }
.value-card h6 { font-weight: 700; margin-bottom: 4px; color: var(--text-dark); }
.value-card p { font-size: 0.88rem; color: var(--text-medium); margin: 0; }

/* ── FOOTER ── */
.footer-wave svg { display: block; }
.footer-wave { background: var(--bg-light); }
.site-footer { background: var(--footer-bg); }
.footer-main { padding: 60px 0 40px; }
.footer-logo { height: 70px; width: auto; }
.footer-desc { color: rgba(255,255,255,0.65); font-size: 0.9rem; line-height: 1.7; margin-bottom: 1.5rem; }
.footer-socials { display: flex; gap: 10px; }
.social-btn { width: 40px; height: 40px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); border-radius: 10px; display: inline-flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.65); font-size: 1rem; text-decoration: none; transition: var(--transition); }
.social-btn:hover { background: var(--gold); border-color: var(--gold); color: #fff; transform: translateY(-3px); }
.footer-heading { font-family: var(--font-main); font-weight: 700; font-size: 0.95rem; color: #fff; margin-bottom: 1.2rem; position: relative; padding-bottom: 10px; }
.footer-heading::after { content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 2px; background: var(--gold); border-radius: 99px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 0.88rem; display: inline-flex; align-items: center; gap: 6px; transition: var(--transition); }
.footer-links a:hover { color: var(--gold-light); gap: 10px; }
.footer-links a i { font-size: 0.7rem; color: var(--gold); }
.footer-contact-list { list-style: none; padding: 0; margin: 0; }
.footer-contact-list li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; font-size: 0.88rem; color: rgba(255,255,255,0.65); }
.fc-icon { width: 32px; height: 32px; flex-shrink: 0; background: rgba(200,150,12,0.2); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--gold-light); font-size: 0.9rem; }
.footer-contact-list a { color: rgba(255,255,255,0.65); text-decoration: none; }
.footer-contact-list a:hover { color: var(--gold-light); }
.footer-newsletter { display: flex; gap: 8px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); border-radius: 99px; padding: 5px 5px 5px 16px; }
.footer-newsletter input { background: none; border: none; color: #fff; font-size: 0.85rem; flex: 1; outline: none; }
.footer-newsletter input::placeholder { color: rgba(255,255,255,0.4); }
.footer-newsletter button { width: 36px; height: 36px; background: var(--gold); border: none; border-radius: 50%; color: #fff; font-size: 0.9rem; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: var(--transition); }
.footer-newsletter button:hover { background: var(--gold-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 16px 0; }
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.5); }
.footer-bottom-links a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.82rem; transition: color 0.3s; }
.footer-bottom-links a:hover { color: var(--gold-light); }

/* ── WHATSAPP FLOAT ── */
.whatsapp-float { position: fixed; bottom: 28px; right: 28px; z-index: 999; width: 56px; height: 56px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; color: #fff; text-decoration: none; box-shadow: 0 8px 24px rgba(37,211,102,0.4); animation: waPulse 2.5s infinite; transition: var(--transition); }
.whatsapp-float:hover { background: #1da851; color: #fff; transform: scale(1.1); animation: none; }
@keyframes waPulse { 0%,100%{ box-shadow: 0 8px 24px rgba(37,211,102,0.4); } 50%{ box-shadow: 0 8px 40px rgba(37,211,102,0.6), 0 0 0 10px rgba(37,211,102,0.1); } }
.wa-tooltip { position: absolute; right: 68px; background: var(--text-dark); color: #fff; font-size: 0.8rem; font-weight: 500; padding: 6px 12px; border-radius: 8px; white-space: nowrap; opacity: 0; pointer-events: none; transform: translateX(8px); transition: var(--transition); }
.whatsapp-float:hover .wa-tooltip { opacity: 1; transform: translateX(0); }

/* ── SCROLL TOP ── */
.scroll-top { position: fixed; bottom: 28px; left: 28px; z-index: 999; width: 44px; height: 44px; background: var(--green-pale); border: 1.5px solid rgba(46,125,50,0.25); border-radius: 12px; color: var(--green); font-size: 1.1rem; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: var(--transition); opacity: 0; transform: translateY(20px); pointer-events: none; box-shadow: var(--shadow-sm); }
.scroll-top.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
.scroll-top:hover { background: var(--green); color: #fff; box-shadow: var(--shadow-md); }

/* ── ADMIN ── */
.admin-login-page { min-height: 100vh; background: var(--bg-light); display: flex; align-items: center; justify-content: center; }
.admin-login-card { background: #fff; border: 1.5px solid var(--card-border); border-radius: var(--radius-lg); padding: 3rem; width: 100%; max-width: 420px; box-shadow: var(--shadow-lg); }
.admin-sidebar { width: 260px; background: var(--green-dark); min-height: 100vh; position: fixed; left: 0; top: 0; z-index: 100; transition: var(--transition); }
.admin-content { margin-left: 260px; background: var(--bg-light); min-height: 100vh; }
.admin-topbar { background: #fff; border-bottom: 1px solid var(--card-border); padding: 16px 24px; display: flex; align-items: center; justify-content: space-between; box-shadow: var(--shadow-sm); }
.admin-stat { background: #fff; border: 1.5px solid var(--card-border); border-radius: var(--radius-md); padding: 1.5rem; display: flex; align-items: center; gap: 16px; transition: var(--transition); box-shadow: var(--shadow-sm); }
.admin-stat:hover { border-color: var(--green); box-shadow: var(--shadow-md); }
.admin-stat-icon { width: 52px; height: 52px; background: var(--green-pale); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: var(--green); }
.admin-stat-num { font-family: var(--font-main); font-size: 1.8rem; font-weight: 800; color: var(--text-dark); }
.admin-stat-label { font-size: 0.82rem; color: var(--text-light); }
.admin-card { background: #fff; border: 1.5px solid var(--card-border); border-radius: var(--radius-md); padding: 1.5rem; box-shadow: var(--shadow-sm); }
.sidebar-nav { list-style: none; padding: 16px 12px; margin: 0; }
.sidebar-nav li a { display: flex; align-items: center; gap: 12px; padding: 12px 16px; color: rgba(255,255,255,0.7); text-decoration: none; border-radius: var(--radius-sm); font-size: 0.9rem; font-weight: 500; transition: var(--transition); }
.sidebar-nav li a:hover, .sidebar-nav li a.active { background: rgba(255,255,255,0.12); color: #fff; }
.sidebar-nav li a.active { background: var(--gold); color: #fff !important; }
.sidebar-nav li a i { font-size: 1.1rem; }

/* ── TABLE ── */
.cp-table { width: 100%; border-collapse: collapse; }
.cp-table th { background: var(--green-pale); color: var(--green-dark); font-size: 0.78rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 12px 16px; border-bottom: 2px solid var(--card-border); }
.cp-table td { padding: 14px 16px; font-size: 0.88rem; color: var(--text-medium); border-bottom: 1px solid rgba(46,125,50,0.06); }
.cp-table tr:hover td { background: var(--green-pale); color: var(--text-dark); }
.badge-new { background: rgba(46,125,50,0.1); color: var(--green-dark); padding: 3px 10px; border-radius: 99px; font-size: 0.73rem; font-weight: 600; }
.badge-read { background: var(--bg-light); color: var(--text-light); padding: 3px 10px; border-radius: 99px; font-size: 0.73rem; }
.badge-replied { background: rgba(200,150,12,0.12); color: var(--gold); padding: 3px 10px; border-radius: 99px; font-size: 0.73rem; font-weight: 600; }

/* ── SECTIONS ── */
.section-pad    { padding: 60px 0; }
.section-pad-sm { padding: 40px 0; }
.bg-green-pale  { background: var(--bg-green); }
.divider-line   { height: 1px; background: var(--card-border); }
.rounded-cp     { border-radius: var(--radius-md); }
.text-gradient  { background: linear-gradient(135deg, var(--green), var(--gold)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.alert-cp { border-radius: var(--radius-sm); padding: 12px 16px; font-size: 0.9rem; border: 1.5px solid; }
.alert-success-cp { background: var(--green-pale); border-color: rgba(46,125,50,0.3); color: var(--green-dark); }
.alert-danger-cp  { background: #fff5f5; border-color: rgba(239,68,68,0.3); color: #dc2626; }

/* ── ANIMATIONS ── */
@keyframes fadeSlideDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeSlideUp   { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn        { from { opacity: 0; } to { opacity: 1; } }

/* ── RESPONSIVE ── */
@media (max-width: 991.98px) {
    .navbar-collapse { background: #fff; border: 1.5px solid var(--card-border); border-radius: var(--radius-md); padding: 1rem; margin-top: 8px; box-shadow: var(--shadow-md); }
    .hero-floating-badge.badge-1 { left: 0; }
    .hero-floating-badge.badge-2 { right: 0; }
    .plan-card.popular { transform: none; }
    .admin-sidebar { transform: translateX(-100%); }
    .admin-content { margin-left: 0; }
    .admin-sidebar.show { transform: translateX(0); }
    .about-exp-badge { right: 0; }
}
@media (max-width: 767.98px) {
    .section-pad { padding: 60px 0; }
    .hero-title { font-size: 2.2rem; }
    .hero-stats { gap: 20px; }
    .cta-banner { padding: 3rem 1.5rem; }
}
@media (max-width: 575.98px) {
    .hero-actions { flex-direction: column; }
    .btn-orange, .btn-green, .btn-outline-orange, .btn-outline-green { width: 100%; justify-content: center; }
}
