/* CSS Variables - Premium Forest Green & Gold Theme (Matched to Logo) */
:root {
    --site-bg: #FCFAF7;
    --site-bg-alt: #F3ECE0;
    --primary-dark: #0B4625;
    --primary-light: #1B5E34;
    --gold: #C5A059;
    --gold-dark: #8F6510;
    --gold-light: #F3D078;
    --text-dark: #0D2014;
    --text-muted-dark: #476653;
    --text-light: #f8f6f2;
    --text-muted-light: #a2bdae;
    
    --box-brown: #082E18;
    --border-color: rgba(197, 160, 89, 0.4);
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--site-bg);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.gold-text {
    color: var(--gold-dark);
}

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

.mt-4 {
    margin-top: 2rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: 0.5px;
}

.section-subtitle {
    color: var(--gold-dark);
    font-size: 0.9rem;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: var(--gold); /* Fallback */
}

.section-desc {
    color: var(--text-muted-dark);
    margin-bottom: 3rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
    font-family: var(--font-body);
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
    color: #000;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.hero-buttons .btn-primary {
    animation: ctaPulse 2.5s ease-in-out infinite;
}

.hero-buttons .btn-primary:hover {
    animation: none;
    transform: translateY(-3px);
}

@keyframes ctaPulse {
    0%, 100% { box-shadow: 0 4px 15px rgba(201,144,58,0.3); }
    50% { box-shadow: 0 4px 28px rgba(201,144,58,0.55), 0 0 15px rgba(201,144,58,0.15); }
}

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

.btn-outline:hover {
    background: rgba(212, 175, 55, 0.1);
}

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

.rounded-pill {
    border-radius: 50px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(11, 70, 37, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    padding: 12px 0;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.navbar::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.navbar:hover::after {
    opacity: 1;
}

.navbar.scrolled {
    padding: 8px 0;
    background: rgba(11, 70, 37, 0.98);
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.logo i {
    font-size: 2rem;
    color: var(--gold);
}

.logo-text h1 {
    font-size: 1.2rem;
    line-height: 1;
    margin-bottom: 2px;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: var(--gold-light); /* Fallback */
}

.logo-text p {
    font-size: 0.5rem;
    color: var(--text-muted-light);
    letter-spacing: 1px;
}

/* Brand Logo Image - rounded corners, 3D effect, animation */
.brand-logo {
    height: 50px;
    width: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3), 0 2px 4px rgba(201,144,58,0.2);
    transition: all 0.4s ease;
    object-fit: contain;
}

.brand-logo:hover {
    transform: perspective(800px) rotateY(-5deg) scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.4), 0 4px 8px rgba(201,144,58,0.3);
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

.logo:hover .brand-logo {
    animation: logoFloat 2s ease-in-out infinite;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    color: var(--text-light);
    position: relative;
}

/* Active link indicator */
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 60%;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--gold);
}

/* Hide mobile-only buttons on desktop */
.mobile-nav-buttons {
    display: none;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--gold);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1100;
    position: relative;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 200px 0 150px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(5,25,12,0.88) 0%, rgba(13,45,22,0.7) 50%, rgba(5,20,10,0.85) 100%);
    z-index: 1;
}

/* Hero Slider Background */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: -1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 0;
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: center;
}

.hero-content {
    max-width: 800px;
    width: 100%;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: var(--text-light); /* Fallback */
    font-weight: 700;
    min-height: 1.2em;
}

/* Animated child elements inside hero text items */
.hero-text-item.active .hero-divider {
    animation: dividerExpand 0.8s ease forwards;
}

.hero-text-item.active .sub-tagline {
    animation: fadeSlideUp 0.6s ease 0.3s both;
}

.hero-text-item.active .hero-desc {
    animation: fadeSlideUp 0.6s ease 0.5s both;
}

@keyframes dividerExpand {
    0% { width: 0; opacity: 0; }
    100% { width: 150px; opacity: 1; }
}

@keyframes fadeSlideUp {
    0% { opacity: 0; transform: translateY(15px); }
    100% { opacity: 1; transform: translateY(0); }
}

.hero-divider {
    width: 150px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 20px auto;
}

.sub-tagline {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gold-light);
    letter-spacing: 3px;
    margin-bottom: 25px;
    text-transform: uppercase;
    text-shadow: 0 0 15px rgba(201,144,58,0.25);
}

.hero-desc {
    font-size: 1.2rem;
    color: var(--text-light);
    opacity: 0.85;
    margin-bottom: 40px;
    line-height: 1.7;
}

/* Hero Text Slider - sync with background images */
.hero-text-slider {
    position: relative;
    min-height: 320px;
}

.hero-text-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    pointer-events: none;
}

.hero-text-item.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    position: relative;
}

/* Typewriter effect - cursor blink */
.typewriter::after {
    content: '|';
    animation: blink 0.7s step-end infinite;
    color: var(--gold);
    font-weight: 300;
}

@keyframes blink {
    50% { opacity: 0; }
}

/* Hero Slide Indicators */
.hero-slide-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.hero-dot.active {
    background: var(--gold);
    border-color: var(--gold-light);
    box-shadow: 0 0 10px rgba(201, 144, 58, 0.5);
    transform: scale(1.2);
}

.hero-dot:hover {
    background: rgba(255,255,255,0.6);
}

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

.hero-buttons .btn-outline {
    color: var(--gold-light);
}

.hero-subpage {
    min-height: 40vh !important;
    padding: 150px 0 50px !important;
}

/* Features Row */
.features-row {
    padding: 50px 0;
    background: var(--site-bg-alt);
    border-top: 1px solid rgba(5,25,12,0.1);
    border-bottom: 1px solid rgba(5,25,12,0.1);
    position: relative;
}

.features-row::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), var(--gold-dark), var(--gold), transparent);
}

.features-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.feature-item {
    text-align: center;
    flex: 1;
    min-width: 150px;
    padding: 26px 18px;
    border-radius: 18px;
    background: linear-gradient(135deg, #f3faf6 0%, #e2f4e9 100%); /* Fresh mint/emerald gradient */
    border: 1.5px solid rgba(12, 77, 41, 0.12);
    border-top: 4.5px solid var(--gold); /* Gold top accent border */
    box-shadow: 0 10px 30px rgba(11, 70, 37, 0.05);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.feature-item:hover {
    transform: translateY(-6px);
    background: linear-gradient(135deg, #e2f4e9 0%, #d3ebd8 100%);
    box-shadow: 0 15px 35px rgba(11, 70, 37, 0.12);
    border-color: var(--gold);
    border-top-color: var(--gold-light);
}

.feature-icon {
    font-size: 1.8rem;
    color: #ffffff;
    background: var(--gold); /* Solid gold badge icon */
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.25);
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    background: #0c4d29; /* Swaps to deep emerald green on hover */
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(12, 77, 41, 0.25);
    transform: scale(1.08);
}

.feature-item h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--primary-dark);
    letter-spacing: 0.5px;
}

.feature-item p {
    font-size: 0.85rem;
    color: var(--text-muted-dark);
    line-height: 1.5;
}

/* Gallery / Project Slider Cards */
.project-card {
    border-radius: 15px;
    overflow: hidden;
    background: var(--box-brown);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

.project-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.project-info {
    padding: 20px;
}

.project-info h3 {
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

/* Swiper slider sizing */
.project-swiper {
    width: 100%;
    padding-bottom: 50px !important;
}

.swiper-slide {
    height: auto;
}

/* Packages Section (Keep Boxes Green) */
.packages-section {
    padding: 100px 0;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.package-card {
    background: var(--box-brown); 
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    color: var(--text-light);
}

.package-card h3, .package-card h2, .package-card .package-header {
    color: var(--text-light);
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(5,25,12,0.3);
    border-color: var(--gold);
}

.package-header {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-muted-light) !important;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.package-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.package-shares {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.package-price {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold-light) !important;
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

.package-monthly {
    margin-bottom: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.package-monthly span {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted-light);
}

.package-monthly strong {
    display: block;
    font-size: 1.4rem;
    color: var(--text-light);
}

.package-details-hidden {
    display: none;
}

.view-details-btn {
    margin-top: auto;
    width: 100%;
    border-color: var(--gold) !important;
    color: var(--gold) !important;
}

.view-details-btn:hover {
    background: rgba(212, 175, 55, 0.1) !important;
}

/* Calculator Section */
.calculator-section {
    padding: 100px 0;
    background: var(--site-bg);
}

.calculator-card {
    background: var(--box-brown); 
    border: 1px solid var(--gold);
    border-radius: 15px;
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(5,25,12,0.2);
    color: var(--text-light);
}

.calc-input-group label {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--gold-light);
}

.calc-input-wrapper {
    display: flex;
    align-items: center;
    background: rgba(0,0,0,0.3);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 10px 20px;
}

.calc-input-wrapper span {
    font-size: 1.5rem;
    color: var(--gold);
    margin-right: 10px;
}

.calc-input-wrapper input {
    background: transparent;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    width: 100%;
    outline: none;
    font-family: var(--font-heading);
}

.calc-results {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.calc-result-box {
    background: rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
}

.calc-result-box span {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted-light);
    margin-bottom: 5px;
}

.calc-result-box h3 {
    font-size: 1.5rem;
    color: var(--gold);
}

.calc-total {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(0,0,0,0.5));
    border: 1px solid var(--gold);
    text-align: center;
}

.calc-total h3 {
    font-size: 2.5rem;
    color: var(--gold-light);
}

/* Stats Row */
.stats-row {
    padding: 60px 0;
    background: var(--box-brown); 
    color: var(--text-light);
    position: relative;
}

.stats-row::before {
    content: '';
    position: absolute;
    top: 0; left: 10%; width: 80%; height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
}

.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-item i {
    font-size: 3rem;
    color: var(--gold);
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 6px rgba(201,144,58,0.3));
}

.stat-item:hover i {
    transform: scale(1.15);
    filter: drop-shadow(0 0 12px rgba(201,144,58,0.6));
}

.stat-content h4 {
    font-size: 2.5rem;
    line-height: 1;
    color: var(--text-light);
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.stat-content p {
    font-size: 0.9rem;
    color: var(--text-muted-light);
    letter-spacing: 1px;
}

/* Income Plan */
.income-section {
    padding: 100px 0;
}

.premium-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--site-bg-alt);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(5,25,12,0.1);
}

.premium-table th, .premium-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(5,25,12,0.05);
    color: var(--text-dark);
}

.premium-table th {
    background: rgba(5, 25, 12, 0.05);
    color: var(--text-dark);
    font-weight: 700;
    letter-spacing: 1px;
}

.premium-table tr:hover {
    background: rgba(5, 25, 12, 0.02);
}

.benefits-list {
    margin-top: 30px;
}

.benefits-list li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(5,25,12,0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: var(--site-bg-alt);
}

.about-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-image {
    flex: 1;
}

.img-placeholder {
    width: 100%;
    min-height: 400px;
    border-radius: 20px;
    border: 1px solid rgba(5,25,12,0.1);
    background-size: cover;
    background-position: center;
    box-shadow: 0 10px 30px rgba(5,25,12,0.08);
}

.about-content {
    flex: 1;
}

.about-features {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.about-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    background: #ffffff;
    padding: 24px 15px;
    border-radius: 12px;
    border: 1.5px solid rgba(212, 175, 55, 0.15);
    border-top: 3.5px solid var(--gold);
    box-shadow: 0 8px 25px rgba(11, 70, 37, 0.04);
    flex: 1;
    min-width: 130px;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.about-feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.12);
    border-top-color: var(--gold-light);
}

.about-feature i {
    font-size: 1.8rem;
    color: var(--gold-dark);
    margin-bottom: 4px;
    transition: transform 0.3s ease;
}

.about-feature:hover i {
    transform: scale(1.1);
}
    min-width: 120px;
}

.about-feature i {
    font-size: 2rem;
    color: var(--gold-dark);
}

.about-feature span {
    font-size: 0.85rem;
    font-weight: 600;
}

/* Advanced Footer */
.main-footer {
    background-color: var(--box-brown);
    color: var(--text-light);
    padding: 80px 0 20px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border-color);
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h3 {
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--gold);
}

.footer-col p {
    color: var(--text-muted-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    color: var(--gold);
    transition: all 0.3s;
}

.footer-socials a:hover {
    background: var(--gold);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: var(--text-muted-light);
    transition: color 0.3s, padding-left 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a i {
    font-size: 0.8rem;
    color: var(--gold);
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    color: var(--text-muted-light);
}

.footer-contact i {
    color: var(--gold);
    font-size: 1.2rem;
    margin-top: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: var(--text-muted-light);
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Modals */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}

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

.modal-content {
    background: var(--box-brown);
    border: 1px solid var(--gold);
    border-radius: 15px;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 30px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0,0,0,0.8);
    color: var(--text-light);
}

.close-modal {
    position: absolute;
    top: 15px; right: 15px;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
}

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

/* Clean Auth Page with Green Box Form */
.auth-cream-body {
    background-color: var(--site-bg);
    color: var(--text-dark);
}

.auth-cream-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 20px 60px;
}

.auth-cream-card {
    background: linear-gradient(135deg, #0c4d29 0%, #052614 100%); /* Premium Deep Emerald */
    border: 2px solid var(--gold);
    border-radius: 16px;
    padding: 40px;
    width: 100%;
    max-width: 480px;
    box-shadow: 0 20px 45px rgba(5, 38, 20, 0.25);
    position: relative;
    color: #ffffff;
    transition: all 0.4s ease;
}

.auth-cream-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 50px rgba(12, 77, 41, 0.2), 0 0 30px rgba(212, 175, 55, 0.15);
    border-color: var(--gold-light);
}

/* Force excellent readability and gold accents inside deep emerald cards */
.auth-cream-card h2, 
.auth-cream-card h3, 
.auth-cream-card h4 {
    color: var(--gold-light) !important;
}

.auth-cream-card p,
.auth-cream-card li,
.auth-cream-card span {
    color: #f1f5f9 !important;
    opacity: 0.95;
}

.auth-cream-card .gold-text {
    color: var(--gold-light) !important;
}

/* Decorative Background Pattern for alternate sections */
.section-decor {
    position: relative;
}

.section-decor::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(201,144,58,0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.section-decor::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(201,144,58,0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.auth-cream-card h2, .auth-cream-card p {
    color: #051C0F;
}

.auth-cream-card.register-wide {
    max-width: 620px;
}

.auth-cream-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-cream-header h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    margin-bottom: 8px;
    color: #051C0F;
}

.auth-cream-header p {
    color: rgba(5, 28, 15, 0.85);
    font-size: 0.95rem;
}

.auth-cream-control {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(5, 28, 15, 0.3);
    border-radius: 8px;
    color: #051C0F;
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: all 0.3s;
}

.auth-cream-control::placeholder {
    color: rgba(5, 28, 15, 0.5);
    opacity: 0.8;
}

.auth-cream-control:focus {
    border-color: #051C0F;
    background: #ffffff;
    box-shadow: 0 0 10px rgba(5, 28, 15, 0.15);
}

.auth-cream-label {
    display: block;
    margin-bottom: 8px;
    color: #051C0F;
    font-weight: 600;
    font-size: 0.9rem;
}

.auth-cream-btn {
    width: 100%;
    background: linear-gradient(135deg, #1B5E34, #0B4625, #051C0F);
    color: #F3D078;
    padding: 14px;
    border-radius: 8px;
    font-weight: 700;
    border: 1px solid #C5A059;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(5, 28, 15, 0.2);
    transition: all 0.3s;
}

.auth-cream-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(5, 28, 15, 0.3);
    background: linear-gradient(135deg, #237542, #115930, #0B4625);
}

.auth-cream-footer {
    text-align: center;
    margin-top: 25px;
    font-size: 0.9rem;
    color: rgba(5, 28, 15, 0.8);
}

.auth-cream-footer a {
    color: #0B4625;
    font-weight: 800;
}

.auth-cream-footer a:hover {
    text-decoration: underline;
}

.auth-cream-back {
    position: absolute;
    top: -50px;
    left: 0;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Form Groups & Password Toggles */
.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.password-wrapper {
    position: relative;
    display: block;
}

.password-wrapper .auth-cream-control {
    padding-right: 40px; /* Make space for eye icon */
}

.toggle-password {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.toggle-password:hover {
    color: var(--gold) !important;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-title { font-size: 3.5rem; }
    .hero-container { flex-direction: column; text-align: center; gap: 30px; }
    .hero-divider { margin: 20px auto; }
    .about-container { flex-direction: column; gap: 40px; }
}

@media (max-width: 768px) {
    /* Hide nav links and buttons by default on mobile */
    .nav-links  { display: none !important; }
    .nav-buttons { display: none !important; }
    .mobile-menu-toggle { display: flex !important; align-items: center; justify-content: center; padding: 8px; }

    /* When menu is open */
    .nav-links.show-mobile-menu {
        display: flex !important;
        flex-direction: column !important;
        position: fixed;
        top: 58px;
        left: 0;
        right: 0;
        width: 100%;
        background: rgba(11, 70, 37, 0.99);
        padding: 10px 0 20px;
        border-bottom: 2px solid var(--gold);
        text-align: center;
        z-index: 999;
        gap: 0;
    }

    .nav-links.show-mobile-menu a {
        color: var(--text-light) !important;
        padding: 14px 20px;
        width: 100%;
        display: block;
        border-bottom: 1px solid rgba(255,255,255,0.07);
        font-size: 1rem;
        letter-spacing: 1px;
    }

    .nav-links.show-mobile-menu a:last-child {
        border-bottom: none;
    }

    .nav-links.show-mobile-menu a:hover,
    .nav-links.show-mobile-menu a.active {
        background: rgba(212, 175, 55, 0.1);
        color: var(--gold) !important;
    }

    /* Mobile nav Login/Join buttons */
    .mobile-nav-buttons {
        display: flex;
        gap: 12px;
        justify-content: center;
        padding: 16px 20px 6px;
        border-top: 1px solid rgba(255,255,255,0.1);
        margin-top: 6px;
    }

    .mobile-nav-btn {
        flex: 1;
        text-align: center;
        padding: 10px 16px !important;
        font-size: 0.9rem !important;
        border-radius: 25px !important;
    }

    .mobile-nav-btn.btn-outline {
        border: 2px solid var(--gold) !important;
        color: var(--gold) !important;
    }
    
    /* Hero Responsiveness */
    .hero { padding: 130px 0 80px; }
    .hero-subpage { min-height: 30vh !important; padding: 120px 0 40px !important; }
    .hero-title { font-size: 2.5rem; }
    .sub-tagline { font-size: 0.9rem; letter-spacing: 1.5px; margin-bottom: 20px; }
    .hero-desc { font-size: 1rem; margin-bottom: 25px; }
    .hero-buttons { flex-direction: column; width: 100%; max-width: 300px; margin: 0 auto; gap: 10px; }
    .hero-text-slider { min-height: 240px; }
    .hero-slide-indicators { margin-top: 20px; }
    .hero-dot { width: 10px; height: 10px; }
    
    /* Two boxes at a time in mobile view */
    .packages-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px;
    }
    
    /* Optimize cards for dual mobile column view */
    .package-card {
        padding: 15px 10px;
        border-radius: 10px;
    }
    .package-header {
        font-size: 0.85rem;
        margin-bottom: 10px;
    }
    .package-icon {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    .package-shares {
        font-size: 0.75rem;
        margin-bottom: 5px;
    }
    .package-price {
        font-size: 1.25rem !important;
        margin-bottom: 10px;
    }
    .package-monthly {
        padding-top: 10px;
        margin-bottom: 10px;
    }
    .package-monthly span {
        font-size: 0.7rem;
    }
    .package-monthly strong {
        font-size: 0.95rem;
    }
    .view-details-btn {
        padding: 6px 12px;
        font-size: 0.75rem;
    }

    /* Calculator Section Mobile Design */
    .calculator-card {
        padding: 20px 15px;
    }
    .calc-input-group label {
        font-size: 0.95rem;
    }
    .calc-input-wrapper {
        padding: 8px 12px;
    }
    .calc-input-wrapper input {
        font-size: 1.25rem;
    }
    .calc-results {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .calc-result-box {
        padding: 12px;
    }
    .calc-result-box span {
        font-size: 0.75rem;
    }
    .calc-result-box h3 {
        font-size: 1.1rem;
    }
    .calc-total h3 {
        font-size: 1.6rem;
    }

    /* Features Grid Mobile Adjustments */
    .features-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .features-container .feature-item:last-child {
        grid-column: span 2;
    }
    .feature-item {
        padding: 18px 12px;
    }
    .feature-icon {
        font-size: 1.8rem;
        width: 50px;
        height: 50px;
        line-height: 50px;
        margin-bottom: 8px;
    }
    .feature-item h3 {
        font-size: 0.85rem;
    }
    .feature-item p {
        font-size: 0.72rem;
    }
    
    /* Level Income Plan adjustments */
    .premium-table th, .premium-table td {
        padding: 10px 12px;
        font-size: 0.85rem;
    }
    
    /* Auth Form adjustments */
    .auth-cream-card {
        padding: 30px 20px;
    }
    .auth-cream-header h2 {
        font-size: 1.8rem;
    }
    
    /* Slider height adjust */
    .swiper-slide .img-placeholder {
        min-height: 220px !important;
    }
    
    /* About image mobile height */
    .about-image .img-placeholder {
        min-height: 250px !important;
    }
}

@media (max-width: 480px) {
    /* Handle smaller phone screens */
    .packages-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px;
    }
    .package-price {
        font-size: 1.05rem !important;
    }
    .package-monthly strong {
        font-size: 0.85rem;
    }
    .calc-results {
        grid-template-columns: 1fr;
    }
    .calc-total {
        grid-column: span 1;
    }
}

/* Core Values Grid styling */
.core-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.core-values-grid .auth-cream-card {
    padding: 40px 20px;
    text-align: center;
}

@media (max-width: 992px) {
    .core-values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .core-values-grid .auth-cream-card {
        padding: 20px 10px !important;
    }
    .core-values-grid .auth-cream-card i {
        font-size: 1.8rem !important;
        margin-bottom: 8px !important;
    }
    .core-values-grid .auth-cream-card h4 {
        font-size: 1rem !important;
        margin-bottom: 6px !important;
    }
    .core-values-grid .auth-cream-card p {
        font-size: 0.72rem !important;
        line-height: 1.4 !important;
    }
}

@media (max-width: 480px) {
    .core-values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

/* Feature Item Color Overrides for High Readability */
.feature-item h3 {
    font-size: 0.95rem;
    font-weight: 750;
    margin-bottom: 8px;
    color: #0c4d29 !important; /* Rich deep emerald */
    letter-spacing: 0.3px;
    line-height: 1.3;
}

.feature-item p {
    font-size: 0.8rem;
    color: #475569 !important; /* Slate gray body text */
    line-height: 1.4;
    font-weight: 500;
}
