/*
 * own-theme.css — Namwel Brand Styles
 * Loaded after bootstrap.min.css.
 * Bootstrap Reboot handles: box-sizing reset, body margins, baseline typography.
 * This file only defines Namwel-specific overrides and custom components.
 */

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
    /* Namwel Brand Colors - Inspired by Logo */
    --primary-orange: #E65100;
    --primary-orange-hover: #E65100;
    --golden-yellow: #FFD700;
    --vibrant-green: #43A047;
    --dark-forest-green: #1B5E20;
    --bush-green: #2E3B29;
    --warm-sand: #F9F7F2;
    --muted-gold: #D4AF37;
    --dark-text: #1A1A1A;
    --light-white: #FFFFFF;
    --shadow-light: rgba(0, 0, 0, 0.08);
    --shadow-medium: rgba(0, 0, 0, 0.12);
}

/* ============================================================
   BASE — Namwel overrides on top of Bootstrap Reboot
   ============================================================ */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark-text);
    background-color: var(--warm-sand);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

/* Bootstrap's .container provides centering and responsive max-widths — no override needed */

/* ============================================================
   HEADER
   ============================================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: linear-gradient(135deg, var(--vibrant-green) 0%, var(--dark-forest-green) 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 10px 0;
}

.header-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 150px;
    width: auto;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--light-white);
    text-decoration: none;
    letter-spacing: 1px;
}

.logo-text span {
    color: var(--muted-gold);
}

@media (max-width: 768px) {
    .logo img {
        height: 40px;
    }

    .logo-text {
        font-size: 20px;
    }
}

.header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.nav-menu a {
    color: var(--light-white);
    text-decoration: none;
    /* font-size: 14px; */
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--golden-yellow);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--golden-yellow);
}

.nav-menu a:hover::after {
    width: 100%;
}

/* ── Dropdown items ── */
.nav-item {
    position: relative;
}

.nav-item > a {
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.nav-item > a .nav-chevron {
    font-size: 10px;
    transition: transform 0.25s ease;
    margin-top: 1px;
}

.nav-item:hover > a .nav-chevron,
.nav-item.open > a .nav-chevron {
    transform: rotate(180deg);
}

.nav-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding-top: 14px;
    min-width: 220px;
    z-index: 1100;
}

.nav-dropdown-inner {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.18);
    padding: 8px 0;
    position: relative;
    opacity: 0;
    transform: translateY(-4px);
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.nav-dropdown-inner::before {
    content: '';
    position: absolute;
    top: -7px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid #fff;
}

.nav-item:hover .nav-dropdown,
.nav-item.open .nav-dropdown {
    display: block;
}

.nav-item:hover .nav-dropdown-inner,
.nav-item.open .nav-dropdown-inner {
    opacity: 1;
    transform: translateY(0);
}

.nav-dropdown-inner a {
    display: block;
    padding: 10px 20px;
    color: #2d2d2d !important;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.15s, color 0.15s, padding-left 0.15s;
    white-space: nowrap;
}

.nav-dropdown-inner a::after {
    display: none !important;
}

.nav-dropdown-inner a:hover {
    background: #f5f5f0;
    color: var(--primary-orange) !important;
    padding-left: 26px;
}

.nav-dropdown-inner .nav-dropdown-divider {
    height: 1px;
    background: #eee;
    margin: 6px 12px;
}

/* ── Hamburger (mobile) ── */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
}

.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--light-white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile nav panel ── */
.nav-mobile {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10,30,10,0.97);
    z-index: 2000;
    padding: 80px 32px 40px;
    overflow-y: auto;
    flex-direction: column;
    gap: 0;
}

.nav-mobile.open {
    display: flex;
}

.nav-mobile-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
}

.nav-mobile a.nav-mobile-top {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    letter-spacing: 0.5px;
}

.nav-mobile a.nav-mobile-top:hover { color: var(--golden-yellow); }

.nav-mobile-group {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.nav-mobile-group-title {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    padding: 14px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    letter-spacing: 0.5px;
}

.nav-mobile-group-title:hover { color: var(--golden-yellow); }

.nav-mobile-group-title .nav-chevron {
    font-size: 12px;
    transition: transform 0.25s;
}

.nav-mobile-group.open .nav-chevron { transform: rotate(180deg); }

.nav-mobile-sub {
    display: none;
    padding: 4px 0 12px 16px;
}

.nav-mobile-group.open .nav-mobile-sub { display: block; }

.nav-mobile-sub a {
    display: block;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 15px;
    padding: 8px 0;
    transition: color 0.2s;
}

.nav-mobile-sub a:hover { color: var(--golden-yellow); }

.nav-mobile-cta {
    margin-top: 32px;
}

@media (max-width: 1024px) {
    .nav-menu {
        display: none;
    }
    .nav-hamburger {
        display: flex;
    }
}

.whatsapp-link {
    color: var(--light-white);
    font-size: 24px;
    transition: transform 0.3s ease;
}

.whatsapp-link:hover {
    transform: scale(1.1);
    color: #25D366;
}

/* ============================================================
   BUTTONS
   Bootstrap provides: display, cursor, text-decoration, border base.
   We override with Namwel's pill style and brand colours.
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    /* border: none; */
}

/* Use Bootstrap 5 button CSS variables for colour theming */
.btn-primary {
    --bs-btn-bg: var(--primary-orange);
    --bs-btn-border-color: var(--primary-orange);
    --bs-btn-color: var(--light-white);
    --bs-btn-hover-bg: var(--primary-orange);
    --bs-btn-hover-border-color: var(--primary-orange);
    --bs-btn-hover-color: var(--light-white);
    --bs-btn-active-bg: var(--primary-orange);
    --bs-btn-active-border-color: var(--primary-orange);
}

.btn-outline-primary {
    border: 2px solid var(--primary-orange);
    color: var(--primary-orange);
}

.btn-outline-primary:hover {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
    color: var(--light-white);
}

.text-primary {
    color: var(--primary-orange) !important;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(230, 81, 0, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--light-white);
    border: 2px solid var(--light-white);
}

.btn-outline:hover {
    background: var(--light-white);
    color: var(--bush-green);
}

.btn-secondary {
    --bs-btn-bg: #eee;
    --bs-btn-border-color: #eee;
    --bs-btn-color: var(--dark-text);
    --bs-btn-hover-bg: #ddd;
    --bs-btn-hover-border-color: #ddd;
    --bs-btn-hover-color: var(--dark-text);
}

/* ============================================================
   COMMON SECTION HEADER
   ============================================================ */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    color: var(--bush-green);
    margin-bottom: 16px;
}

.section-header p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Smaller variant used in How It Works */
.how-it-works .section-header {
    margin-bottom: 50px;
}

.how-it-works .section-header h2 {
    font-size: 36px;
}

.how-it-works .section-header p {
    font-size: 16px;
}

/* ============================================================
   FORM COMPONENTS
   ============================================================ */
.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 36px;
    color: var(--bush-green);
    margin-bottom: 12px;
}

.form-header p {
    color: #666;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--bush-green);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #eee;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
}

.form-section-title {
    font-size: 18px;
    color: var(--bush-green);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--warm-sand);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

/* Radio & Checkbox options */
.radio-group,
.checkbox-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.radio-option,
.checkbox-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    border: 2px solid #eee;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.radio-option:hover,
.checkbox-option:hover {
    border-color: var(--primary-orange);
}

.radio-option.selected,
.checkbox-option.selected {
    border-color: var(--primary-orange);
    background: rgba(230, 81, 0, 0.05);
}

.radio-option input,
.checkbox-option input {
    display: none;
}

.radio-option i {
    color: var(--bush-green);
    font-size: 20px;
}

.checkbox-option i {
    color: var(--vibrant-green);
    font-size: 18px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.checkbox-option.selected i {
    opacity: 1;
}

.checkbox-option span {
    font-size: 14px;
    color: var(--dark-text);
}

/* Multi-step form progress */
.form-progress-bar {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.progress-step {
    display: flex;
    align-items: center;
}

.progress-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #999;
    transition: all 0.3s ease;
}

.progress-step.active .progress-circle {
    background: var(--primary-orange);
    color: var(--light-white);
}

.progress-step.completed .progress-circle {
    background: var(--bush-green);
    color: var(--light-white);
}

.progress-line {
    width: 80px;
    height: 3px;
    background: #eee;
    margin: 0 10px;
}

.progress-line.active {
    background: var(--primary-orange);
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-attachment: fixed;
}

.hero video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
}

.hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(27, 94, 32, 0.3) 0%, rgba(46, 59, 41, 0.35) 100%);
    z-index: 1;
    padding-top: 32px;
}

.hero-content {
    text-align: center;
    color: var(--light-white);
    max-width: 900px;
    padding: 0 20px;
    animation: fadeInUp 1s ease;
    z-index: 2;
    margin-top: 110px;
}

.hero h1 {
    font-size: 40px;
    margin-bottom: 25px;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 25px;
    opacity: 0.9;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-trust {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.trust-item i {
    color: var(--muted-gold);
    font-size: 20px;
}

.trust-item span {
    /* font-size: 14px; */
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
    background: var(--bush-green);
    padding: 25px 0;
    min-height: 20vh;
}

.trust-bar-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    color: #FFFFFF;
}

.trust-bar-inner input,
.trust-bar-inner select {
    background: #FFFFFF;
    color: #1A1A1A;
    padding: 10px;
    border-radius: 5px;
    font: inherit;
}

.trust-stat {
    text-align: center;
    color: var(--light-white);
}

.trust-stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--golden-yellow);
}

.trust-stat-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

/* ============================================================
   VALUE PROPS / VALUES SECTION  (shared card styles)
   ============================================================ */
.value-props {
    padding: 100px 0;
    background: var(--light-white);
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.value-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--warm-sand);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px var(--shadow-medium);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--vibrant-green) 0%, var(--dark-forest-green) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.value-icon i {
    font-size: 32px;
    color: var(--golden-yellow);
}

.value-card h3 {
    font-size: 22px;
    color: var(--bush-green);
    margin-bottom: 12px;
}

.value-card p {
    color: #666;
    font-size: 15px;
}

/* ============================================================
   PACKAGES SECTION
   ============================================================ */
.packages {
    padding: 100px 0;
    background: var(--warm-sand);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.package-card {
    background: var(--light-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow-light);
    transition: all 0.3s ease;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px var(--shadow-medium);
}

.package-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.package-card:hover .package-image img {
    transform: scale(1.05);
}

.package-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-orange);
    color: var(--light-white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.package-availability {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(230, 81, 0, 0.9);
    color: var(--light-white);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 500;
}

.package-content {
    padding: 30px;
}

.package-location {
    font-size: 12px;
    text-transform: uppercase;
    color: var(--muted-gold);
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.package-title {
    font-size: 24px;
    color: var(--bush-green);
    margin-bottom: 8px;
}

.package-duration {
    font-size: 14px;
    color: #888;
    margin-bottom: 16px;
}

.package-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.highlight-tag {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #666;
    background: var(--warm-sand);
    padding: 6px 12px;
    border-radius: 20px;
}

.highlight-tag i {
    color: var(--bush-green);
}

.package-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.package-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.price-current {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--bush-green);
}

.price-original {
    font-size: 18px;
    color: #999;
    text-decoration: line-through;
}

.package-btn {
    padding: 12px 24px;
    font-size: 13px;
}

/* ============================================================
   URGENCY / COUNTDOWN SECTION
   ============================================================ */
.urgency {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bush-green) 0%, #1A2319 100%);
    color: var(--light-white);
}

.urgency-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.urgency-content {
    flex: 1;
    min-width: 300px;
}

.urgency-content h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.urgency-content p {
    opacity: 0.9;
    font-size: 16px;
}

.countdown-wrapper {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px 40px;
    border-radius: 16px;
    text-align: center;
}

.countdown-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    opacity: 0.8;
}

.countdown {
    display: flex;
    gap: 20px;
    justify-content: center;
}

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

.countdown-number {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--golden-yellow);
    line-height: 1;
}

.countdown-text {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
    margin-top: 5px;
}

/* ============================================================
   EXPERIENCE SECTION
   ============================================================ */
.experience {
    padding: 50px 0;
    background: var(--light-white);
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.experience-card {
    text-align: center;
    padding: 30px 20px;
}

.experience-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--vibrant-green) 0%, var(--dark-forest-green) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.experience-icon i {
    font-size: 28px;
    color: var(--golden-yellow);
}

.experience-card h3 {
    font-size: 18px;
    color: var(--bush-green);
    margin-bottom: 10px;
}

.experience-card p {
    font-size: 14px;
    color: #666;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
    padding: 100px 0;
    background: var(--warm-sand);
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-track {
    overflow: hidden;
}

.testimonial-slide {
    display: none;
    text-align: center;
    padding: 40px;
    animation: fadeIn 0.5s ease;
    /* max-height: 350px; */
}

.testimonial-slide.active {
    display: block;
}

.testimonial-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 24px;
    border: 4px solid var(--golden-yellow);
}

.testimonial-stars {
    color: var(--golden-yellow);
    font-size: 18px;
    margin-bottom: 20px;
}

.testimonial-quote {
    font-size: 22px;
    font-style: italic;
    color: var(--bush-green);
    margin-bottom: 24px;
    line-height: 1.6;
}

.testimonial-author {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--bush-green);
}

.testimonial-country {
    font-size: 14px;
    color: #888;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background: var(--primary-orange);
    transform: scale(1.2);
}

/* ============================================================
   LEAD FORM SECTION
   ============================================================ */
.lead-form-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bush-green) 0%, #1A2319 100%);
}

.lead-form-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--light-white);
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--bush-green);
    padding: 15px 0 30px;
    color: var(--light-white);
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    /* margin-bottom: 20px; */
    display: inline-block;
}

.footer-brand .logo img {
    height: 150px;
    width: auto;
}

.footer-brand p {
    opacity: 0.8;
    font-size: 14px;
    line-height: 1.8;
}

.footer-col h4 {
    margin-bottom: 20px;
    color: var(--muted-gold);
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 12px;
}

.footer-col a,
.footer a {
    color: var(--light-white);
    text-decoration: none;
    opacity: 0.8;
    font-size: 14px;
    transition: opacity 0.3s ease;
}

.footer-col a:hover,
.footer a {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-white);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--vibrant-green);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    opacity: 0.7;
}

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-white);
    font-size: 28px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5);
}

/* ============================================================
   MODAL  (custom overlay — separate from Bootstrap modal)
   ============================================================ */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

.modal {
    background: var(--light-white);
    border-radius: 20px;
    max-width: 500px;
    width: 100%;
    position: relative;
    animation: modalSlide 0.3s ease;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    color: #999;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--dark-text);
}

.modal-content {
    padding: 40px;
    text-align: center;
}

.modal-icon {
    width: 80px;
    height: 80px;
    background: var(--vibrant-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.modal-icon i {
    font-size: 36px;
    color: var(--light-white);
}

.modal h3 {
    font-size: 28px;
    color: var(--bush-green);
    margin-bottom: 12px;
}

.modal p {
    color: #666;
    margin-bottom: 24px;
}

.exit-offer {
    background: linear-gradient(135deg, var(--primary-orange) 0%, #FF6D00 100%);
    color: var(--light-white);
    padding: 30px;
    border-radius: 16px;
    margin-bottom: 24px;
}

.exit-offer h4 {
    font-size: 24px;
    margin-bottom: 8px;
}

.exit-offer p {
    opacity: 0.9;
    color: var(--light-white);
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, rgba(27, 94, 32, 0.9) 0%, rgba(46, 59, 41, 0.95) 100%),
        url('https://images.unsplash.com/photo-1516426122078-c23e76319801?w=1920&q=80') center/cover no-repeat;
    background-attachment: fixed;
    padding: 115px 0 50px;
}

.page-hero-content {
    text-align: center;
    color: var(--light-white);
    padding: 30px 20px;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.page-hero p {
    font-size: 18px;
    opacity: 0.9;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    font-size: 14px;
}

.breadcrumb a {
    color: var(--golden-yellow);
    text-decoration: none;
}

.breadcrumb span {
    opacity: 0.7;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
    padding: 100px 0;
    background: var(--light-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.about-image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background: var(--vibrant-green);
    border-radius: 20px;
    z-index: -1;
}

.about-content h2 {
    font-size: 36px;
    color: var(--bush-green);
    margin-bottom: 20px;
}

.about-content h2 span {
    color: var(--primary-orange);
}

.about-content p {
    color: #666;
    margin-bottom: 16px;
    font-size: 16px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: var(--warm-sand);
    border-radius: 12px;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--vibrant-green);
}

.stat-label {
    font-size: 13px;
    color: #666;
}

/* ============================================================
   STORY SECTION
   ============================================================ */
.story-section {
    padding: 100px 0;
    background: var(--warm-sand);
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.story-content h2 {
    font-size: 36px;
    color: var(--bush-green);
    margin-bottom: 24px;
}

.story-content p {
    color: #666;
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.8;
}

/* ============================================================
   VALUES SECTION
   ============================================================ */
.values-section {
    padding: 100px 0;
    background: var(--light-white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* ============================================================
   TEAM SECTION
   ============================================================ */
.team-section {
    padding: 100px 0;
    background: var(--warm-sand);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
}

.team-card {
    background: var(--light-white);
    border-radius: 16px;
    overflow: hidden;
    text-align: center;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px var(--shadow-medium);
}

.team-image {
    height: 250px;
}

.team-info {
    padding: 24px;
}

.team-name {
    font-size: 20px;
    color: var(--bush-green);
    margin-bottom: 4px;
}

.team-role {
    font-size: 14px;
    color: var(--primary-orange);
    margin-bottom: 12px;
}

.team-bio {
    font-size: 14px;
    color: #666;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--vibrant-green) 0%, var(--dark-forest-green) 100%);
    color: var(--light-white);
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works {
    padding: 80px 0;
    background: var(--light-white);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

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

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--vibrant-green) 0%, var(--dark-forest-green) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--golden-yellow);
}

.step-card h3 {
    font-size: 18px;
    color: var(--bush-green);
    margin-bottom: 10px;
}

.step-card p {
    font-size: 14px;
    color: #666;
}

/* ============================================================
   QUOTE FORM SECTION
   ============================================================ */
.quote-section {
    padding: 80px 0;
    background: var(--warm-sand);
}

.quote-container {
    margin: 0 auto;
    background: var(--light-white);
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 20px 50px var(--shadow-medium);
}

/* ============================================================
   SUCCESS STATE
   ============================================================ */
.success-message {
    text-align: center;
    padding: 60px 40px;
    display: none;
}

.success-message.active {
    display: block;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--vibrant-green) 0%, var(--dark-forest-green) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.success-icon i {
    font-size: 48px;
    color: var(--golden-yellow);
}

.success-message h3 {
    font-size: 28px;
    color: var(--bush-green);
    margin-bottom: 16px;
}

.success-message p {
    color: #666;
    font-size: 16px;
    margin-bottom: 30px;
}

/* ============================================================
   TRUST BADGES
   ============================================================ */
.trust-badges {
    padding: 40px 0;
    background: var(--light-white);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

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

.trust-item i {
    font-size: 20px;
    color: var(--vibrant-green);
    margin-bottom: 12px;
}

.trust-item h4 {
    font-size: 16px;
    color: var(--bush-green);
    margin-bottom: 6px;
}

.trust-item p {
    font-size: 13px;
    color: #666;
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section {
    padding: 80px 0;
    background: var(--light-white);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--warm-sand);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-question {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: var(--bush-green);
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f0ebe4;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: #666;
    font-size: 15px;
}

.faq-item.active .faq-answer {
    padding: 0 24px 20px;
    max-height: 200px;
}

/* ============================================================
   CONTACT INFO
   ============================================================ */
.contact-info {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--vibrant-green) 0%, var(--dark-forest-green) 100%);
    color: var(--light-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.contact-item i {
    font-size: 32px;
    color: var(--golden-yellow);
    margin-bottom: 16px;
}

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.contact-item p {
    opacity: 0.9;
    font-size: 15px;
}

.contact-item a {
    color: var(--light-white);
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--golden-yellow);
}

/* ============================================================
   UTILITIES
   ============================================================ */
.main {
    /* padding: 30px 0; */
}

.search-bar {
    color: #FFFFFF;
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

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

.pulse {
    animation: pulse 2s infinite;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes modalSlide {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(230, 81, 0, 0.4);
    }

    50% {
        box-shadow: 0 0 0 15px rgba(230, 81, 0, 0);
    }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .packages-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-inner {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .value-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .urgency-inner {
        flex-direction: column;
        text-align: center;
    }

    .countdown {
        gap: 15px;
    }

    .countdown-number {
        font-size: 36px;
    }

    .lead-form-container {
        padding: 30px;
    }

    .radio-group,
    .checkbox-group {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .progress-line {
        width: 40px;
    }

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

    .trust-grid,
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }
}


.nav-link {
    color: var(--primary-orange);
}


/* ─── Language Switcher ─────────────────────────────────────────── */
.lang-switcher {
    position: relative;
    display: flex;
    align-items: center;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    background: var(--primary-orange);
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
    white-space: nowrap;
}
.lang-btn:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.6);
}
.lang-btn .fa-globe { font-size: 0.9rem; opacity: 0.85; }
.lang-chevron {
    font-size: 0.65rem;
    opacity: 0.7;
    transition: transform 0.2s;
}

/* Dropdown panel */
.lang-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.14);
    min-width: 160px;
    overflow: hidden;
    z-index: 9999;
    animation: langFadeIn 0.15s ease;
}
.lang-dropdown.open { display: block; }
@keyframes langFadeIn {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

.lang-option {
    display: block;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 9px 16px;
    font-size: 0.88rem;
    color: #333;
    cursor: pointer;
    transition: background 0.15s;
}
.lang-option:hover { background: #f5f5f5; }
.lang-option:first-child { border-radius: 10px 10px 0 0; }
.lang-option:last-child  { border-radius: 0 0 10px 10px; }

/* When header is scrolled (dark bg already) — keep same button style */
/* When on light backgrounds, darken the button */
.lang-btn .lang-chevron { margin-left: 1px; }

/* Hide Google's injected toolbar */
.goog-te-banner-frame,
#goog-gt-tt,
.goog-tooltip,
.goog-te-balloon-frame { display: none !important; }
body { top: 0 !important; }
.skiptranslate { display: none !important; }

/* Mobile: show lang switcher in mobile nav footer too */
.nav-mobile-lang {
    padding: 12px 20px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.nav-mobile-lang button {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
    border-radius: 6px;
    padding: 5px 12px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: background 0.2s;
}
.nav-mobile-lang button:hover,
.nav-mobile-lang button.active {
    background: rgba(255,255,255,0.25);
}
