/* ==========================================
   GLOBAL & RESET
========================================== */

:root {
    --primary-color: #f6b800;
    --primary-dark: #d9a000;
    --secondary-color: #1e1e1e;
    --accent: #ec4899;
    --dark: #1e1e1e;
    --light: #f8fafc;
    --gray: #64748b;
    --success: #10b981;

    --transition: all .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 */

.container{
    width:100%;
    max-width:1440px;
    margin:0 auto;
    padding-left:16px;
    padding-right:16px;
}

/* ==========================================
   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 - BRANDING SERVICES
========================================== */

.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    color: white;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(rgba(30,30,30,0.78), rgba(30,30,30,0.78)), 
                url('/assets/images/branding-hero-bg.jpg') center/cover no-repeat fixed;
    display: flex;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 920px;
    margin: 0 auto;
    padding: 0 16px;
}

.hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.8rem, 5.5vw, 5.6rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.4rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.65);
}

.highlight {
    color: var(--primary-color);
    background: linear-gradient(90deg, #f6b800, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.35rem;
    line-height: 1.65;
    max-width: 760px;
    margin: 0 auto 3rem;
    color: rgba(255,255,255,0.94);
}

.hero-btns {
    display: flex;
    flex-direction: column;
    gap: 1.3rem;
    justify-content: center;
    align-items: center;
}

.hero-btns .btn {
    min-width: 260px;
    padding: 1.15rem 2.8rem;
    font-size: 1.18rem;
}

/* Responsive */
@media (min-width: 768px) {
    .hero-btns {
        flex-direction: row;
        gap: 1.8rem;
    }
}

@media (min-width: 1024px) {
    .hero h1 { font-size: 5.6rem; }
    .hero-subtitle { font-size: 1.48rem; }
}

/* Subtle entrance animation */
.hero-content {
    opacity: 0;
    transform: translateY(40px);
    animation: heroFade 1.3s forwards 0.4s;
}

@keyframes heroFade {
    to { opacity: 1; transform: translateY(0); }
}

/* ==========================================
   OVERVIEW / WHY CHOOSE US
========================================== */

.overview {
    padding: 100px 0;
    background: #f9f9f9;
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3.5rem;
    align-items: center;
}

.overview-text h2 {
    font-size: 2.65rem;
    margin-bottom: 1.6rem;
    color: var(--secondary-color);
    line-height: 1.15;
    position: relative;
}

.overview-text h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 70px;
    height: 4px;
    background: var(--primary-color);
}

.overview-text p {
    font-size: 1.12rem;
    line-height: 1.75;
    color: var(--gray);
    margin-bottom: 1.8rem;
}

.overview-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    transition: transform 0.4s ease;
}

.overview-image:hover {
    transform: scale(1.04);
}

.overview-image 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: 4rem;
    }
    .overview-text { padding-right: 1.5rem; }
}

/* ==========================================
   SERVICES BREAKDOWN - FLOW DIAGRAM (Fixed)
========================================== */

.services-breakdown {
    padding: 100px 0;
    background: white;
}

.services-breakdown h2 {
    text-align: center;
    font-size: 2.65rem;
    margin-bottom: 4rem;
    color: var(--secondary-color);
    position: relative;
}

.services-breakdown h2::after {
    content: '';
    position: absolute;
    bottom: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
}

/* Process Flow Container */
.process-flow {
    max-width: 1150px;
    margin: 0 auto;
    position: relative;
}

/* ==========================================
   MOBILE - Vertical Timeline with ↓ Arrows (kept as you like it)
========================================== */
@media (max-width: 991px) {
    .process-flow {
        padding-left: 58px;
        position: relative;
    }

    /* Vertical connecting line */
    .process-flow::before {
        content: '';
        position: absolute;
        left: 29px;
        top: 45px;
        bottom: 40px;
        width: 4px;
        background: linear-gradient(to bottom, var(--primary-color), #f6b800);
        border-radius: 4px;
    }

    .process-step {
        display: flex;
        align-items: flex-start;
        gap: 1.8rem;
        margin-bottom: 2.8rem;
        position: relative;
    }

    .step-content {
        flex: 1;
        background: white;
        border-radius: 16px;
        padding: 2rem;
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        transition: all 0.35s ease;
    }

    .step-content:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 45px rgba(0,0,0,0.14);
    }

    .process-step .step-content .icon {
        width: 78px;
        height: 78px;
        background: var(--primary-color);
        color: #000;
        font-size: 2.8rem;
        border-radius: 50%;
        display: flex;
        align-items: center !important;
        justify-content: center !important;
        margin-bottom: 1.2rem;
        box-shadow: 0 8px 20px rgba(246,184,0,0.3);
    }

    .step-content h3 {
        font-size: 1.45rem;
        margin-bottom: 0.8rem;
        color: var(--secondary-color);
    }

    .step-content p {
        color: var(--gray);
        line-height: 1.65;
    }

    .process-arrow {
        display: block;
        text-align: center;
        font-size: 2.6rem;
        color: var(--primary-color);
        margin: 10px 0 10px 30px;
        opacity: 0.85;
    }

    .process-step:last-child .process-arrow {
        display: none;
    }
}

@media (max-width: 485px) {
    .process-flow {
        padding-left: 40px;
    }

    .process-flow::before {
        left: 20px;
    }

    .process-step {
        gap: 1.2rem;
    }

    .step-content {
        padding: 1.8rem;
    }

    .process-step .step-content .icon {
        width: 68px;
        height: 68px;
        font-size: 2.4rem;
        align-items: center !important;
        justify-content: center !important; 
    }

    .step-content h3 {
        font-size: 1.25rem;
    }

    .process-arrow {
        font-size: 2.2rem;
        margin-left: 20px;
    }
}

/* ==========================================
   DESKTOP - Clean Horizontal Flow Diagram / Chart
========================================== */
@media (min-width: 992px) {
    .process-flow {
        display: flex;
        align-items: center;
        gap: 1.2rem;
    }

    .process-step {
        flex: 1;
        min-width: 210px;
        background: white;
        border-radius: 16px;
        padding: 2.8rem 1.8rem;
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        text-align: center;
        transition: all 0.35s ease;
    }

    .process-step:hover {
        transform: translateY(-12px);
        box-shadow: 0 25px 50px rgba(0,0,0,0.14);
    }

    .step-content .icon {
        width: 88px;
        height: 88px;
        background: var(--primary-color);
        color: #000;
        font-size: 3rem;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.4rem;
        box-shadow: 0 10px 25px rgba(246,184,0,0.35);
    }

    .step-content h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        color: var(--secondary-color);
    }

    .step-content p {
        color: var(--gray);
        line-height: 1.65;
    }

    /* Horizontal connecting line + arrow */
    .process-arrow {
        flex-shrink: 0;
        /* width: 38px; */
        height: 4px;
        background: var(--primary-color);
        position: relative;
        top: 48px;
    }

    .process-arrow::after {
        content: '→';
        position: absolute;
        right: -9px;
        top: -13px;
        font-size: 2.4rem;
        color: var(--primary-color);
        background: white;
        padding-left: 4px;
    }

    /* Hide the last arrow */
    .process-step:last-child + .process-arrow {
        display: none;
    }
}

/* ==========================================
   SUCCESS METRICS
========================================== */
.results {
    padding: 100px 0;
    background: var(--light);
    text-align: center;
}

.results h2 {
    font-size: 2.6rem;
    margin-bottom: 3.5rem;
    color: var(--secondary-color);
    position: relative;
}

.results h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 4px;
    background: var(--primary-color);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.result-item {
    background: white;
    border-radius: 16px;
    padding: 2.5rem 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.35s ease;
}

.result-item:hover { transform: translateY(-12px); box-shadow: 0 20px 45px rgba(0,0,0,0.14); }

.result-icon { font-size: 3.2rem; color: var(--primary-color); margin-bottom: 1.2rem; }

.result-number { font-size: 3.6rem; font-weight: 800; color: var(--primary-color); margin-bottom: 0.6rem; }

/* ==========================================
   SUBSCRIPTION PLANS - BRANDING SERVICES
   (Premium, Fully Responsive & Visually Appealing)
========================================== */

.subscription-plans {
    padding: 110px 0;
    background: linear-gradient(135deg, #fffbeb 0%, #fefce8 100%);
    text-align: center;
}

.subscription-plans h2 {
    font-size: 2.65rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.plans-intro {
    font-size: 1.18rem;
    line-height: 1.7;
    color: var(--gray);
    max-width: 760px;
    margin: 0 auto 4rem;
}

/* Plans Grid */
.plans-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Individual Plan Card */
.plan-card {
    background: white;
    border-radius: 20px;
    padding: 2.8rem 2rem;
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.plan-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 55px rgba(0,0,0,0.16);
}

/* Popular Badge */
.popular {
    border: 3px solid var(--primary-color);
}

.popular-badge {
    position: absolute;
    top: 2px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: #000;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 6px 26px;
    border-radius: 50px;
    box-shadow: 0 6px 16px rgba(246,184,0,0.35);
    z-index: 2;
}

/* Plan Header */
.plan-header h3 {
    font-size: 1.85rem;
    margin-bottom: 0.6rem;
    color: var(--secondary-color);
}

.plan-price {
    font-size: 3.1rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.4rem;
}

.plan-price span {
    font-size: 1.1rem;
    color: var(--gray);
    font-weight: 400;
}

/* Features List */
.plan-features {
    list-style: none;
    margin: 2rem 0 2.5rem;
    text-align: left;
}

.plan-features li {
    font-size: 1.05rem;
    padding: 0.85rem 0;
    color: #333;
    position: relative;
    padding-left: 1.8rem;
}

.plan-features li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--success);
    position: absolute;
    left: 0;
    top: 0.85rem;
}

/* Button */
.plan-card .btn-primary {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    display: block;
}

/* Responsive */
@media (min-width: 768px) {
    .plans-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .plans-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ==========================================
   TESTIMONIALS - BRANDING SERVICES
   (Premium cards + responsive grid)
========================================== */

.testimonials {
    padding: 100px 0;
    background: #f9f9f9;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.65rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    position: relative;
}

.testimonials h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 4px;
    background: var(--primary-color);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

/* Individual Testimonial Card */
.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 2.8rem 2.2rem;
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
    transition: all 0.35s ease;
    text-align: center;
}

.testimonial-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 55px rgba(0,0,0,0.14);
}

/* Large yellow quote icon */
.testimonial-quote-icon {
    font-size: 3.4rem;
    color: var(--primary-color);
    opacity: 0.12;
    margin-bottom: 1.4rem;
}

/* Quote text */
.testimonial-card p {
    font-size: 1.12rem;
    line-height: 1.7;
    color: #444;
    font-style: italic;
    margin-bottom: 1.8rem;
}

/* Client name */
.testimonial-card cite {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--secondary-color);
    font-style: normal;
}

/* Responsive Grid */
@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 SECTION - BRANDING SERVICES
   (Smooth, Premium Accordion)
========================================== */

.faq {
    padding: 110px 0;
    background: #f9f9f9;
}

.faq h2 {
    text-align: center;
    font-size: 2.65rem;
    margin-bottom: 1.2rem;
    color: var(--secondary-color);
    position: relative;
}

.faq h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 4px;
    background: var(--primary-color);
}

.faq .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: 860px;
    margin: 0 auto;
}

/* FAQ Item Card */
.faq-item {
    margin-bottom: 1.1rem;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    background: white;
}

/* Question Button */
.faq-question {
    width: 100%;
    padding: 1.8rem 2.3rem;
    background: white;
    border: none;
    text-align: left;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8f8f8;
}

/* Chevron Icon */
.faq-toggle {
    font-size: 1.45rem;
    color: var(--primary-color);
    transition: transform 0.4s ease;
}

.faq-question[aria-expanded="true"] .faq-toggle {
    transform: rotate(180deg);
}

/* Answer Panel */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: #fafafa;
    padding: 0 2.3rem;
    transition: max-height 0.45s ease;
    color: var(--gray);
    line-height: 1.72;
}

/* Expanded State */
.faq-question[aria-expanded="true"] + .faq-answer {
    max-height: 500px; /* adjust if needed for longest answer */
    padding: 1.8rem 2.3rem 2.2rem;
}

/* Responsive */
@media (max-width: 576px) {
    .faq-question {
        padding: 1.5rem 1.8rem;
        font-size: 1.12rem;
    }
}

/* ==========================================
   CTA - CALL TO ACTION
========================================== */
.cta {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--secondary-color), #111);
    color: white;
    text-align: center;
}
.cta h2 {
    font-size: 2.6rem;
    margin-bottom: 1.8rem;
    color: var(--primary-color);
}
.cta p {
    font-size: 1.15rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2.5rem;
}

/* 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);
}
