/* custom.css */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Khand:wght@500;600;700&family=Big+Shoulders+Display:wght@700;800;900&family=Manrope:wght@300;400;500;600;700;800&family=Barlow+Condensed:wght@700;800;900&display=swap');

:root {
    --primary: #15803d;         /* Rich professional forest green */
    --primary-hover: #166534;   /* Darker green for hover states */
    --accent: #22c55e;          /* Energetic accent green */
    --accent-light: #f0fdf4;    /* Light green for backgrounds & badges */
    --bg-white: #ffffff;        /* Clean white background */
    --bg-light: #f8fafc;        /* Soft off-white light background */
    --text-dark: #0f172a;       /* Slate black for premium readability */
    --text-muted: #64748b;      /* Slate gray for secondary text */
    --border-light: #e2e8f0;    /* Soft slate border */
    --shadow-premium: 0 10px 30px -5px rgba(21, 128, 61, 0.08), 0 4px 12px -2px rgba(0, 0, 0, 0.03);
}

/* Base resets & typography */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body {
    font-family: 'Plus Jakarta Sans', 'Manrope', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Khand', sans-serif;
    font-weight: 700;
    color: var(--text-dark);
}

h1 {
    font-family: 'Big Shoulders Display', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1px;
}

/* Colors and Backgrounds */
.text-primary { color: var(--primary) !important; }
.bg-primary { background-color: var(--primary) !important; }
.bg-dark-brown { background-color: var(--primary-hover) !important; } /* Rebrand dark brown section to primary hover */
.bg-light-bg { background-color: var(--bg-light) !important; }
.bg-white { background-color: var(--bg-white) !important; }

/* Buttons */
.btn {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 8px;
    padding: 10px 24px;
}

.btn-primary {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
    color: #ffffff !important;
}

.btn-primary:hover {
    background-color: var(--primary-hover) !important;
    border-color: var(--primary-hover) !important;
}

.btn-outline-primary {
    color: var(--primary) !important;
    border-color: var(--primary) !important;
}

.btn-outline-primary:hover {
    background-color: var(--primary) !important;
    color: #ffffff !important;
}

/* ========================================================
   NAVIGATION BAR: WHITE BACKGROUND, STATIC, GREEN HOVER
   ======================================================== */
.nav-bar {
    z-index: 1000;
}

.nav-bar::before {
    display: none !important;
}

/* WHITE navbar background */
.navbar {
    background-color: #ffffff !important;
    border-bottom: 2px solid var(--accent-light);
    box-shadow: 0 2px 16px rgba(21, 128, 61, 0.07);
}

/* Disable all animations & transitions on navbar globally */
.navbar,
.navbar *,
.navbar-collapse,
.dropdown-menu,
.dropdown-item,
.nav-item,
.nav-link {
    transition: none !important;
    animation: none !important;
}

/* Logo Name Styling — dark green text on white navbar */
.navbar-brand h1 {
    font-weight: 800;
    color: var(--primary) !important;
}

/* Navigation Links — dark green on white */
.navbar-light .navbar-nav .nav-link {
    color: var(--primary) !important;
    font-weight: 600;
    padding: 25px 15px !important;
}

/* Simple light green hover/active effect on nav items */
.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .show > .nav-link {
    color: var(--primary-hover) !important;
    background-color: var(--accent-light) !important;
    border-radius: 6px;
}

/* Dropdown Menu — white with green accents */
.navbar .dropdown-menu {
    background-color: #ffffff !important;
    border: 1px solid var(--border-light) !important;
    border-radius: 6px !important;
    margin-top: 0 !important;
    box-shadow: 0 8px 24px rgba(21, 128, 61, 0.12) !important;
    display: none;
}

.navbar .dropdown:hover .dropdown-menu {
    display: block;
}

.navbar .dropdown-item {
    color: var(--text-dark) !important;
    font-weight: 500;
    padding: 10px 20px !important;
}

/* Light green hover on dropdown items */
.navbar .dropdown-item:hover,
.navbar .dropdown-item.active {
    color: var(--primary) !important;
    background-color: var(--accent-light) !important;
}

/* Contact info text inside navbar — dark on white background */
.navbar .text-dark,
.navbar .opacity-75,
.navbar .font-weight-bold {
    color: var(--text-muted) !important;
}

.navbar .fa-envelope,
.navbar .fa-whatsapp {
    color: var(--primary) !important;
}

/* Navbar Book Now Button — solid green on white navbar */
.navbar .btn-primary {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
    color: #ffffff !important;
    font-weight: 700;
    border-radius: 8px;
}

.navbar .btn-primary:hover {
    background-color: var(--primary-hover) !important;
    border-color: var(--primary-hover) !important;
    color: #ffffff !important;
}

/* Mobile Toggler — green borders on white */
.navbar-light .navbar-toggler {
    border-color: var(--primary) !important;
    background-color: var(--accent-light) !important;
}

.navbar-light .navbar-toggler-icon {
    filter: none !important;
}

/* ========================================================
   HERO SECTION
   ======================================================== */
.hero-section {
    background: linear-gradient(180deg, var(--primary-hover) 0%, #14532d 100%);
    padding: 140px 0 100px;
    color: #ffffff;
}

.hero-headline {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #ffffff !important;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 650px;
    margin: 0 auto 40px;
}

/* Search Bar */
.search-bar-wrapper {
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    padding: 10px;
    max-width: 850px;
    margin: 0 auto;
    box-shadow: var(--shadow-premium);
}

.search-input-group {
    display: flex;
    align-items: center;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0 20px;
}

.search-input-group:last-child {
    border-right: none;
}

.search-input-group input,
.search-input-group select {
    background: transparent;
    border: none;
    color: #ffffff;
    width: 100%;
    font-size: 0.95rem;
}

.search-input-group input:focus,
.search-input-group select:focus {
    outline: none;
    box-shadow: none;
}

.search-input-group select option {
    color: var(--text-dark);
    background-color: #ffffff;
}

.search-icon {
    color: var(--accent);
    margin-right: 10px;
}

.btn-search {
    border-radius: 50px;
    padding: 12px 30px;
    background-color: var(--accent) !important;
    border-color: var(--accent) !important;
    color: #ffffff !important;
    font-weight: 700;
}

.btn-search:hover {
    background-color: #16a34a !important;
    border-color: #16a34a !important;
}

/* ========================================================
   STATS
   ======================================================== */
.stats-container {
    background-color: var(--bg-white);
    border-radius: 16px;
    padding: 40px 30px;
    margin-top: -50px;
    box-shadow: var(--shadow-premium);
    position: relative;
    z-index: 10;
}

.stat-item h3,
.stat-number {
    color: var(--primary) !important;
    font-weight: 800;
    font-size: 2.2rem;
    margin-bottom: 5px;
    font-family: 'Khand', sans-serif;
}

.stat-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

/* ========================================================
   SECTION HEADINGS
   ======================================================== */
.section-subtitle,
.section-label {
    color: var(--primary) !important;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

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

.section-title.text-white {
    color: #ffffff !important;
}

/* ========================================================
   CARDS & IMAGES
   ======================================================== */
.img-card {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-premium);
    height: 100%;
}

.img-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 24px 24px;
    background: linear-gradient(0deg, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0) 100%);
    color: #ffffff;
}

.card-overlay p {
    margin: 0;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--accent);
    letter-spacing: 1px;
}

.card-overlay h4 {
    margin: 0;
    font-weight: 700;
    font-size: 1.5rem;
    color: #ffffff !important;
}

/* Small Category Cards */
.small-card {
    background-color: var(--accent-light);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    border: 1px solid rgba(34, 197, 94, 0.08);
    transition: all 0.25s ease;
}

.small-card:hover {
    background-color: #dcfce7;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(21, 128, 61, 0.05);
}

.small-card i {
    color: var(--primary);
    font-size: 1.5rem;
    margin-right: 15px;
}

.small-card-content h6 {
    margin: 0 0 5px;
    font-weight: 700;
    color: var(--text-dark);
}

.small-card-content p {
    margin: 0;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Badges */
.card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--primary);
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.card-badge.badge-hot {
    background-color: #ef4444; /* Premium red for deals */
}

.card-badge.badge-luxury {
    background-color: #7c3aed; /* Premium purple for luxury */
}

.card-badge.badge-hot,
.card-badge.badge-luxury,
.card-badge {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
}

/* Best Seller Tour Cards */
.best-seller-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    height: 100%;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid var(--border-light);
}

.best-seller-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px -10px rgba(21, 128, 61, 0.15);
    border-color: rgba(21, 128, 61, 0.2);
}

.best-seller-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.best-seller-details {
    padding: 24px;
}

.best-seller-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.best-seller-meta i {
    color: var(--primary);
    margin-right: 4px;
}

.best-seller-title {
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--text-dark);
    line-height: 1.4;
}

.best-seller-rating {
    color: #fbbf24; /* Warm Gold */
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.best-seller-rating span {
    color: var(--text-muted);
    margin-left: 6px;
}

.best-seller-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-light);
    padding-top: 20px;
}

.best-seller-price p {
    margin: 0;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.best-seller-price h5,
.price {
    margin: 0;
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--primary) !important;
    font-family: 'Barlow Condensed', sans-serif;
}

.best-seller-price h5 span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
}

.btn-book {
    background-color: var(--accent-light);
    color: var(--primary) !important;
    border: 1px solid rgba(21, 128, 61, 0.15);
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    font-family: 'Barlow Condensed', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.2s ease;
}

.btn-book:hover {
    background-color: var(--primary);
    color: #ffffff !important;
    border-color: var(--primary);
}

/* ========================================================
   AI TRIP PLANNER
   ======================================================== */
.ai-planner-section {
    background-color: #052e16; /* Deep forest green */
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.ai-planner-section .text-accent {
    color: var(--accent);
}

.ai-badge {
    display: inline-block;
    border: 1px solid var(--accent);
    color: var(--accent);
    background: rgba(34, 197, 94, 0.1);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.ai-heading {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff !important;
}

.ai-subtext {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
}

.ai-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ai-step {
    display: flex;
    align-items: center;
    gap: 15px;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.step-text {
    font-weight: 500;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.trust-badge {
    color: #86efac;
    font-weight: 600;
}

.ai-chat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    height: 500px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.chat-messages {
    flex-grow: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.chat-msg {
    max-width: 85%;
    padding: 12px 18px;
    border-radius: 12px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.bot-msg {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.user-msg {
    background: var(--primary);
    color: #ffffff;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.chat-input-area {
    display: flex;
    gap: 10px;
}

.chat-input-area input {
    flex-grow: 1;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    padding: 12px 20px;
    color: #ffffff;
    outline: none;
}

.chat-input-area input:focus {
    border-color: var(--accent);
}

.chat-input-area button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    border: none;
    color: #ffffff;
    cursor: pointer;
}

.chat-input-area button:hover {
    background: var(--primary-hover);
}

.chat-footer-text {
    font-size: 0.8rem;
    color: var(--accent);
    text-align: center;
    margin-top: 15px;
    font-weight: 600;
}

/* ========================================================
   TRAVEL MOOD FINDER
   ======================================================== */
.mood-finder-section {
    background-color: var(--bg-light);
}

.mood-label {
    color: var(--primary);
    letter-spacing: 2px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.mood-heading {
    font-weight: 800;
    font-size: 2.5rem;
    color: var(--text-dark);
}

.mood-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.mood-card {
    background: #ffffff;
    border: 1.5px solid var(--border-light);
    border-radius: 16px;
    padding: 30px 20px;
    cursor: pointer;
    transition: all 0.25s ease;
    position: relative;
    height: 100%;
}

.mood-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-premium);
    border-color: var(--primary);
}

.mood-card.selected {
    border-color: var(--primary);
    background-color: var(--accent-light);
    box-shadow: 0 10px 24px rgba(21, 128, 61, 0.1);
}

.mood-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.mood-name {
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.mood-tags {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.mood-check {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 24px;
    height: 24px;
    background: var(--primary);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    opacity: 0;
    transform: scale(0);
    transition: all 0.2s ease;
}

.mood-card.selected .mood-check {
    opacity: 1;
    transform: scale(1);
}

/* Result panel for selected mood */
.mood-result-panel {
    background: #ffffff;
    border-left: 5px solid var(--primary);
    border-radius: 12px;
    padding: 40px;
    box-shadow: var(--shadow-premium);
    margin-top: 40px;
    display: none;
    border-top: 1px solid var(--border-light);
    border-right: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.result-heading {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 30px;
    text-align: left;
}

.pkg-card {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    overflow: hidden;
    height: 100%;
}

.pkg-card:hover {
    box-shadow: 0 12px 24px rgba(21, 128, 61, 0.08);
}

.pkg-top {
    height: 6px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.pkg-content {
    padding: 24px;
}

.pkg-title {
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.pkg-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.pkg-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 15px;
}

.btn-whatsapp-cta {
    background-color: #25D366;
    color: #ffffff !important;
    font-weight: 700;
    border-radius: 50px;
    padding: 12px 30px;
    display: inline-block;
    text-decoration: none;
    font-family: 'Barlow Condensed', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.btn-whatsapp-cta:hover {
    background-color: #128C7E;
    color: #ffffff !important;
}

/* ========================================================
   TESTIMONIALS
   ======================================================== */
.testimonial-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 35px;
    box-shadow: var(--shadow-premium);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-light);
}

.testimonial-stars {
    color: #fbbf24;
    margin-bottom: 20px;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 30px;
    flex-grow: 1;
}

.testimonial-user {
    display: flex;
    align-items: center;
}

.testimonial-avatar {
    width: 45px;
    height: 45px;
    background-color: var(--accent-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-right: 15px;
}

.testimonial-info h6 {
    margin: 0;
    font-weight: 700;
    color: var(--text-dark);
}

.testimonial-info p {
    margin: 0;
    font-size: 0.75rem;
    color: var(--primary);
    text-transform: uppercase;
    font-weight: 700;
}

/* ========================================================
   ABOUT US PAGE SPECIFIC STYLES
   ======================================================== */
.about-hero {
    position: relative;
    background: linear-gradient(rgba(15, 23, 42, 0.65), rgba(15, 23, 42, 0.65)), url('https://images.unsplash.com/photo-1548013146-72479768bada?q=80&w=1920&auto=format&fit=crop') center/cover no-repeat;
    padding: 160px 0;
    color: #ffffff;
}

.about-stats {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 0;
    box-shadow: var(--shadow-premium);
    margin-top: -65px;
    position: relative;
    z-index: 10;
    border: 1px solid var(--border-light);
}

.about-stat-item {
    text-align: center;
}

.about-stat-item:not(:last-child) {
    border-right: 1px solid var(--border-light);
}

.about-stat-item h3 {
    font-size: 2.2rem;
    font-family: 'Khand', sans-serif;
    color: var(--primary);
    margin-bottom: 5px;
    font-weight: 800;
}

.about-stat-item p {
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--text-muted);
    margin: 0;
    letter-spacing: 1px;
}

.story-badge,
.offer-badge {
    background: var(--accent-light);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-family: 'Barlow Condensed', sans-serif;
}

.story-collage {
    position: relative;
    margin-top: 30px;
}

.story-collage img.main-img {
    border-radius: 20px;
    width: 85%;
    box-shadow: var(--shadow-premium);
}

.story-collage img.sub-img {
    position: absolute;
    bottom: -40px;
    right: 0;
    border-radius: 20px;
    width: 50%;
    border: 8px solid #ffffff;
    box-shadow: var(--shadow-premium);
}

.story-collage .agency-badge {
    position: absolute;
    top: 30px;
    left: 20px;
    background: #ffffff;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: var(--shadow-premium);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 2;
    border: 1px solid var(--border-light);
}

.story-collage .agency-badge i {
    color: var(--primary);
    font-size: 1.5rem;
}

.story-collage .agency-badge h6 {
    margin: 0;
    font-family: 'Khand', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
}

.story-collage .agency-badge p {
    margin: 0;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.check-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--text-dark);
}

.check-list li i {
    color: var(--primary);
    margin-right: 15px;
    font-size: 1.25rem;
}

.offer-cards-section {
    background: var(--bg-light);
}

.offer-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    text-align: left;
    box-shadow: var(--shadow-premium);
    height: 100%;
    border: 1px solid var(--border-light);
}

.offer-card-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 20px;
}

.timeline-section h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 50px;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
    border-radius: 24px;
    padding: 60px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
}

.cta-box h2 {
    color: #ffffff !important;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.cta-box p {
    font-size: 1.15rem;
    opacity: 0.9;
    margin-bottom: 0;
}

.cta-box i {
    margin-right: 10px;
}

.timeline-placeholder {
    display: flex;
    justify-content: space-between;
    margin: 40px 0;
    position: relative;
}

.timeline-placeholder::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary);
    z-index: 1;
}

.timeline-item {
    position: relative;
    z-index: 2;
    background: var(--bg-white);
    padding: 0 15px;
    color: var(--primary);
    font-weight: 700;
    font-size: 1.1rem;
}

/* ========================================================
   FOOTER SECTION
   ======================================================== */
.footer {
    background-color: #052e16 !important; /* Deep forest green */
    color: #ffffff;
    padding: 80px 0 30px;
}

.footer-logo h4 {
    color: #ffffff !important;
}

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

.footer h5 {
    color: #ffffff !important;
    font-weight: 700;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #ffffff;
    text-decoration: none;
}

.footer-contact i {
    color: var(--accent) !important;
}

.social-links a {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.08);
    transition: all 0.2s ease;
}

.social-links a:hover {
    background-color: var(--primary);
    transform: translateY(-2px);
}

/* Back to Top override */
.btn-light {
    background-color: #ffffff !important;
    border-color: #ffffff !important;
    color: var(--primary) !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15) !important;
}

.btn-light:hover {
    background-color: var(--accent-light) !important;
    color: var(--primary-hover) !important;
}

/* Form Styles Override */
.nav-pills .nav-link.active {
    background-color: var(--primary) !important;
    color: #ffffff !important;
}

.nav-pills .nav-link {
    color: var(--text-dark);
}

.enquiry-form-container input,
.enquiry-form-container select,
.enquiry-form-container textarea {
    border: 1px solid var(--border-light);
}

.enquiry-form-container input:focus,
.enquiry-form-container select:focus,
.enquiry-form-container textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(21, 128, 61, 0.1);
}

/* Base resets for screen sizes */
@media (max-width: 768px) {
    .ai-heading { font-size: 2.2rem; }
    .mood-heading { font-size: 2rem; }
    .mood-result-panel { padding: 24px; }
    .hero-headline { font-size: 2.5rem; }
    .timeline-placeholder {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    .timeline-placeholder::before {
        display: none;
    }
    .about-stats {
        margin-top: -30px;
    }
    .about-stat-item:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid var(--border-light);
        padding-bottom: 15px;
        margin-bottom: 15px;
    }
}
