/* ============================================
   LANDING PAGE STYLES
   ============================================ */

/* Landing Page Container */
.landing-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    max-width: 100%;
}

.landing-main {
    flex: 1;
    padding-top: 0px; /* Space for fixed navbar */
    overflow-x: hidden;
}

/* ============================================
   HEADER & NAVBAR
   ============================================ */
/* Default state - transparent navbar */
.landing-header .navbar {
    background: transparent !important;
    background-color: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-bottom: 1px solid transparent !important;
    padding: 0.5em 0 !important;
    transition: all 0.4s ease !important;
    box-shadow: none !important;
}

/* Scrolled state - dark background */
.landing-header .navbar.scrolled,
.landing-page .landing-header .navbar.scrolled {
    background: rgba(15, 20, 25, 0.95) !important;
    background-color: rgba(var(--bs-dark-rgb)) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border-bottom: 1px solid rgba(29, 209, 161, 0.1) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
    padding: 0.5em 0 !important;
}

/* Nav links (desktop) */
.landing-nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 500;
    font-size: 0.925rem;
    padding: 0.5rem 0.75rem !important;
    border-radius: 6px;
    transition: all 0.25s ease;
    letter-spacing: 0.2px;
    white-space: nowrap;
}

.landing-nav-link:hover {
    color: #1dd1a1 !important;
    background: rgba(29, 209, 161, 0.1);
}

  .landing-nav-link.active {
    color: #1dd1a1 !important;
  }

/* ============================================
   MOBILE HAMBURGER BUTTON
   ============================================ */
.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
    padding: 0;
    flex-shrink: 0;
}

.mobile-menu-btn:hover {
    background: rgba(29, 209, 161, 0.15);
    border-color: rgba(29, 209, 161, 0.4);
}

.hamburger-line {
    display: block;
    width: 20px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
    transform-origin: center;
}

/* Animated X state */
.mobile-menu-btn.is-open .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.is-open .hamburger-line:nth-child(2) {
    opacity: 0;
    width: 0;
}

.mobile-menu-btn.is-open .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-header-btn {
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
}

/* ============================================
   MOBILE FULLSCREEN DRAWER
   ============================================ */

/* Backdrop overlay */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1040;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

.mobile-nav-overlay.is-open {
    display: block;
    opacity: 1;
}

/* Drawer panel — slides in from the right */
.mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(85vw, 340px);
    background: #0f1419;
    z-index: 1050;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.5);
}

.mobile-nav-drawer.is-open {
    transform: translateX(0);
}

/* Drawer header */
.mobile-nav-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
}

.mobile-nav-logo {
    height: 36px;
    width: auto;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
}

.mobile-nav-close {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.mobile-nav-close:hover {
    background: rgba(29, 209, 161, 0.15);
    border-color: rgba(29, 209, 161, 0.4);
    color: #1dd1a1;
}

/* Drawer nav items */
.mobile-nav-body {
    flex: 1;
    overflow-y: auto;
    padding: 0.75rem 0;
}

.mobile-nav-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.mobile-nav-item:hover,
.mobile-nav-item:active {
    background: rgba(29, 209, 161, 0.08);
    color: #1dd1a1;
    border-left-color: #1dd1a1;
    text-decoration: none;
}

.mobile-nav-icon {
    width: 40px;
    height: 40px;
    background: rgba(29, 209, 161, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    color: #1dd1a1;
    flex-shrink: 0;
    transition: background 0.2s ease;
}

.mobile-nav-item:hover .mobile-nav-icon {
    background: rgba(29, 209, 161, 0.2);
}

.mobile-nav-label {
    flex: 1;
    letter-spacing: 0.2px;
}

.mobile-nav-arrow {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.3);
    transition: transform 0.2s ease, color 0.2s ease;
}

.mobile-nav-item:hover .mobile-nav-arrow {
    transform: translateX(3px);
    color: #1dd1a1;
}

/* Drawer footer */
.mobile-nav-footer {
    padding: 1.25rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
    background: rgba(0, 0, 0, 0.2);
}

/* Prevent body scroll when drawer is open */
body.drawer-open {
    overflow: hidden;
}

.landing-header .navbar-brand {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.landing-header .navbar-brand:hover {
    transform: scale(1.05);
}

/* Logo styling for transparent/scrolled states */
.landing-header .navbar-brand img {
    height: 45px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
    transition: filter 0.4s ease;
}

.landing-header .navbar:not(.scrolled) .navbar-brand img {
    filter: drop-shadow(0 3px 12px rgba(0, 0, 0, 0.6));
}

.landing-header .navbar.scrolled .navbar-brand img {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Button styling (desktop navbar) */
.landing-header .btn {
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.landing-header .btn-success {
    background: linear-gradient(135deg, #1dd1a1 0%, #16a085 100%) !important;
    border: none !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(29, 209, 161, 0.4);
}

.landing-header .btn-success:hover {
    background: linear-gradient(135deg, #16a085 0%, #148f72 100%) !important;
    box-shadow: 0 6px 20px rgba(29, 209, 161, 0.6);
    transform: translateY(-2px);
}

/* Outline button - transparent navbar */
.landing-header .navbar:not(.scrolled) .btn-outline-success {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: rgba(255, 255, 255, 0.9) !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.landing-header .navbar:not(.scrolled) .btn-outline-success:hover {
    background: white !important;
    color: #16a085 !important;
    border-color: white !important;
}

/* Outline button - scrolled navbar */
.landing-header .navbar.scrolled .btn-outline-success {
    background: transparent !important;
    border: 2px solid #1dd1a1 !important;
    color: #1dd1a1 !important;
}

.landing-header .navbar.scrolled .btn-outline-success:hover {
    background: #1dd1a1 !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(29, 209, 161, 0.3);
    transform: translateY(-2px);
}

/* ============================================
   FORMAT SETUP SLIDER
   ============================================ */
.format-setup-section {
    background: #f4fbf9;
}

.format-slider-wrapper {
    border: 1px solid rgba(29, 209, 161, 0.15);
}

/* ?? Image column ?? */
.format-slider-img-col {
    background: #0f1419;
    min-height: 500px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.format-slider-img {
    position: absolute;
    width: 500px;
    height: 500px;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.55s ease;
    pointer-events: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.format-slider-img.is-active {
    opacity: 1;
}

.format-slider-counter {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(15, 20, 25, 0.72);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: rgba(255,255,255,0.85);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
    border: 1px solid rgba(29, 209, 161, 0.3);
    letter-spacing: 0.5px;
    z-index: 2;
}

/* ?? Content column ?? */
.format-slider-content-col {
    background: #fff;
    padding: 2rem 2rem 1.75rem;
}

/* ?? Highlight list — all items always visible ?? */
.format-highlight-list {
    display: flex;
    flex-direction: column;
}

.format-highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    background: transparent;
    border: none;
    border-left: 3px solid transparent;
    padding: 0.85rem 0.75rem 0.85rem 1rem;
    text-align: left;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.format-highlight-item + .format-highlight-item {
    border-top: 1px solid rgba(0,0,0,0.05);
}

.format-highlight-item:hover {
    background: #f4fbf9;
    border-left-color: rgba(29, 209, 161, 0.4);
}

.format-highlight-item.is-active {
    background: linear-gradient(90deg, #edfaf6 0%, #f8fefc 100%);
    border-left-color: #1dd1a1;
}

/* Icon */
.format-highlight-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    background: rgba(29, 209, 161, 0.1);
    color: #16a085;
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.format-highlight-item.is-active .format-highlight-icon {
    background: linear-gradient(135deg, #1dd1a1 0%, #16a085 100%);
    color: #fff;
    box-shadow: 0 4px 12px rgba(29, 209, 161, 0.35);
}

/* Text + subscription wrapper */
.format-highlight-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
}

/* Text */
.format-highlight-text {
    font-size: 0.925rem;
    color: #4a5568;
    font-weight: 400;
    line-height: 1.45;
    transition: color 0.2s ease;
}

.format-highlight-item.is-active .format-highlight-text {
    color: #1a2a2a;
    font-weight: 600;
}

/* Subscription */
.format-highlight-subscription {
    font-size: 0.8rem;
    color: #9aa5b4;
    line-height: 1.4;
    font-weight: 400;
    transition: color 0.2s ease;
    display: block;
}

.format-highlight-item.is-active .format-highlight-subscription {
    color: #5a7a72;
}

/* Slide subscription */
.format-slide-subscription {
    font-size: 0.875rem;
    color: #9aa5b4;
    line-height: 1.55;
    margin-top: 0.5rem;
    margin-bottom: 0;
}

/* Arrow indicator */
.format-highlight-arrow {
    font-size: 0.7rem;
    color: transparent;
    transition: color 0.2s ease, transform 0.2s ease;
    flex-shrink: 0;
}

.format-highlight-item.is-active .format-highlight-arrow,
.format-highlight-item:hover .format-highlight-arrow {
    color: #1dd1a1;
    transform: translateX(2px);
}

/* ?? Progress bar ?? */
.format-slider-progress-wrap {
    padding: 1.25rem 0 0;
    border-top: 1px solid rgba(0,0,0,0.06);
    margin-top: 0.75rem;
}

.format-slider-progress {
    height: 3px;
    background: rgba(29, 209, 161, 0.15);
    border-radius: 99px;
    overflow: hidden;
}

.format-slider-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #1dd1a1, #16a085);
    border-radius: 99px;
}

.format-slider-progress-bar.is-running {
    animation: sliderProgress linear forwards;
}

@keyframes sliderProgress {
    from { width: 0%; }
    to   { width: 100%; }
}

/* CTA row */
.format-slider-cta {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(0,0,0,0.06);
}

/* ?? Responsive ?? */
@media (max-width: 991px) {
    .format-slider-img-col {
        min-height: 320px;
        position: relative;
    }

    .format-slider-img {
        width: min(500px, 90%);
        height: min(500px, 90%);
    }

    .format-slider-content-col {
        padding: 1.5rem 1.5rem 1.25rem;
    }
}

@media (max-width: 576px) {
    .format-slider-content-col {
        padding: 1.25rem 1rem 1rem;
    }

    .format-highlight-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
        font-size: 0.82rem;
    }

    .format-highlight-text {
        font-size: 0.875rem;
    }

    .format-slider-cta .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   FORMAT DETAIL PAGE
   ============================================ */
.format-detail-hero {
    position: relative;
    background: linear-gradient(135deg, #0f1419 0%, #1a2a2a 50%, #0d1f1a 100%);
    padding: 6rem 0 4rem;
    overflow: hidden;
}

.format-detail-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(29, 209, 161, 0.12) 0%, transparent 65%);
    pointer-events: none;
}

.format-detail-hero-overlay {
    display: none;
}

.format-breadcrumb {
    --bs-breadcrumb-divider-color: rgba(255,255,255,0.4);
    --bs-breadcrumb-item-active-color: white;
}

.format-hero-icon-circle {
    width: 180px;
    height: 180px;
    background: rgba(29, 209, 161, 0.15);
    border: 2px solid rgba(29, 209, 161, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
}

/* How it works steps */
.format-step-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.format-step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(29, 209, 161, 0.15);
}

.format-step-badge {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Format options cards */
.format-option-card {
    background: white;
    transition: all 0.3s ease;
}

.format-option-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(29, 209, 161, 0.12) !important;
}

.format-option-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #e8f8f5 0%, #d1f2eb 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* CTA section */
.format-detail-cta {
    background: linear-gradient(135deg, #1dd1a1 0%, #16a085 100%);
}

.text-white-75 {
    color: rgba(255, 255, 255, 0.8) !important;
}


/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    position: relative;
    min-height: 600px;
    margin-bottom: 0;
    overflow: hidden;
}

.hero-image {
    height: 600px;
    object-fit: cover;
    filter: brightness(0.6);
    width: 100%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 182, 148, 0.85) 0%, rgba(15, 20, 25, 0.85) 100%);
    z-index: 1;
}

.carousel-caption-custom {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 100%;
    max-width: 100%;
    padding: 2rem;
    overflow: hidden;
}


.hero-logo-img {
    max-width: 350px;
    height: auto;
    margin: 0 auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.hero-logo-block i {
    display: block;
}

.hero-logo-block h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.hero-logo-block p {
    font-size: 0.95rem;
}

.hero-content-block h1 {
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
    font-size: 2.75rem;
    line-height: 1.2;
    word-wrap: break-word;
}

.hero-content-block p {
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
    font-size: 1.15rem;
    max-width: 600px;
    word-wrap: break-word;
}

.hero-content-block .btn {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.hero-content-block .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: rgba(0, 182, 148, 0.8);
    border-radius: 50%;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
}

.carousel-indicators button.active {
    background-color: var(--ct-primary);
}

/* ============================================
   TOURNAMENT TYPES CARDS
   ============================================ */
.tournament-type-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.tournament-type-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 182, 148, 0.2) !important;
}

.tournament-type-card .icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e8f8f5 0%, #d1f2eb 100%);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.tournament-type-card:hover .icon-wrapper {
    background: linear-gradient(135deg, var(--ct-primary) 0%, #16a085 100%);
}

.tournament-type-card:hover .icon-wrapper i {
    color: white !important;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.feature-card {
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */
.how-it-works-step {
    position: relative;
    padding: 2rem 1rem;
    transition: all 0.3s ease;
}

.how-it-works-step:hover {
    transform: translateY(-10px);
}

.step-number {
    transition: transform 0.3s ease;
}

.how-it-works-step:hover .step-number {
    transform: scale(1.1);
}

.step-number .badge {
    width: 80px;
    height: 80px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 8px rgba(0, 182, 148, 0.3);
}

/* ============================================
   STATS CARDS
   ============================================ */
.stat-card {
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 182, 148, 0.2) !important;
}

.stat-card h3 {
    font-size: 2.5rem;
}

/* ============================================
   ABOUT IMAGE
   ============================================ */
.about-image-wrapper {
    position: relative;
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--ct-primary);
    border-radius: 8px;
    z-index: -1;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, var(--ct-primary) 0%, #16a085 100%);
    box-shadow: 0 -4px 20px rgba(0, 182, 148, 0.2);
}

.cta-section .btn-light:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* ============================================
   FOOTER
   ============================================ */
.landing-footer {
    margin-top: auto;
}

.landing-footer a {
    transition: all 0.3s ease;
}

.landing-footer a:hover {
    color: var(--ct-primary) !important;
    transform: translateX(5px);
}

.social-links a {
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
    color: var(--ct-primary) !important;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */
@media (max-width: 768px) {
    .hero-section {
        min-height: 500px;
    }

    .hero-image {
        height: 500px;
    }

    .carousel-caption-custom {
        padding: 1.5rem;
    }

    .hero-logo-img {
        max-width: 100px;
    }

    .hero-logo-block h3 {
        font-size: 1.5rem;
    }

    .hero-logo-block p {
        font-size: 0.875rem;
    }

    .hero-logo-block i {
        font-size: 3rem !important;
    }

    .hero-content-block h1 {
        font-size: 2rem;
    }

    .hero-content-block p {
        font-size: 1rem;
    }

    .about-image-wrapper::before {
        display: none;
    }

    .stat-card h3 {
        font-size: 2rem;
    }

    .cta-section h2 {
        font-size: 1.75rem;
    }

    .cta-section p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .landing-main {
        padding-top: 0px;
    }

    .hero-section {
        min-height: 450px;
        overflow: hidden;
    }

    .hero-image {
        height: 450px;
    }

    .carousel-caption-custom {
        padding: 1rem;
        width: 100%;
        overflow: hidden;
    }

    .hero-logo-img {
        max-width: 80px;
    }

    .hero-logo-block h3 {
        font-size: 1.25rem;
        word-wrap: break-word;
    }

    .hero-content-block {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .hero-content-block h1 {
        font-size: 1.5rem;
        word-wrap: break-word;
    }

    .hero-content-block p {
        font-size: 0.95rem;
        word-wrap: break-word;
        max-width: 100%;
    }

    .hero-content-block .btn {
        font-size: 0.875rem;
        padding: 0.625rem 1.25rem;
        width: 100%;
        max-width: 100%;
    }

    .step-number .badge {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .landing-header .navbar-brand img {
        height: 32px;
    }


}

/* ============================================
   SCROLL ANIMATIONS (Optional Enhancement)
   ============================================ */
.fade-in-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}
