/* ==========================================
   GLOBAL & RESET
========================================== */

:root {
    --primary-color: #f6b800;
    --secondary-color: #1e1e1e;
    --primary: #f6b800;
    --primary-dark: #d9a000;
    --secondary: #1e1e1e;
    --accent: #ec4899;
    --dark: #1e1e1e;
    --light: #f8fafc;
    --gray: #64748b;
    --success: #10b981;
    --transition: all 0.3s ease;
    --header-height: 68px;
    --header-height-lg: 84px;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 100%;
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container – content constraint only */
.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding-left: 16px;
    padding-right: 16px;
}

/* Prevent right-side gap on mobile */
@media (max-width: 767px) {
    .container {
        padding-left: 12px;
        padding-right: 12px;
    }
}

/* ==========================================
   HEADER
========================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 1000;
    background-color: var(--secondary-color);
    display: flex;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
    padding: 0 2rem;
}

/* Logo */
.logo img {
    width: 95px;
}

/* ==========================================
   DESKTOP NAV
========================================== */

.main-nav ul {
    display: flex;
    gap: 35px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav ul li {
    position: relative;
}

.main-nav a {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
}

.main-nav a:hover {
    color: #fff;
}

/* ==========================================
   DROPDOWN
========================================== */

.dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;

    width: max-content;
    min-width: 220px;

    flex-direction: column;

    background: var(--secondary-color);
    border-radius: 8px;
    padding: 10px 0;

    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    z-index: 1200;
}

/* Prevent hover gap flicker */
.dropdown::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 12px;
}

/* Show dropdown */
.dropdown:hover .dropdown-menu {
    display: flex;
}

/* Dropdown items */
.dropdown-menu li {
    width: 100%;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: white;
    white-space: nowrap;
}

.dropdown-menu a:hover {
    background: rgba(246,184,0,0.2);
}

/* CTA */
.header-actions .btn {
    padding: 10px 18px;
}

/* ==========================================
   MOBILE MENU
========================================== */

/* Hamburger */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1200;
}

.mobile-menu-toggle .bar {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: 0.3s ease;
}

/* Slide Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--secondary-color);
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 1100;
    padding: 2rem;
}

.mobile-menu.active {
    transform: translateX(0);
}

/* Mobile links */
.mobile-menu ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
    padding: 0;
    list-style: none;
    margin-bottom: 1rem;
}

.mobile-menu ul li {
    position: relative;
    margin-bottom: 0.5rem;
}

.mobile-menu a {
    color: var(--primary-color);
    font-size: 1.1rem;
    text-decoration: none;
    /* margin-bottom: 0.5rem; */
}

.mobile-menu a:hover {
    color: #f6b800 !important;
}

.mobile-menu ul li:hover > a {
    color: #f6b800 !important;
}   

/* Mobile dropdown */
.mobile-dropdown-menu {
    display: none !important;
    padding-left: 15px;
}

.mobile-dropdown-toggle[aria-expanded="true"] + .mobile-dropdown-menu {
    display: block !important;
}

/* FORCE dropdown to be hidden initially */
.dropdown-menu {
    display: none !important;
}

/* Only show on hover */
.dropdown:hover .dropdown-menu {
    display: flex !important;
}

.mobile-dropdown-menu li {
    margin-bottom: 0.7rem;
}

.mobile-dropdown-menu a:hover {
    color: var(--primary-color) !important;
}

/* Mobile Menu Button */
.mobile-menu .btn {
    background: var(--primary-color);
    color: #000;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
}

/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 1024px) {

    .main-nav {
        display: none;
    }

    .header-actions {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }
}

/* ==========================================
   BUTTONS (GLOBAL)
========================================== */

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:1rem 2.4rem;
    font-size:1.1rem;
    font-weight:600;
    border-radius:50px;
    text-decoration:none;
    transition:var(--transition);
    min-width:240px;
}

.btn-primary{
    background:var(--primary-color);
    color:#000;
    box-shadow:0 6px 18px rgba(246,184,0,.38);
}

.btn-primary:hover{
    background:white;
    color:var(--secondary-color);
    transform:translateY(-3px);
}

.btn-outline{
    border:2px solid var(--primary-color);
    color:var(--primary-color);
    background:transparent;
}

.btn-outline:hover{
    background:var(--primary-color);
    color:#000;
    transform:translateY(-3px);
}

/* ==========================================
   HERO – FIXED FULL-BLEED VERSION WITH BACKGROUND IMAGE
========================================== */

.hero {
    position: relative;
    width: 100%;
    min-height: 80vh;
    color: white;
    text-align: center;
    overflow: hidden;
    background: url('../images/hero-background-image.jpg') no-repeat center center/cover; /* Add your background image here */
    background-blend-mode: multiply; /* Blends with overlay for better readability */
}

/* Overlay for text contrast (adjust opacity as needed) */
.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.85) 0%, rgba(30, 30, 30, 0.75) 100%);
    z-index: 1;
}

/* Content on top */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 920px;
    margin: 0 auto;
    padding: 180px 16px 160px;
}

/* Title & subtitle */
#hero-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 3.1rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 0 3px 12px rgba(0,0,0,0.45);
}

.hero-title-highlight {
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.65;
    max-width: 760px;
    margin: 0 auto 3rem;
    color: rgba(255,255,255,0.93);
    font-weight: 400;
}

/* Buttons */
.hero-btns {
    display: flex;
    flex-direction: column;
    gap: 1.3rem;
    justify-content: center;
    align-items: center;
}

.hero-btns .btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 12px 28px;
    font-size: 1.15rem;
    border-radius: 50px;
    transition: all 0.25s ease;
    text-decoration: none;
}

.hero-btns .btn-outline:hover {
    background: white;
    color: var(--secondary-color);
}   

/* Responsive adjustments */
@media (max-width: 767px) {
    .hero {
        min-height: 90vh;
        padding: 120px 0 80px;
    }
    .hero-content {
        padding: 0 12px;
    }
    #hero-title {
        font-size: 2.6rem;
    }
    .hero-subtitle {
        font-size: 1.15rem;
    }
    .hero-btns {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (min-width: 768px) {
    .hero-btns {
        flex-direction: row;
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    #hero-title {
        font-size: 5rem;
    }
    .hero-content {
        max-width: 1100px;
    }
}


/* ==========================================
   OVERVIEW / INTRODUCTION
========================================== */

.overview {
    padding: 80px 0;
    background: linear-gradient(to bottom, #f9f9f9, #ffffff); /* Subtle gradient for depth */
    position: relative;
    overflow: hidden; /* Prevent media overflow */
    display: block !important; /* Force visibility if hidden */
    visibility: visible !important;
    opacity: 1 !important;
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
}

.overview-text {
    text-align: center;
}

.overview-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    position: relative;
}

.overview-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
}

.overview-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.overview-media {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.overview-media:hover {
    transform: scale(1.05);
}

.overview-media img {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive – side-by-side on desktop */
@media (min-width: 768px) {
    .overview-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        text-align: left;
    }

    .overview-text h2::after {
        left: 0;
        transform: none;
    }

    .overview-text {
        text-align: left;
    }
}


/* ==========================================
   SERVICE BREAKDOWN
========================================== */

.service-breakdown {
    padding: 80px 0;
    background: white;
    position: relative;
}

.service-breakdown h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--secondary-color);
    position: relative;
}

.service-breakdown h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
}

.breakdown-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

.breakdown-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.breakdown-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.breakdown-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.breakdown-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    text-align: center;
}

.breakdown-card ul {
    list-style: none;
}

.breakdown-card li {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--gray);
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
}

.breakdown-card li::before {
    content: '\f058'; /* Font Awesome check circle */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--success);
    position: absolute;
    left: 0;
    top: 0;
}

/* Responsive – 3-column on desktop */
@media (min-width: 768px) {
    .breakdown-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .breakdown-card h3 {
        text-align: left;
    }

    .breakdown-icon {
        justify-content: flex-start;
    }
}


/* ==========================================
   BENEFITS
========================================== */

.benefits {
    padding: 100px 0;
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
    position: relative;
}

.benefits h2 {
    text-align: center;
    font-size: 2.6rem;
    margin-bottom: 1.2rem;
    color: var(--secondary-color);
}

.benefits-intro {
    text-align: center;
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--gray);
    max-width: 720px;
    margin: 0 auto 4rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.benefit-card {
    background: white;
    border-radius: 16px;
    padding: 2.2rem 1.8rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    transition: all 0.32s ease;
    text-align: center;
    border: 1px solid rgba(246,184,0,0.08);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.12);
    border-color: var(--primary-color);
}

.benefit-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.2rem;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(246,184,0,0.08);
    border-radius: 50%;
    width: 70px;
    margin: 0 auto 1.2rem;
}

.benefit-card h3 {
    font-size: 1.45rem;
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
}

.benefit-card p {
    font-size: 1.05rem;
    color: var(--gray);
    line-height: 1.6;
}

.benefits-cta {
    text-align: center;
    margin-top: 4rem;
}

.benefits-cta .btn {
    min-width: 240px;
    margin: 0 0.8rem 1rem;
}

/* Responsive – 2–3 column layout */
@media (min-width: 640px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1200px) {
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 1100px;
        margin: 0 auto;
    }
}


/* ==========================================
   PRICING SECTION
========================================== */

.pricing-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #fffbeb 0%, #fefce8 100%);
    text-align: center;
}

.pricing-section h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.pricing-intro {
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--gray);
    max-width: 800px;
    margin: 0 auto 4rem;
}

.pricing-tiers {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.tier-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
}

.tier-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: #000;
    padding: 6px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(246,184,0,0.3);
}

.tier-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.tier-price {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.tier-price span {
    font-size: 1.1rem;
    color: var(--gray);
    font-weight: 400;
}

.tier-desc {
    color: var(--gray);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.tier-features {
    list-style: none;
    margin-bottom: 2rem;
}

.tier-features li {
    font-size: 1.05rem;
    color: #333;
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
}

.tier-features li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--success);
    position: absolute;
    left: 0;
    top: 0;
}

.tier-card .btn-primary {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    display: block;
}

.pricing-note {
    font-size: 0.95rem;
    color: var(--gray);
    margin-top: 3rem;
}

/* Responsive – multi-column on desktop */
@media (min-width: 768px) {
    .pricing-tiers {
        grid-template-columns: repeat(3, 1fr);
    }
}


/* ==========================================
   TESTIMONIALS
========================================== */

.testimonials {
    padding: 100px 0;
    background: #f9f9f9;
    position: relative;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.6rem;
    margin-bottom: 1.2rem;
    color: var(--secondary-color);
}

.testimonials-intro {
    text-align: center;
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--gray);
    max-width: 720px;
    margin: 0 auto 4rem;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.testimonial-quote-icon {
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.2;
    margin-bottom: 1rem;
}

.testimonial-card p {
    font-size: 1.1rem;
    line-height: 1.65;
    color: var(--gray);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
}

.testimonial-card cite {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--secondary-color);
    font-style: normal;
}

/* Responsive – 3-column on desktop */
@media (min-width: 768px) {
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .testimonial-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ==========================================
   FAQ
========================================== */

.faq {
    padding: 100px 0;
    background: white;
    position: relative;
}

.faq h2 {
    text-align: center;
    font-size: 2.6rem;
    margin-bottom: 1.2rem;
    color: var(--secondary-color);
}

.faq-intro {
    text-align: center;
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--gray);
    max-width: 720px;
    margin: 0 auto 4rem;
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: #f8fafc;
    border: none;
    text-align: left;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--secondary-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover,
.faq-question:focus {
    background: var(--light);
}

.faq-toggle {
    font-size: 1rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 1.5rem 2rem;
    background: white;
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--gray);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

/* .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
} */

.faq-question[aria-expanded="true"] + .faq-answer {
    max-height: 500px;   /* enough for all answers */
}

/* Responsive – wider on desktop */
@media (min-width: 768px) {
    .faq-question {
        font-size: 1.35rem;
    }

    .faq-answer {
        font-size: 1.1rem;
    }
}



/* CTA Section – Visually Appealing Design */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-inner {
    max-width: 800px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    position: relative;
    color: white;
}

.cta h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: white;
    opacity: 0.8;
}

.cta p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    color: rgba(255,255,255,0.9);
}

.cta-form {
    display: flex;
    justify-content: center;
}

.cta .btn-primary {
    background: white;
    color: var(--secondary-color);
    padding: 1.2rem 3rem;
    font-size: 1.15rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.cta .btn-primary:hover {
    background: var(--primary-color);
    color: #000;
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .cta {
        padding: 80px 0;
    }
    .cta h2 {
        font-size: 2.2rem;
    }
    .cta p {
        font-size: 1.1rem;
    }
}


/* Footer */
.footer {
  background-color: #111;
  color: #ccc;
  padding: 40px 20px 30px;
  font-size: 15px;
  line-height: 1.6;
  width: 100%;
  /* overflow: hidden; */
}

.footer .footer-container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 15px;
  width: 100%;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  width: 100%;
  flex-wrap: wrap;
  overflow: hidden;
}

.footer-logo img {
  margin-bottom: 15px;
  width: 100%;
  max-width: 180px;
  height: auto;
  border-radius: 10px;
}

.footer-info p {
  margin-bottom: 20px;
}

.social-links a {
  color: #ccc;
  font-size: 18px;
  margin-right: 15px;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #f6b800;
}

.footer-links h4,
.footer-contact h4 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 12px;
  font-weight: bold;
}

.footer-links ul,
.footer-contact ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li,
.footer-contact ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: #f6b800;
}

.footer-contact ul li i {
  margin-right: 10px;
  color: #f6b800;
}

.footer-bottom {
  background-color: #111;
  /* border-top: 1px solid #333; */
  width: 100%;
  /* margin-top: 40px; */
  /* padding-top: 20px; */
  text-align: center;
  color: #f6b800;
  font-size: 14px;
  display: block;
  grid-column: 1 / -1; /* full width if inside grid accidentally */
  clear: both; /* avoids float or flex collision */
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr; /* stacks all blocks */
    gap: 20px;
  }

  .footer-logo img {
    width: 140px;
  }

  .footer-bottom {
    font-size: 12px;
    padding: 16px 0 8px;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 20px 10px; /* Reduced padding for smaller screens */
  }
}

/* Back to Top Button */
#back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #f6b800;
  color: #000;
  border: none;
  border-radius: 50%;
  padding: 12px 14px;
  font-size: 18px;
  cursor: pointer;
  z-index: 1000;
  display: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

#back-to-top:hover {
  background-color: #fff;
  transform: scale(1.1);
}

/* ── FORCE SUBSCRIPTION SECTION TO STAY BELOW HERO ── */
/* This stops it from climbing up or overlapping */

#subscription {
    position: relative !important;          /* contain children */
    z-index: 1 !important;                  /* low z-index so it doesn't cover hero */
    margin-top: 120px !important;           /* strong positive separation from hero */
    padding-top: 60px !important;
    clear: both !important;                 /* break any float issues */
}

/* Prevent any part of subscription from having negative top margin */
#subscription,
#subscription *,
.tabs,
.plans,
.plan-card,
.plan-header,
.plan-features,
.plan-cta {
    margin-top: 0 !important;
    padding-top: 0 !important;              /* reset any rogue padding */
}

/* Ensure plans grid doesn't collapse upward */
.plans {
    margin-top: 40px !important;
    padding-top: 20px !important;
}

/* Extra buffer after hero to guarantee separation */
.hero {
    margin-bottom: 140px !important;        /* increased buffer */
}