@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&family=Lato:wght@300;400;700;900&family=Covered+By+Your+Grace&display=swap');

:root {
    /* Brand Colors - Dark Luxury */
    --primary-green: #00c878;
    --secondary-green: #008f55;
    --accent-gold: #d4af37;
    --accent-red: #ff5252;
    --accent-blue: #60a5fa;
    --mint-green: #6ee7b7;
    --deep-green: #0a170e;
    --sand: #122116;

    /* Functional Colors - High Contrast Dark Theme */
    --bg-light: #0d1710;
    --bg-dark: #060a07;
    --text-main: #f3f4f6;
    --text-muted: #9ca3af;
    --white: #111c14;

    /* Effects */
    --glass-bg: rgba(17, 28, 20, 0.88);
    --glass-border: rgba(212, 175, 55, 0.3);
    --shadow-soft: 0 8px 32px 0 rgba(0, 0, 0, 0.6);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', 'Lato', sans-serif;
    color: #f3f4f6;
    background-color: #060a07;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #ffffff;
}

p,
li,
td,
span {
    color: #e5e7eb;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
}

/* Glassmorphism Utility */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-soft);
}

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

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

.animate-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 100px 0;
}

/* Typography Utilities */
.text-brand {
    color: var(--primary-green);
}

.text-accent-red {
    color: var(--accent-red);
}

.text-accent-blue {
    color: var(--accent-blue);
}

.text-white {
    color: var(--white);
}

.font-grace {
    font-family: 'Covered By Your Grace', cursive;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--primary-green);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 167, 106, 0.3);
}

.btn-primary:hover {
    background: var(--secondary-green);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 167, 106, 0.4);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: #ffffff !important;
    font-weight: 700;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.35);
    border-color: #ffffff;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0.5rem 0;
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img,
.logo-img,
.nav-logo img {
    height: 48px !important;
    max-height: 48px !important;
    width: auto !important;
    object-fit: contain;
    transition: var(--transition);
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 1.8rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 600;
    font-size: 0.95rem;
    white-space: nowrap;
    transition: var(--transition);
}

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

.nav-links a.btn-primary,
.nav-links a.btn-primary:hover,
.nav-links a.btn-primary.active {
    color: #ffffff !important;
}

/* Nav Dropdown Dark Mode */
.nav-item-dropdown {
    position: relative;
}

.nav-item-dropdown>a {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.nav-item-dropdown>a i {
    font-size: 0.75rem;
    transition: var(--transition);
}

.nav-item-dropdown:hover>a i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: -10px;
    background: #0b140d;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 14px;
    padding: 0.5rem 0;
    min-width: 230px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
}

.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.7rem 1.25rem;
    color: #e2ede5;
    font-size: 0.9rem;
    font-weight: 500;
}

.dropdown-menu a:hover {
    background: rgba(0, 200, 120, 0.15);
    color: var(--primary-green);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-main);
    cursor: pointer;
}

.btn-sm {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    background: url('../img/intro-bg.jpg') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.hero-logo-wrapper {
    margin-bottom: 2.2rem;
}

.hero-logo {
    max-width: 480px;
    width: 90%;
    filter: drop-shadow(0 6px 15px rgba(0, 0, 0, 0.7));
}

.hero-title {
    font-size: 2.1rem;
    line-height: 1.25;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: 3.6rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--mint-green);
    text-shadow: 0 0 20px rgba(110, 231, 183, 0.4);
    letter-spacing: 0.5px;
}

.hero-badge {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    margin-bottom: 2.5rem;
    background: rgba(0, 200, 120, 0.25);
    border: 1px solid var(--primary-green);
    backdrop-filter: blur(8px);
}

.hero-badge p {
    font-weight: 700;
    letter-spacing: 1px;
    color: #ffffff !important;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.btn-icon {
    width: 20px;
    vertical-align: middle;
    margin-right: 8px;
}

.text-mint {
    color: #6ee7b7 !important;
    text-shadow: 0 0 12px rgba(110, 231, 183, 0.3);
}

.text-gold {
    color: #d4af37 !important;
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

.text-accent-red {
    color: #ff4d4d !important;
}

.text-accent-blue {
    color: #60a5fa !important;
}

.heavy {
    font-weight: 800 !important;
}

/* Content Sections */
.special-msg {
    background: #0d1a10;
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.25);
    border-bottom: 1px solid rgba(212, 175, 55, 0.25);
}

.special-msg h1 {
    font-size: 2.22rem;
    color: #ffffff;
    margin: 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.content-grid.reverse {
    direction: rtl;
}

.content-grid.reverse .content-text {
    direction: ltr;
}

.content-grid.reverse .content-image {
    direction: ltr;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.lead {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.heavy {
    font-weight: 800;
}

.cta-box {
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
    border-left: 5px solid var(--primary-green);
}

.price-range {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.img-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.img-responsive {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

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

.rounded {
    border-radius: 20px;
}

/* Package Grid */
.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.package-card {
    padding: 3rem 2rem;
    border-radius: 20px;
    transition: var(--transition);
}

.package-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-green);
}

.package-card .price {
    font-size: 3rem;
    font-weight: 800;
    margin: 1rem 0;
}

.package-features {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
    text-align: left !important;
}

.package-features li {
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    text-align: left !important;
    color: #d1d5db;
}

.feature-checklist {
    list-style: none !important;
    padding-left: 0 !important;
    margin: 1.5rem 0 !important;
    text-align: left !important;
}

.feature-checklist li {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 0.85rem;
    display: flex !important;
    align-items: flex-start !important;
    gap: 0.8rem;
    text-align: left !important;
    color: #e5e7eb;
}

.feature-checklist li i {
    color: var(--primary-green);
    font-size: 1.2rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.package-features li::before {
    content: "✓";
    color: var(--primary-green);
    margin-right: 10px;
    font-weight: bold;
}

/* 4-Across Gallery Grid for About Page */
.gallery-grid-4across {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-grid-4across img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
}

.gallery-grid-4across img:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: var(--primary-green);
    box-shadow: 0 15px 30px rgba(0, 200, 120, 0.3);
}

@media (max-width: 992px) {
    .gallery-grid-4across {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.25rem;
    }
}

@media (max-width: 576px) {
    .gallery-grid-4across {
        grid-template-columns: 1fr !important;
    }
}

/* Banner CTA */
.banner-cta {
    position: relative;
    padding: 6rem 0;
    background: url('../img/banner-bg.jpg') no-repeat center center;
    background-size: cover;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    overflow: hidden;
}

.banner-cta .banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(6, 12, 8, 0.85) 0%, rgba(4, 8, 5, 0.88) 100%);
    pointer-events: none;
}

.banner-cta .container {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.banner-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    border-radius: 30px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: #d4af37;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.banner-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-shadow: 0 4px 15px rgba(0,0,0,0.8);
}

.banner-subtext {
    font-size: 1.2rem;
    color: #d1d5db;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

.banner-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.btn-lg {
    padding: 1.1rem 2.5rem;
    font-size: 1.05rem;
    font-weight: 700;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: var(--white);
    padding: 4rem 0 2rem;
    text-align: center;
}

/* Bottom CTA Buttons Helper */
.bottom-cta-btns {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 3.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    opacity: 0.9;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--primary-green);
}

.copyright {
    font-size: 0.85rem;
    color: #9ca3af;
    opacity: 0.8;
}

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

/* Sub-Hero */
.sub-hero {
    position: relative;
    padding: 100px 0 40px;
    background: url('../img/banner-bg.jpg') no-repeat center center;
    background-size: cover;
    text-align: center;
    color: #ffffff;
}

.signup-section,
.contact-section {
    padding: 1.5rem 0 4rem;
}

.sub-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 10, 7, 0.75);
}

.sub-hero .hero-title {
    position: relative;
    z-index: 2;
    font-size: 3.2rem;
    font-weight: 800;
    color: #ffffff !important;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.9);
    margin: 0;
}

.sub-hero .hero-title .text-mint {
    color: #6ee7b7 !important;
    text-shadow: 0 0 20px rgba(110, 231, 183, 0.5);
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.gallery-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-img:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-soft);
}

/* Sidebar */
.signupbox {
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid var(--primary-green);
}

.signupbox h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.btn-block {
    display: block;
    width: 100%;
    margin: 0.5rem 0;
}

/* Package Enhancements */
.package-features-list {
    list-style: none;
    margin-top: 1.5rem;
}

.package-features-list li {
    padding: 0.75rem 0;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.package-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--text-main);
    color: var(--white);
    padding: 0.4rem 1.5rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.package-card.highlight {
    border: 2px solid var(--accent-blue);
    transform: scale(1.05);
}

.package-card.gold {
    border: 2px solid #ffd700;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(255, 255, 255, 0.85) 100%);
}

.package-stats {
    margin: 1.5rem 0;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 10px;
}

.package-stats .stat {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.package-stats .stat span {
    font-weight: 400;
    color: var(--text-muted);
}

.traffic-bonus {
    font-size: 0.9rem;
    margin-bottom: 2rem;
    color: var(--secondary-green);
    line-height: 1.4;
}

/* FAQ Accordion */
.faq-container {
    margin-top: 2rem;
}

.faq-item {
    margin-bottom: 1rem;
    border-radius: 15px;
    overflow: hidden;
    background: var(--bg-light);
    transition: var(--transition);
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: var(--white);
    border: 1px solid var(--bg-light);
    transition: var(--transition);
}

.faq-question h3 {
    font-size: 1.1rem;
    margin: 0;
    color: var(--text-main);
}

.faq-question i {
    transition: var(--transition);
}

.faq-item.active .faq-question {
    background: var(--primary-green);
    color: var(--white);
}

.faq-item.active .faq-question h3 {
    color: var(--white);
}

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

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0, 1, 0, 1);
    background: var(--white);
}

.faq-item.active .faq-answer {
    padding: 1.5rem 2rem;
    max-height: 1000px;
}

.faq-answer p {
    margin-bottom: 1rem;
}

/* Terms Section */
.terms-item {
    margin-bottom: 3rem;
}

.terms-item h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-green);
}

/* Forms */
.form-container {
    max-width: 860px;
    margin: 1rem auto 2rem;
    padding: 2.5rem;
    border-radius: 20px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 1.5rem;
}

.form-grid .full-width {
    grid-column: 1 / -1;
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-main);
}

.form-control {
    width: 100%;
    padding: 0.8rem 1.2rem;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(0, 167, 106, 0.1);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.2em;
}

.radio-group {
    display: flex;
    gap: 2rem;
    margin-top: 0.5rem;
}

.radio-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.radio-item input[type="radio"] {
    width: 1.2rem;
    height: 1.2rem;
    accent-color: var(--primary-green);
}

.form-confirm-msg {
    padding: 2rem;
    border-radius: 15px;
    background: rgba(0, 167, 106, 0.1);
    color: var(--secondary-green);
    border: 1px solid var(--primary-green);
    text-align: center;
    font-weight: 600;
    margin-bottom: 2rem;
}

/* Testimonials */
.testimonials-section {
    padding: 1.5rem 0 3rem;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    padding: 1rem 0;
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

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

.quote-icon {
    color: var(--mint-green);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    opacity: 0.5;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-main);
    font-style: italic;
    margin-bottom: 2rem;
}

.testimonial-author h4 {
    color: var(--primary-green);
    margin-bottom: 0.2rem;
}

/* Modern Table */
.table-container {
    padding: 2rem 1.5rem;
    border-radius: 20px;
    overflow: hidden;
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-top: 1rem;
    padding-bottom: 0.5rem;
}

.table-responsive::-webkit-scrollbar {
    height: 8px;
}

.table-responsive::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

.table-responsive::-webkit-scrollbar-thumb {
    background: var(--primary-green);
    border-radius: 10px;
}

.modern-table {
    width: 100%;
    min-width: 820px;
    border-collapse: collapse;
}

.scroll-hint {
    display: none;
}

@media (max-width: 768px) {
    .scroll-hint {
        display: block;
        text-align: center;
        font-size: 0.85rem;
        color: #6ee7b7;
        padding: 0.6rem 1rem;
        background: rgba(110, 231, 183, 0.1);
        border: 1px solid rgba(110, 231, 183, 0.3);
        border-radius: 20px;
        margin-bottom: 1rem;
    }
}

.modern-table th {
    background: var(--bg-light);
    color: var(--primary-green);
    text-align: left;
    padding: 1.2rem 1rem;
    font-weight: 700;
}

.modern-table td {
    padding: 1.2rem 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--text-main);
}

/* News Page */
.news-links-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.news-item {
    padding: 1.2rem 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
}

.news-item:hover {
    transform: translateX(6px);
}

.news-item i {
    font-size: 1.2rem;
    min-width: 24px;
}

.news-item a {
    color: var(--text-main);
    font-weight: 600;
    text-decoration: none;
    font-size: 1.05rem;
}

.news-item a:hover {
    color: var(--primary-green);
}


.content-b {
    padding-top: 0px;
}

/* ==========================================================================
   Mobile & Tablet Responsive Adjustments
   ========================================================================== */
@media (max-width: 992px) {
    .nav-toggle {
        display: block !important;
        font-size: 1.6rem;
        color: #ffffff !important;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0.5rem;
        z-index: 1002;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 340px;
        height: 100vh;
        background: rgba(11, 20, 13, 0.98);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border-left: 1px solid rgba(212, 175, 55, 0.3);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.8);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 6rem 2rem 2rem;
        gap: 1rem;
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        overflow-y: auto;
    }

    .nav-links.active {
        right: 0 !important;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        font-size: 1.1rem;
        width: 100%;
        display: block;
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .nav-item-dropdown {
        width: 100%;
    }

    .nav-item-dropdown > a {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .dropdown-menu {
        position: static !important;
        opacity: 0 !important;
        visibility: hidden !important;
        display: none !important;
        background: rgba(18, 32, 22, 0.95) !important;
        border: 1px solid rgba(212, 175, 55, 0.4) !important;
        box-shadow: none !important;
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
        padding: 0.5rem !important;
        border-radius: 12px !important;
        width: 100% !important;
    }

    .nav-item-dropdown.active .dropdown-menu {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
    }

    .dropdown-menu a {
        display: flex !important;
        align-items: center !important;
        gap: 0.75rem !important;
        padding: 0.75rem 1rem !important;
        color: #ffffff !important;
        font-size: 1rem !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    }

    .dropdown-menu a:last-child {
        border-bottom: none !important;
    }

    .dropdown-menu a i {
        color: var(--primary-green) !important;
        font-size: 1.1rem !important;
    }

    .content-grid {
        grid-template-columns: 1fr !important;
        gap: 2.5rem !important;
        text-align: center;
    }

    .feature-checklist,
    .feature-checklist li,
    .content-text .feature-checklist,
    .package-features,
    .package-features li {
        text-align: left !important;
        align-items: flex-start !important;
    }
    
    .content-grid.reverse {
        direction: ltr !important;
    }

    .content-grid.reverse .content-text {
        direction: ltr !important;
        text-align: center !important;
    }

    .content-grid .content-text {
        text-align: center !important;
    }

    .content-grid .content-image {
        max-width: 100% !important;
        margin: 0 auto !important;
        width: 100% !important;
    }

    .content-grid.reverse .content-image {
        margin-top: 1rem;
    }

    .banner-title {
        font-size: 2.2rem !important;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 100px;
        min-height: 600px;
    }

    .hero-logo {
        max-width: 320px !important;
    }

    .hero-title {
        font-size: 1.5rem !important;
        line-height: 1.3 !important;
    }

    .hero-subtitle {
        font-size: 2.2rem !important;
        line-height: 1.2 !important;
    }

    .hero-badge p {
        font-size: 0.9rem !important;
    }

    .hero-btns, .banner-btns {
        flex-direction: column !important;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    .btn-lg, .hero-btns .btn {
        width: 100% !important;
        text-align: center !important;
    }

    .sub-hero .hero-title {
        font-size: 2.2rem !important;
    }

    .form-container {
        padding: 1.5rem !important;
    }

    .section-title {
        font-size: 1.8rem !important;
    }
}