/*
NCFSE - Premium Modern Style System
*/

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    --primary: #0d6efd;
    --primary-rgb: 13, 110, 253;
    --danger: #dc3545;
    --danger-rgb: 220, 53, 69;
    --dark: #121820;
    --dark-rgb: 18, 24, 32;
    --light: #f8faff;
    --gray: #6c757d;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.12);
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --shadow-sm: 0 5px 15px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.12);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 30px;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: var(--font-body);
    background-color: var(--light);
    color: #4a5568;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--dark);
}

/* NAVBAR DESIGN */
.navbar-custom {
    transition: var(--transition);
    padding: 20px 0;
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 100;
}

.navbar-custom.navbar-scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    padding: 12px 0;
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar-custom .nav-link {
    font-weight: 600;
    color: var(--dark);
    margin: 0 12px;
    padding: 8px 0 !important;
    position: relative;
    font-size: 15px;
}

.navbar-scrolled .nav-link {
    color: var(--dark);
}

.navbar-custom .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--danger);
    transition: var(--transition);
    border-radius: 4px;
}

.navbar-custom .nav-link:hover::after,
.navbar-custom .nav-link.active::after {
    width: 100%;
}

.navbar-custom .nav-link.active {
    color: var(--danger) !important;
}

.navbar-scrolled .nav-link:hover,
.navbar-scrolled .nav-link.active {
    color: var(--danger) !important;
}

/* HERO ELEMENTS - COMPLETE REWRITE */
.hero-carousel-section {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    z-index: 1;
}

#heroCarousel {
    position: relative;
    width: 100%;
}

#heroCarousel .carousel-inner {
    position: relative;
    width: 100%;
    height: 100%;
}

#heroCarousel .carousel-item {
    position: relative !important;
    height: 100vh;
    min-height: 600px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Hero Background */
.hero-bg {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 1 !important;
    background-position: center center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}

/* Hero Background Overlay */
.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 2;
}

/* Hero Content Container */
#heroCarousel .carousel-item .container {
    position: relative !important;
    z-index: 10 !important;
    width: 100%;
    height: auto;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    display: flex;
    align-items: center;
}

#heroCarousel .carousel-item .row {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    height: auto;
}

/* Left Column Content */
#heroCarousel .carousel-item .col-lg-7 {
    flex: 0 0 calc(58.333% - 20px);
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0;
}

#heroCarousel .carousel-item .col-lg-7 > * {
    position: relative;
    z-index: 10;
}

/* Hero Badge */
.hero-badge {
    display: inline-block;
    margin-bottom: 20px;
    position: relative;
    z-index: 10;
}

.hero-badge .badge {
    position: relative;
    z-index: 10;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px !important;
    border-radius: 50px !important;
}

/* Hero Heading */
#heroCarousel .carousel-item h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
    margin: 0 0 20px 0;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 10;
    overflow: visible;
}

/* Hero Subtitle */
#heroCarousel .carousel-item .lead {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0 0 30px 0;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 10;
    max-width: 90%;
    overflow: visible;
}

/* Hero Buttons */
#heroCarousel .carousel-item .d-flex.flex-wrap {
    display: flex !important;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
    position: relative;
    z-index: 10;
}

#heroCarousel .carousel-item .d-flex.flex-wrap a {
    position: relative;
    z-index: 10;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
}

/* Stats Row */
.stats-row {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    margin-top: 40px;
    position: relative;
    z-index: 10;
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.2);
    padding: 25px 35px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    width: fit-content;
}

.stats-row .col-auto {
    position: relative;
    z-index: 10;
    flex: 0 0 auto !important;
}

.stats-row h4 {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    line-height: 1;
}

.stats-row small {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-top: 5px;
    display: block;
}

/* Right Column Image */
#heroCarousel .carousel-item .col-lg-5 {
    flex: 0 0 calc(41.667% + 20px);
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-wrapper {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 500px;
    height: auto;
}

.hero-image-wrapper img {
    position: relative;
    z-index: 6;
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

.floating-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    animation: ringPulse 3s ease-in-out infinite;
    z-index: 4;
}

@keyframes ringPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.4;
    }
}

/* Experience Card */
.experience-card {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: white;
    padding: 25px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    z-index: 8;
}

.experience-card .num {
    font-size: 2.2rem;
    font-weight: 800;
    color: #dc3545;
    line-height: 1;
}

.experience-card .text {
    font-size: 0.9rem;
    font-weight: 700;
    color: #333;
    line-height: 1.3;
}

/* Carousel Indicators */
.carousel-indicators-custom {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    gap: 12px;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
}

.carousel-indicators-custom button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    margin: 0;
}

.carousel-indicators-custom button.active {
    background: #dc3545;
    border-color: #dc3545;
    width: 30px;
    border-radius: 10px;
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 15;
    width: auto;
    height: auto;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
}

.carousel-control-prev {
    left: 30px;
}

.carousel-control-next {
    right: 30px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.1);
}

/* COURSE CARDS MODERN */
.course-card-modern {
    transition: var(--transition);
    border: none;
}

.course-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg) !important;
}

.course-img-wrapper img {
    transition: var(--transition);
    transform-origin: center;
}

.course-card-modern:hover .transition-scale {
    transform: scale(1.1);
}

.course-card-modern:hover .opacity-0 {
    opacity: 1 !important;
}

/* TRANSITION UTILITIES */
.transition-scale {
    transition: transform 0.6s ease;
}

.transition-3s {
    transition: all 0.3s ease-in-out;
}

.transition-5s {
    transition: all 0.5s ease-in-out;
}

/* STATS */
.stat-icon-bg {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.stat-item:hover .stat-icon-bg {
    background: var(--danger);
    transform: rotate(10deg);
}

.stat-item:hover .stat-icon-bg i {
    color: white !important;
}

/* TESTIMONIALS */
.testimonial-card {
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.user-photo-box {
    padding: 4px;
    border: 1px solid var(--danger);
    border-radius: 50%;
}

/* MISC */
.animate-float {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% {
        transform: translate(0, 0px);
    }

    50% {
        transform: translate(0, 15px);
    }

    100% {
        transform: translate(0, -0px);
    }
}

.about-stat-card {
    position: absolute;
    bottom: 30px;
    right: -30px;
    background: white;
    padding: 25px;
    border-radius: 24px;
    z-index: 2;
    text-align: center;
}

/* BUTTONS */
.btn-danger {
    background: var(--danger);
    border-color: var(--danger);
    border-radius: 12px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 2;
    position: relative;
}

.btn-danger:hover {
    background: #c82333;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(220, 53, 69, 0.3);
}

.btn-outline-danger {
    border-width: 2px;
    border-radius: 12px;
    font-weight: 600;
}

.carousel-item .btn {
    position: relative;
    z-index: 2;
}

.carousel-item .badge {
    position: relative;
    z-index: 2;
}

/* TOPBAR */
.bg-dark {
    background-color: var(--dark) !important;
}

/* UTILS */
.tracking-wider {
    letter-spacing: 0.1em;
}

.transition-3s {
    transition: all 0.3s ease;
}

.bg-dark-65 {
    background: rgba(0, 0, 0, 0.65);
}

.text-white-80 {
    color: rgba(255, 255, 255, 0.8);
}

.bg-light-subtle {
    background-color: #f0f7ff;
}

.opacity-0 {
    opacity: 0;
}

.opacity-1 {
    opacity: 1;
}

.object-fit-cover {
    object-fit: cover;
}

/* MOBILE RESPONSIVE */
@media (max-width: 991px) {
    .navbar-custom {
        background: white !important;
        padding: 10px 0;
    }

    #heroCarousel .carousel-item {
        height: auto;
        min-height: 700px;
    }

    #heroCarousel .carousel-item .container {
        padding: 40px 20px;
    }

    #heroCarousel .carousel-item .row {
        flex-direction: column-reverse;
        gap: 30px;
    }

    #heroCarousel .carousel-item .col-lg-7 {
        flex: 0 0 100%;
    }

    #heroCarousel .carousel-item .col-lg-5 {
        flex: 0 0 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    #heroCarousel .carousel-item h1 {
        font-size: 2.5rem;
    }

    #heroCarousel .carousel-item .lead {
        font-size: 1rem;
        max-width: 100%;
    }

    .stats-row {
        width: 100%;
        gap: 20px;
        justify-content: space-around;
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none !important;
    }

    .carousel-indicators-custom {
        bottom: 15px;
    }
}

@media (max-width: 768px) {
    #heroCarousel .carousel-item {
        min-height: 600px;
    }

    #heroCarousel .carousel-item .container {
        padding: 30px 15px;
    }

    #heroCarousel .carousel-item h1 {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    #heroCarousel .carousel-item .lead {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .hero-badge {
        margin-bottom: 15px;
    }

    #heroCarousel .carousel-item .d-flex.flex-wrap {
        gap: 10px;
        margin-bottom: 20px;
    }

    #heroCarousel .carousel-item .d-flex.flex-wrap a {
        padding: 10px 18px;
        font-size: 0.95rem;
    }

    .stats-row {
        display: none;
    }

    .carousel-indicators-custom {
        bottom: 20px;
        gap: 8px;
    }

    .carousel-indicators-custom button {
        width: 10px;
        height: 10px;
    }

    .carousel-indicators-custom button.active {
        width: 25px;
    }

    .experience-card {
        bottom: -15px;
        left: -15px;
        padding: 15px;
        font-size: 0.85rem;
    }

    .experience-card .num {
        font-size: 1.8rem;
    }

    #heroCarousel .carousel-item .col-lg-5 {
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    #heroCarousel .carousel-item {
        min-height: 500px;
    }

    #heroCarousel .carousel-item .container {
        padding: 25px 15px;
    }

    #heroCarousel .carousel-item h1 {
        font-size: 1.6rem;
        margin-bottom: 12px;
    }

    #heroCarousel .carousel-item .lead {
        font-size: 0.9rem;
        margin-bottom: 15px;
        line-height: 1.5;
    }

    .hero-badge {
        margin-bottom: 12px;
    }

    .hero-badge .badge {
        padding: 8px 16px !important;
        font-size: 0.85rem;
    }

    #heroCarousel .carousel-item .d-flex.flex-wrap {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 15px;
    }

    #heroCarousel .carousel-item .d-flex.flex-wrap a {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
    }

    .carousel-indicators-custom button {
        width: 8px;
        height: 8px;
    }

    .carousel-indicators-custom button.active {
        width: 20px;
    }

    #heroCarousel .carousel-item .col-lg-5 {
        max-width: 250px;
        display: none;
    }

    .experience-card {
        display: none;
    }
}


/* MODERN COURSE CARDS */
.modern-course-card {
    transition: var(--transition);
}

.modern-course-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--sh-lg) !important;
    border-color: rgba(220, 53, 69, 0.1) !important;
}

.course-v2-img-container img {
    transition: transform 0.6s ease;
}

.modern-course-card:hover .course-v2-img-container img {
    transform: scale(1.1);
}

.modern-course-card:hover .opacity-0 {
    opacity: 1 !important;
}

/* MARQUEE */
.brand-v3-track {
    display: flex;
    width: fit-content;
}

.brand-v3-track:hover {
    animation-play-state: paused;
}

/* UTILS */
.shadow-2xl {
    box-shadow: 0 35px 70px -15px rgba(0, 0, 0, 0.25);
}

.hover-up-premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(220, 53, 69, 0.3) !important;
}

.transition-3s {
    transition: all 0.3s ease-in-out;
}

.transition-5s {
    transition: all 0.5s ease-in-out;
}

.bg-dark-65 {
    background: rgba(0, 0, 0, 0.65);
}

.smaller-7 {
    font-size: 0.7rem;
}

.shadow-sm-hover:hover {
    box-shadow: var(--sh-md) !important;
}

/* AOS Delay Fix */
[data-aos] {
    pointer-events: none;
}

.aos-animate {
    pointer-events: auto;
}

/* TESTIMONIALS CARDS */
.testimonial-premium-card {
    transition: var(--transition);
}

.testimonial-premium-card:hover {
    transform: scale(1.03);
    background-color: #fff !important;
    box-shadow: var(--sh-lg) !important;
}

/* ANIMATIONS */
@keyframes floatingV2 {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.animate-float {
    animation: floatingV2 4s ease-in-out infinite;
}

/* HERO INDICATORS */
.hero-indicators-v2 button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    margin: 0 6px;
    transition: var(--transition);
}

.hero-indicators-v2 button.active {
    background: #dc3545;
    width: 30px;
    border-radius: 10px;
}

/* FOOTER */
.footer-section {
    background: linear-gradient(180deg, #eef3ff 0%, #fdfdff 100%);
    padding: 80px 0 40px;
    color: #0f1a3d;
}

.footer-main {
    padding-bottom: 20px;
}

.footer-widget {
    opacity: 1;
}

.footer-logo img {
    max-height: 80px;
    width: auto;
    transform: scale(1.05);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
    font-size: 1rem;
}

.social-icon.facebook {
    background: #1877f2;
}

.social-icon.twitter {
    background: #1da1f2;
}

.social-icon.instagram {
    background: #e1306c;
}

.social-icon.linkedin {
    background: #0a66c2;
}

.social-icon.youtube {
    background: #ff0000;
}

.social-icon:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.footer-title {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    letter-spacing: 0.02em;
    font-weight: 700;
    color: #0b234e;
}

.footer-menu,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 0.8rem;
}

.footer-menu li a {
    color: #1b2a56;
    font-weight: 500;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.footer-menu li a:hover {
    color: var(--danger);
}

.footer-contact li {
    display: flex;
    gap: 0.9rem;
    align-items: flex-start;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: #3d4361;
}

.footer-contact li i {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--danger);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.footer-contact strong {
    display: block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #535774;
}

.footer-contact span,
.footer-contact a {
    color: #4a506b;
    font-weight: 400;
    font-size: 0.92rem;
}

.footer-contact a:hover {
    color: var(--danger);
}

.footer-newsletter {
    background: var(--white);
    border-radius: 24px;
    padding: 1.6rem;
    margin-top: 40px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(13, 110, 253, 0.15);
}

.newsletter-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.newsletter-content i {
    font-size: 1.7rem;
    padding: 0.55rem;
    border-radius: 12px;
    background: rgba(220, 53, 69, 0.12);
    color: var(--danger);
}

.newsletter-content h5 {
    margin-bottom: 0.1rem;
    font-size: 1.1rem;
    color: #111c3a;
}

.newsletter-content p {
    margin-bottom: 0;
    color: #5f678b;
    font-size: 0.9rem;
}

.newsletter-form .input-group {
    display: flex;
    gap: 0;
}

.newsletter-form .form-control {
    border-radius: 12px 0 0 12px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    min-height: 50px;
    padding: 0.85rem 1.2rem;
    font-size: 0.95rem;
}

.newsletter-form .btn {
    border-radius: 0 12px 12px 0;
    min-height: 50px;
    padding: 0 2rem;
    background: linear-gradient(180deg, #dc3545, #a31127);
    border: none;
    font-weight: 600;
    box-shadow: 0 12px 24px rgba(220, 53, 69, 0.35);
}

.footer-bottom {
    border-top: 1px solid rgba(86, 95, 135, 0.15);
    padding: 1.2rem 0 0.4rem;
    margin-top: 35px;
}

.footer-bottom p {
    color: #5b647f;
    font-size: 0.85rem;
}

.footer-bottom-links {
    display: flex;
    justify-content: flex-end;
    gap: 0.25rem;
    align-items: center;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: #4d5673;
    font-size: 0.85rem;
    font-weight: 500;
}

.footer-bottom-links span {
    color: rgba(77, 86, 115, 0.5);
}

.scroll-top {
    position: fixed;
    right: 30px;
    bottom: 90px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--danger);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 24px rgba(220, 53, 69, 0.4);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.scroll-top.active {
    opacity: 1;
    pointer-events: auto;
}

.floating-whatsapp,
.floating-call {
    position: fixed;
    bottom: 40px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    z-index: 999;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.floating-whatsapp {
    right: 26px;
    background: #25d366;
}

.floating-call {
    right: 92px;
    background: #0f72e5;
}

.floating-whatsapp:hover,
.floating-call:hover {
    transform: translateY(-4px);
}

@media (max-width: 991px) {
    .footer-newsletter .input-group {
        flex-direction: column;
    }

    .newsletter-form .form-control,
    .newsletter-form .btn {
        border-radius: 12px;
    }

    .footer-bottom-links {
        justify-content: center;
    }

    .floating-whatsapp {
        bottom: 120px;
        right: 16px;
    }

    .floating-call {
        bottom: 190px;
        right: 16px;
    }
}