:root {

    /* PRIMARY BRAND COLORS */
    --primary: #c6ff00;
    /* Neon Green */
    --primary-dark: #aeea00;
    --primary-light: #e6ff66;

    /* DARK THEME */
    --dark: #000000;
    --dark-2: #111111;
    --dark-3: #1a1a1a;

    /* TEXT COLORS */
    --text-light: #ffffff;
    --text-muted: #cccccc;
    --text-dark: #222222;

    /* BACKGROUNDS */
    --bg-light: #f8f9fa;
    --bg-dark: #0d0d0d;

    /* BORDER */
    --border: #2a2a2a;

    /* SHADOW */
    --shadow: 0 5px 20px rgba(0, 0, 0, 0.3);

    /* FONT */
    --font-main: 'Poppins', sans-serif;
    --font-heading: 'Montserrat', sans-serif;

    /* BORDER RADIUS */
    --radius: 10px;
    --radius-full: 50px;

    /* TRANSITION */
    --transition: all 0.3s ease;

}

body {
    background: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-main);
}

.btn-main {
    background: var(--primary);
    color: var(--dark);
    padding: 10px 25px;
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.btn-main:hover {
    background: var(--primary-dark);
}

.card-custom {
    background: var(--dark-2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.card-custom:hover {
    transform: translateY(-8px);
}


/* ===== TOP HEADER ===== */
.top-header {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 14px;
    padding: 6px 0;
}

.top-header i {
    color: var(--primary);
}

.top-header a {
    color: #fff;
    margin-left: 15px;
}

/* ===== NAVBAR ===== */
.premium-navbar {
    top: 30px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(15px);
    transition: 0.3s;
    padding: 15px 0;
}

/* SCROLL EFFECT */
.premium-navbar.scrolled {
    background: rgba(0, 0, 0, 0.9);
}

/* LOGO */
.logo {
    width: 90px;
}

.navbar-brand span {
    color: var(--primary);
    font-weight: 700;
}

/* NAV LINKS */
.nav-link {
    color: #fff !important;
    position: relative;
}

/* UNDERLINE GLOW */
.nav-link::after {
    content: "";
    width: 0%;
    height: 2px;
    background: var(--primary);
    position: absolute;
    left: 0;
    bottom: -5px;
    box-shadow: 0 0 10px var(--primary);
    transition: 0.3s;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary) !important;
}

/* BUTTON */
.btn-glow {
    background: var(--primary);
    color: #000;
    border-radius: 30px;
    padding: 8px 20px;
    box-shadow: 0 0 10px var(--primary);
}

/* ===== CUSTOM TOGGLER ===== */
.custom-toggler {
    width: 25px;
}

.custom-toggler span {
    display: block;
    height: 3px;
    background: var(--primary);
    margin: 5px 0;
    transition: 0.3s;
}

/* ===== MOBILE MENU FIX ===== */
@media (max-width: 991px) {

    .premium-navbar {
        background: rgba(0, 0, 0, 0.95);
    }

    .navbar-collapse {
        background: rgba(0, 0, 0, 0.95);
        padding: 20px;
        margin-top: 10px;
        border-radius: 10px;
    }

    .nav-link {
        padding: 12px 0;
        font-size: 18px;
    }
}

/* HERO HEIGHT */
.hero-section {
    height: 100vh;
}



.carousel-item img {
    height: 100%;
    object-fit: cover;
}



/* CAPTION */
.carousel-caption {
    bottom: 30%;
    text-align: center;
}

.carousel-caption h1 {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 0 15px var(--primary);
}

.carousel-caption p {
    color: #ccc;
    font-size: 18px;
}

/* BUTTON */
.btn-hero {
    background: var(--primary);
    color: #000;
    padding: 10px 25px;
    border-radius: 30px;
    box-shadow: 0 0 15px var(--primary);
    transition: 0.3s;
}

.btn-hero:hover {
    box-shadow: 0 0 25px var(--primary);
}

/* INDICATORS */
.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #fff;
    opacity: 0.5;
}

.carousel-indicators .active {
    background: var(--primary);
    opacity: 1;
    box-shadow: 0 0 10px var(--primary);
}

/* ARROWS */
.custom-arrow {
    background: rgba(0, 0, 0, 0.6);
    padding: 12px;
    border-radius: 50%;
    color: var(--primary);
    font-size: 20px;
}

/* MOBILE */
@media(max-width:768px) {

    .carousel-caption h1 {
        font-size: 28px;
    }

    .carousel-caption p {
        font-size: 14px;
    }

    .carousel-caption {
        bottom: 25%;
    }
    


}

/* ================= HERO MOBILE FIX ================= */
@media (max-width: 768px) {

    /* HERO HEIGHT FIX */
    #hero,
    .hero-section,
    .carousel-item {
        height: 85vh !important;
        min-height: 500px;
    }

    /* CENTER CONTENT */
    .hero-content {
        text-align: center;
        padding: 0 15px;
    }

    /* TITLE FIX */
    .hero-content h1 {
        font-size: 26px;
        line-height: 1.3;
        margin-bottom: 10px;
    }

    /* SUBTEXT */
    .hero-content p {
        font-size: 14px;
        margin-bottom: 15px;
        color: #ccc;
    }

    /* BUTTON FIX */
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .hero-buttons a {
        width: 80%;
        text-align: center;
        padding: 10px;
    }

    /* IMAGE / BG FIX */
    .carousel-item img {
        object-fit: cover;
        height: 100%;
    }

}

/* ================= ABOUT ================= */
.about-section {
    background: #0d0d0d;
    color: #fff;
}

.about-section p {
    text-align: justify;
}

/* IMAGE */
.about-img img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* TITLE */
.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

/* FEATURES */
.about-features {
    margin-top: 20px;
}

.feature {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.feature i {
    color: var(--primary);
    margin-right: 10px;
}

/* BUTTON */
.btn-about {
    background: var(--primary);
    color: #000;
    padding: 10px 25px;
    border-radius: 30px;
    box-shadow: 0 0 15px var(--primary);
}

.btn-about:hover {
    box-shadow: 0 0 25px var(--primary);
}


/* ================= STATS ================= */
.about-stats {
    background: linear-gradient(90deg, #000, #111);
    padding: 40px 0;
}

.about-stats h3 {
    color: var(--primary);
    font-size: 32px;
    text-shadow: 0 0 10px var(--primary);
}

.about-stats p {
    color: #ccc;

}


/* MOBILE */
@media(max-width:768px) {

    .section-title {
        font-size: 26px;
    }

}

.marquee-section {
    background: #000;
    overflow: hidden;
    padding: 15px 0;
}

/* WRAPPER */
.marquee {
    display: flex;
    width: max-content;
    animation: scrollText 20s linear infinite;
}

/* CONTENT */
.marquee-content {
    display: flex;
}

.marquee-content span {
    color: var(--primary);
    font-weight: 600;
    font-size: 18px;
    margin-right: 50px;
    white-space: nowrap;
}

/* ANIMATION */
@keyframes scrollText {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}


/* ================= SERVICES ================= */
.services-section {
    background: #0d0d0d;
    color: #fff;
}

/* CARD */
.service-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}

/* ICON */
.service-card i {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 15px;
    display: inline-block;
    text-shadow: 0 0 10px var(--primary);
}

/* HOVER EFFECT */
.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 0 25px rgba(198, 255, 0, 0.3);
}

/* GLOW LINE */
.service-card::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--primary);
    top: 0;
    left: -100%;
    transition: 0.4s;
}

.service-card:hover::before {
    left: 0;
}

/* TEXT */
.service-card h5 {
    margin-top: 10px;
    font-weight: 600;
}

.service-card p {
    color: #ccc;
    font-size: 14px;
}

/* MOBILE */
@media(max-width:768px) {
    .service-card {
        padding: 20px;
    }
}

/* ================= GALLERY ================= */
.gallery-section {
    background: #000;
    color: #fff;
}

/* ITEM */
.gallery-item {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 12px;
}

/* IMAGE */
.gallery-item img {
    width: 100%;
    transition: 0.4s;
    border-radius: 12px;
}

/* OVERLAY */
.gallery-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.4s;
}

/* ICON */
.gallery-item .overlay i {
    color: var(--primary);
    font-size: 30px;
    transform: scale(0);
    transition: 0.4s;
}

/* HOVER EFFECT */
.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.gallery-item:hover .overlay i {
    transform: scale(1);
}

/* GLOW BORDER */
.gallery-item:hover {
    box-shadow: 0 0 20px rgba(198, 255, 0, 0.4);
}

/* GALLERY ITEM FIX */
.gallery-item {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 12px;
    height: 250px;
    /* FIXED HEIGHT */
}

/* IMAGE FIX */
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* IMPORTANT */
    transition: 0.4s;
}

/* ================= PARALLAX ================= */
.parallax-section {
    position: relative;
    height: 70vh;
    background: url('./img/h4.png') center/cover no-repeat;
    background-attachment: fixed;
    /* PARALLAX */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* OVERLAY */
.parallax-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    top: 0;
    left: 0;
}

/* CONTENT */
.parallax-section .content {
    position: relative;
    z-index: 2;
    color: #fff;
}

/* TEXT */
.parallax-section h2 {
    font-size: 40px;
    font-weight: 700;
    text-shadow: 0 0 15px var(--primary);
}

.parallax-section p {
    color: #ccc;
    margin: 15px 0;
}

/* BUTTON */
.btn-parallax {
    background: var(--primary);
    color: #000;
    padding: 10px 25px;
    border-radius: 30px;
    box-shadow: 0 0 15px var(--primary);
}

.btn-parallax:hover {
    box-shadow: 0 0 25px var(--primary);
}

/* SECTION */
.testimonial-section {
    background: #0d0d0d;
    color: #fff;
}

/* TITLE */
.section-title {
    color: #c6ff00;
    font-weight: 700;
}

/* CONTROLS */
.testi-controls {
    display: flex;
    gap: 10px;
}

.btn-control {
    background: rgba(255, 255, 255, 0.08);
    border: none;
    color: #c6ff00;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: 0.3s;
}

.btn-control:hover {
    background: #c6ff00;
    color: #000;
}

/* CARD */
.testi-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 12px;
    height: 100%;
    transition: 0.3s;
}

.testi-card:hover {
    transform: translateY(-6px);
    border-color: #c6ff00;
}

.testi-card p {
    font-size: 14px;
    color: #ccc;
    line-height: 1.6;
}

.testi-card h6 {
    margin-top: 10px;
    color: #c6ff00;
}

/* 🔥 MAIN FIX */
.carousel-inner {
    overflow: hidden;
}

.carousel-item .row {
    margin-left: 0;
    margin-right: 0;
}

.carousel-item [class*="col-"] {
    padding-left: 10px;
    padding-right: 10px;
}

/* MOBILE PERFECT */
@media (max-width: 767px) {

    .carousel-item .row {
        justify-content: center;
    }

    .carousel-item .col-12 {
        flex: 0 0 95%;
        max-width: 95%;
    }

}

.carousel-inner {
    overflow: hidden;
}

/* SECTION BG */
.enquiry-section {
    position: relative;
    background: url('./img/bg.jpg') center/cover no-repeat;
    padding: 100px 0;
}

/* DARK OVERLAY */
.enquiry-section .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    top: 0;
    left: 0;
}

/* FORM BOX */
.enquiry-box {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

/* TITLE */
.enquiry-box h2 {
    color: var(--primary);
    margin-bottom: 20px;
}

/* INPUT */
.form-group input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: none;
    outline: none;
}

/* BUTTON */
.btn-enquiry {
    width: 100%;
    padding: 12px;
    background: #25D366;
    color: #fff;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-enquiry:hover {
    background: #1ebe5d;
}

/* MOBILE */
@media(max-width:768px) {
    .enquiry-section {
        padding: 60px 0;
    }
}

.contact-section {
    background: #0d0d0d;
    color: #fff;
}

/* TITLE */
.section-title {
    color: var(--primary);
    font-weight: 700;
}

/* CONTACT BOX */
.contact-box {
    display: block;
    text-align: center;
    padding: 30px 20px;
    border-radius: 15px;
    text-decoration: none;
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.3s;
}

/* ICON */
.contact-box i {
    font-size: 35px;
    color: var(--primary);
    margin-bottom: 10px;
    display: block;
}

/* HOVER EFFECT */
.contact-box:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 0 25px rgba(198, 255, 0, 0.3);
    color: #fff;
}

/* TEXT */
.contact-box h5 {
    margin-top: 10px;
    font-weight: 600;
}

.contact-box p {
    color: #ccc;
    font-size: 14px;
}

/* MAP */
.map iframe {
    width: 100%;
    height: 300px;
    border: 0;
    border-radius: 12px;
}

/* MOBILE */
@media(max-width:768px) {
    .contact-box {
        padding: 25px;
    }
}

.footer {
    background: #000;
    color: #fff;
    padding: 60px 0 20px;
}

/* LOGO */
.footer-logo {
    width: 120px;
    margin-bottom: 15px;
}

/* TEXT */
.footer-box p {
    color: #ccc;
    font-size: 14px;
}

/* HEADINGS */
.footer-box h5 {
    color: var(--primary);
    margin-bottom: 15px;
}

/* LINKS */
.footer-box ul {
    list-style: none;
    padding: 0;
}

.footer-box ul li {
    margin-bottom: 10px;
}

.footer-box ul li a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

.footer-box ul li a:hover {
    color: var(--primary);
}

/* SOCIAL */
.footer-social a {
    display: inline-block;
    margin-right: 10px;
    font-size: 18px;
    color: #fff;
    transition: 0.3s;
}

.footer-social a:hover {
    color: var(--primary);
}

/* CONTACT ICON */
.footer-box i {
    color: var(--primary);
    margin-right: 5px;
}

/* BOTTOM */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 30px;
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-bottom p {
    font-size: 14px;
    color: #aaa;
}

.footer-bottom a {
    color: var(--primary);
    text-decoration: none;
}

/* MOBILE */
@media(max-width:768px) {

    .footer-bottom {
        text-align: center;
        flex-direction: column;
        gap: 5px;
    }

}

.faq-section {
    background: #0d0d0d;
    color: #fff;
}

/* ITEM */
.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.3s;
}

/* QUESTION */
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px;
    cursor: pointer;
}

.faq-question h5 {
    margin: 0;
}

/* ICON */
.faq-icon {
    font-size: 20px;
    color: var(--primary);
    transition: 0.3s;
}

/* ANSWER */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    padding: 0 18px 18px;
    color: #ccc;
}

/* ACTIVE */
.faq-item.active {
    border-color: var(--primary);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* HEADER SECTION */
.about-header {
    position: relative;
    height: 80vh;
    background: url('./img/g4.jpeg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* OVERLAY */
.about-header .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    top: 0;
    left: 0;
}

/* CONTENT */
.about-header .content {
    position: relative;
    z-index: 2;
    color: #fff;
}

/* TITLE */
.about-header h1 {
    font-size: 48px;
    font-weight: 700;
    text-shadow: 0 0 15px var(--primary);
}

/* SUBTEXT */
.about-header p {
    color: #ccc;
    margin-top: 10px;
}

/* BREADCRUMB */
.about-header .breadcrumb {
    margin-top: 15px;
}

.about-header .breadcrumb a {
    color: var(--primary);
    text-decoration: none;
}

/* MOBILE */
@media(max-width:768px) {

    .about-header {
        height: 70vh;
    }

    .about-header h1 {
        font-size: 28px;
    }

}

.about-story {
    background: #0d0d0d;
    color: #fff;
}

/* IMAGE */
.about-img img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* TITLE */
.section-title {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 20px;
}

/* TEXT */
.about-story p {
    color: #ccc;
    line-height: 1.7;
}

/* POINTS */
.about-points {
    margin-top: 20px;
}

.point {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.point i {
    color: var(--primary);
    margin-right: 10px;
}

.why-section {
    background: #000;
    color: #fff;
}

/* CARD */
.why-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}

/* ICON */
.why-card i {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 15px;
    text-shadow: 0 0 10px var(--primary);
}

/* TEXT */
.why-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.why-card p {
    color: #ccc;
    font-size: 14px;
}

/* HOVER EFFECT */
.why-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 0 25px rgba(198, 255, 0, 0.3);
}

/* GLOW TOP LINE */
.why-card::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--primary);
    top: 0;
    left: -100%;
    transition: 0.4s;
}

.why-card:hover::before {
    left: 0;
}

.mission-section {
    background: #0d0d0d;
    color: #fff;
}

/* BOX */
.mission-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}

/* ICON */
.mission-box .icon {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 15px;
    text-shadow: 0 0 10px var(--primary);
}

/* TITLE */
.mission-box h3 {
    font-weight: 700;
    margin-bottom: 15px;
}

/* TEXT */
.mission-box p {
    color: #ccc;
    line-height: 1.7;
}

/* HOVER EFFECT */
.mission-box:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 0 25px rgba(198, 255, 0, 0.3);
}

/* GLOW TOP LINE */
.mission-box::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--primary);
    top: 0;
    left: -100%;
    transition: 0.4s;
}

.mission-box:hover::before {
    left: 0;
}


.services-clean {
    background: #0d0d0d;
    color: #fff;
}

/* TITLE */
.section-title {
    color: var(--primary);
    font-weight: 700;
}

/* IMAGE */
.service-img {
    border-radius: 12px;
    transition: 0.3s;
}

/* TEXT */
.service-row h4 {
    font-weight: 600;
    margin-bottom: 10px;
}

.service-row p {
    color: #ccc;
    line-height: 1.7;
}

/* LIST */
.service-row ul {
    padding-left: 18px;
}

.service-row ul li {
    margin-bottom: 5px;
    color: #aaa;
}

/* HOVER IMAGE */
.service-img:hover {
    transform: scale(1.03);
}

/* SPACING FIX */
.service-row {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 30px;
}

/* MOBILE */
@media(max-width:768px) {

    .service-row {
        text-align: center;
    }

    .service-row ul {
        padding-left: 0;
        list-style: none;
    }

}

.cta-section {
    background: linear-gradient(135deg, #000, #111);
    padding: 80px 0;
    color: #fff;
}

/* BOX */
.cta-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 15px;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* TITLE */
.cta-box h2 {
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary);
}

/* TEXT */
.cta-box p {
    color: #ccc;
    margin-bottom: 25px;
}

/* BUTTONS */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* CALL BUTTON */
.btn-call {
    background: var(--primary);
    color: #000;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
}

/* WHATSAPP */
.btn-whatsapp {
    background: #25D366;
    color: #fff;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
}

/* HOVER */
.btn-call:hover {
    background: #aeea00;
}

.btn-whatsapp:hover {
    background: #1ebe5d;
}

/* MOBILE */
@media(max-width:768px) {
    .cta-box {
        padding: 30px 20px;
    }
}

.contact-details {
    background: #0d0d0d;
    color: #fff;
}

/* LEFT BOX */
.contact-info {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.contact-info h3 {
    color: var(--primary);
    margin-bottom: 10px;
}

.contact-info p {
    color: #ccc;
}

/* ITEM */
.info-item {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.info-item i {
    font-size: 22px;
    color: var(--primary);
}

.info-item h6 {
    margin: 0;
    font-weight: 600;
}

.info-item p {
    margin: 0;
    font-size: 14px;
}

/* MAP */
.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 350px;
    border-radius: 15px;
    border: 0;
}

/* MOBILE */
@media(max-width:768px) {
    .contact-info {
        text-align: center;
    }

    .info-item {
        flex-direction: column;
        align-items: center;
    }
}

/* FLOAT BUTTON */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: #fff;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    text-decoration: none;
    z-index: 999;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    transition: 0.3s;
}

/* HOVER */
.whatsapp-float:hover {
    transform: scale(1.1);
}

/* TOOLTIP TEXT */
.wa-text {
    position: absolute;
    right: 70px;
    background: #000;
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    white-space: nowrap;
    opacity: 0;
    transition: 0.3s;
}

/* SHOW TEXT */
.whatsapp-float:hover .wa-text {
    opacity: 1;
}

/* PULSE ANIMATION */
.whatsapp-float::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25D366;
    animation: pulse 1.5s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    70% {
        transform: scale(1.5);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 0;
    }
}

/* MOBILE */
@media(max-width:768px) {
    .wa-text {
        display: none;
    }
}

/* BUTTON */
#scrollTopBtn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    /* opposite side of WhatsApp */
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    background: var(--primary);
    color: #000;
    font-size: 18px;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    transition: 0.3s;
}

/* HOVER */
#scrollTopBtn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px var(--primary);
}