:root {
    --black: #000;
    --white: #fff;
    --maroon: #6b0000;
    --maroon-light: #a00000;
}

/* BODY */
.vegus-body {
    position: relative;
    background: url("/static/images/accomodation.680dd070486b.jpeg") center/cover no-repeat fixed;
    color: var(--white);
}

.vegus-body::before {
    z-index: -1;
}

.vegus-body::before {
    content: "";
    position: fixed;
    inset: 0;

    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.85),
        rgba(0,0,0,0.75),
        rgba(20,0,0,0.9)
    );

    z-index: -1;
}

/* LOGO */
.logo-container {
    position: fixed;
    top: 20px;
    left: 30px;
    z-index: 3000;
}

.nav-logo {
    width: 150px;
    transition: 0.3s;
}

.nav-logo:hover {
    transform: scale(1.05);
}

/* MENU BUTTON */
.menu-toggle {
    position: fixed;
    top: 25px;
    right: 30px;
    color: white;
    cursor: pointer;
    z-index: 1500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.menu-text {
    font-size: 24px;
    font-weight: 300px;
}

.menu-icon {
    font-size: 24px;
}

/* BACKDROP */
.menu-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
    z-index: 1400;
}

.menu-backdrop.show {
    opacity: 1;
    visibility: visible;
}

/* SIDEBAR */
.side-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    height: 100%;

    background: linear-gradient(180deg, #000, #1a0000, #330000);

    transform: translateX(100%);
    transition: 0.4s ease;

    z-index: 2000;
    padding: 80px 30px 40px;
}

.side-menu.open {
    transform: translateX(0);
}

/* CLOSE BUTTON */
.close-btn {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 28px;
    color: white;
    cursor: pointer;
}

/* LINKS */
.side-links {
    list-style: none;
    padding: 0;
}

.side-links li {
    margin: 20px 0;
}

.side-links a {
    color: white;
    font-size: 20px;
    text-decoration: none;
    position: relative;
    transition: 0.3s;
}

/* UNDERLINE */
.side-links a::before {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--maroon-light), var(--maroon));
    transform: scaleX(0);
    transition: 0.3s;
}

.side-links a:hover::before {
    transform: scaleX(1);
}

.side-links a:hover {
    color: var(--maroon-light);
}

/* DROPDOWN */
.gallery-submenu {
    max-height: 0;
    overflow: hidden;
    transition: 0.4s;
    list-style: none;
    padding-left: 15px;
}

.gallery-submenu.open {
    max-height: 200px;
}

.gallery-submenu a {
    font-size: 17px;
    color: #ccc;
}

/* BUTTON */
.reserve-wrapper {
    margin-top: 40px;
}

.reserve-btn {
    display: block;
    text-align: center;
    padding: 14px;
    border-radius: 40px 10px 40px 10px;

    background: linear-gradient(135deg, var(--maroon-light), var(--maroon));

    color: white;
    font-weight: 600;
    text-decoration: none;

    box-shadow: 0 0 15px rgba(160,0,0,0.6);
    transition: 0.4s;
}

.reserve-btn:hover {
    transform: translateY(-3px) scale(1.05);
}

.hide-on-scroll {
    opacity: 0;
    transform: translateY(-30px);
    pointer-events: none;
}

/* MOBILE */
@media(max-width:768px){

    .logo-container {
        top: 15px;
        left: 20px;
    }

    .nav-logo {
        width: 90px;
    }

    .menu-toggle {
        top: 20px;
        right: 20px;
    }
}

/* ================= HERO ================= */

/* ================= HERO ================= */

.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

/* VIDEO */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%) scale(1.05); /* slight zoom */
    animation: videoZoom 20s ease-in-out infinite alternate;
}

/* subtle cinematic zoom */
@keyframes videoZoom {
    from {
        transform: translate(-50%, -50%) scale(1.05);
    }
    to {
        transform: translate(-50%, -50%) scale(1.15);
    }
}

/* OVERLAY (rich gradient, not flat black) */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.6),
        rgba(0,0,0,0.4),
        rgba(40,0,0,0.6)
    );
    z-index: 1;
}

/* CONTENT */
.hero-content {
    position: relative;
    z-index: 2;

    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;
    color: white;
    padding: 0 20px;
}

/* TITLE */
.hero-title {
    font-size: 3.5rem;
    letter-spacing: 2px;
    font-weight: 600;

    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1.2s ease forwards;
}

/* SUBTITLE */
.hero-subtitle {
    margin-top: 10px;
    font-size: 1.2rem;
    opacity: 0;

    transform: translateY(30px);
    animation: fadeUp 1.2s ease forwards;
    animation-delay: 0.3s;
}

/* ANIMATION */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {

    .hero-title {
        font-size: 2.2rem;
        letter-spacing: 1px;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-video {
        width: auto;
        height: 100%;
    }
}

/* ================= ABOUT ================= */

.about-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.about-section::before {
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.6),
        rgba(0,0,0,0.5),
        rgba(20,0,0,0.6)
    );
}
.about-section .container {
    position: relative;
    z-index: 2;
}

/* WRAPPER */
.about-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

/* IMAGE CARD */
.about-image {
    width: 65%;
}

.about-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 12px;

    /* subtle luxury dark tone */
    filter: brightness(0.85);
}

/* TEXT CARD (OVERLAP EFFECT) */
.about-text {
    position: absolute;
    right: 0;
    bottom: -50px;

    width: 45%;
    padding: 45px;

    /* 🔥 MUTED LUXURY MIX (maroon + charcoal) */
    background: linear-gradient(
        160deg,
        rgba(45, 0, 0, 0.92),
        rgba(20, 20, 20, 0.95)
    );

    color: #fff;

    border-radius: 12px;

    /* 🔥 CLEAN DEPTH (no red glow) */
    box-shadow: 
        0 25px 60px rgba(0,0,0,0.7);

    /* 🔥 SOFT SEPARATION (this is key) */
    border: 1px solid rgba(255, 255, 255, 0.06);

    backdrop-filter: blur(6px);
}

/* TITLE */
.about-text h2 {
    margin: 0 0 20px;
    font-size: 30px;
    line-height: 1.3;
    font-weight: 600;

    /* subtle maroon accent */
    color: #fff;
}

/* PARAGRAPHS */
.about-text p {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.85;
    margin-bottom: 14px;
}

/* OPTIONAL: subtle accent line */
.about-text::before {
    content: "";
    display: block;
    width: 50px;
    height: 2px;
    margin-bottom: 15px;

    background: linear-gradient(90deg, #a00000, #6b0000);
}

@media (max-width: 991px) {

    .about-section {
        padding: 80px 0;
    }

    .about-wrapper {
        flex-direction: column;
    }

    .about-image {
        width: 100%;
    }

    .about-image img {
        height: 280px;
    }

    .about-text {
        position: relative;
        width: 92%;
        bottom: 0;
        right: 0;

        margin-top: -40px;
        padding: 25px;

        border-radius: 10px;
    }

    .about-text h2 {
        font-size: 22px;
    }

    .about-text p {
        font-size: 14px;
    }
}

/* ================= SUITES IMPROVED ================= */

.suites-section {
    padding: 80px 0;
    background: transparent;
    text-align: center;
}

/* HEADER */
.suites-header h2 {
    font-size: 36px;
    margin-bottom: 10px;
    color: #fff;
    letter-spacing: 1px;
}

.suites-header p {
    max-width: 600px;
    margin: auto;
    color: #d6d6d6;
    margin-bottom: 60px;
    line-height: 1.6;
}

/* TABS */
.suite-tabs {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 60px;
}

/* HIDE ALL TABS BY DEFAULT */
.suite-content {
    display: none;
}

/* SHOW ONLY ACTIVE */
.suite-content.active {
    display: block;
}

.tab {
    cursor: pointer;
    font-size: 18px;
    color: #aaa;
    transition: 0.3s;
    position: relative;
}

.tab:hover {
    color: #fff;
}

.tab.active {
    color: #ff4d4d;
    font-weight: 500;
}

.tab::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, #ff4d4d, #a00000);
    transition: 0.3s;
}

.tab.active::after {
    width: 100%;
}

/* CARD */
.suite-card {
    display: flex;
    align-items: center;
    gap: 40px;

    /* 🔥 GLASS LUXURY EFFECT */
    background: linear-gradient(160deg, rgba(40,0,0,0.85), rgba(10,10,10,0.95));
    padding: 35px;
    border-radius: 14px;

    border: 1px solid rgba(255,255,255,0.08);

    box-shadow: 
        0 25px 60px rgba(0,0,0,0.8),
        0 0 25px rgba(160,0,0,0.2);
}

.suite-card img {
    width: 50%;
    height: 360px;
    object-fit: cover;
    border-radius: 12px;

    filter: brightness(0.9);
}

/* INFO */
.suite-info {
    text-align: left;
}

.suite-info h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #fff;
}

.price {
    font-size: 22px;
    color: #ff4d4d;
    margin-bottom: 18px;
    font-weight: 600;
}

.suite-info p {
    color: #d0d0d0;
    margin-bottom: 12px;
    line-height: 1.6;
}

.extra {
    font-size: 14px;
    color: #aaaaaa;
}

/* SHORT STAY */
.short-stay {
    margin-top: 50px;
    font-size: 18px;
    color: #e0e0e0;
}

/* ROOM TAGS (CLEAN + LUXURY) */
.room-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 15px;
}

.room-tags span {
    font-size: 13px;
    padding: 6px 12px;
    border-radius: 20px;

    background: rgba(160,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.08);

    color: #fff;
}

/* SHORT STAY PREMIUM BOX */
.short-stay-box {
    margin-top: 40px; /* reduced from 60px */
    padding: 18px 22px;

    display: flex;
    align-items: center;
    justify-content: center; /* 🔥 center everything instead of pushing apart */
    gap: 20px; /* 🔥 controls spacing manually */

    border-radius: 12px;

    background: linear-gradient(135deg, rgba(160,0,0,0.25), rgba(0,0,0,0.9));

    border: 1px solid rgba(255,255,255,0.08);

    box-shadow: 
        0 10px 30px rgba(0,0,0,0.6),
        0 0 20px rgba(160,0,0,0.2);
}

/* LEFT TEXT */
.short-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.short-title {
    font-size: 17px;
    color: #fff;
}

.short-time {
    font-size: 13px;
    color: #fff;
}

/* PRICE */
.short-price {
    font-size: 22px;
    font-weight: 600;
    color: #ff4d4d;
}

.suite-media {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 12px;

    filter: brightness(0.9);
}

/* PRICE BOX */
.price-box {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

/* EACH PRICE */
.price-item {
    flex: 1;
    padding: 10px 14px;
    border-radius: 10px;

    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);

    display: flex;
    flex-direction: column;
}

/* LABEL */
.price-item .label {
    font-size: 12px;
    color: #aaa;
    margin-bottom: 3px;
}

/* AMOUNT */
.price-item .amount {
    font-size: 20px;
    color: #fff;
    font-weight: 600;
}

/* HIGHLIGHT (BREAKFAST OPTION) */
.price-item.highlight {
    background: linear-gradient(135deg, rgba(160,0,0,0.25), rgba(0,0,0,0.9));
    border: 1px solid rgba(160,0,0,0.4);
}

.price-item.highlight .amount {
    color: #ff4d4d;
}

.suite-media:hover {
    transform: scale(1.03);
    transition: 0.6s ease;
}

.price-box.single {
    justify-content: flex-start;
    max-width: 200px;
}

/* MOBILE */
@media(max-width:768px){
    .short-stay-box {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* MOBILE */
@media(max-width:768px){
    .suite-card {
        flex-direction: column;
    }

    .suite-card img {
        width: 100%;
        height: 250px;
    }
}
@media(max-width:768px){
    .suite-media {
        width: 100%;
        height: 250px;
    }
}

/* ================= GALLERY ================= */

.gallery-section {
    padding: 80px 0;
    text-align: center;
}

/* HEADER */
.gallery-header h2 {
    font-size: 34px;
    color: #fff;
    margin-bottom: 10px;
}

.gallery-header p {
    max-width: 600px;
    margin: auto;
    color: #ccc;
    margin-bottom: 50px;
}

/* GRID */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.gallery-grid img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;

    transition: 0.4s;
}

.gallery-grid img:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* ================= LIGHTBOX ================= */

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);

    display: none;
    justify-content: center;
    align-items: center;

    z-index: 9999;
}

.lightbox img {
    max-width: 85%;
    max-height: 80%;
    border-radius: 10px;
}

/* CLOSE */
.lightbox .close {
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 28px;
    color: white;
    cursor: pointer;
}

/* ARROWS */
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    color: white;
    cursor: pointer;
    padding: 10px;
}

.arrow.left {
    left: 30px;
}

.arrow.right {
    right: 30px;
}

/* MOBILE */
@media(max-width:768px){
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid img {
        height: 180px;
    }
}

/* ================= AMENITIES FINAL ================= */

.amenities-section {
    padding: 80px 0;
    text-align: center;
}

/* HEADER */
.amenities-header h2 {
    font-size: 34px;
    color: #fff;
    margin-bottom: 10px;
}

.amenities-header p {
    max-width: 600px;
    margin: auto;
    color: #ccc;
    margin-bottom: 80px;
}

/* WRAPPER */
.amenities-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start; /* 🔥 key change */
}


/* LEFT CARD (TALLER + SAFE SPACE) */
.cta-card {
    width: 50%;
    margin-left: 15%; /* stick to left */

    padding: 70px 60px;
    min-height: 520px;

    background: linear-gradient(
        160deg,
        rgba(45, 0, 0, 0.92),
        rgba(20, 20, 20, 0.95)
    );

    border-radius: 14px;
    box-shadow: 0 30px 70px rgba(0,0,0,0.8);
    border: 1px solid rgba(255,255,255,0.06);

    text-align: left;

    position: relative;
    z-index: 1;
}

.amenities-card {
    left: calc(50% - 40px); /* slight overlap into edge */
}


/* TEXT */
.cta-card h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #fff;
}

.cta-card p {
    color: #d0d0d0;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* RIGHT CARD (BIGGER + EDGE OVERLAP ONLY) */
.amenities-card {
    position: absolute;

    left: 55%; /* 🔥 key: starts after left card */
    top: 60%;
    transform: translateY(-50%);

    width: 42%;
    padding: 50px;

    border-radius: 14px;

    overflow: hidden;

    z-index: 2;
}

/* OVERLAY */
.amenities-card::before {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.85),
        rgba(0,0,0,0.75),
        rgba(40,0,0,0.9)
    );

    z-index: 1;
}

/* CONTENT */
.amenities-card * {
    position: relative;
    z-index: 2;
}

/* TITLE */
.amenities-card h3 {
    color: #fff;
    margin-bottom: 25px;
    font-size: 28px;
}

/* LIST */
.amenities-list li {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 14px;
    color: #eee;
    font-size: 20px;
}

/* ICON */
.amenities-list i {
    color: #ff4d4d;
    font-size: 18px;
}

/* 🔥 IMPORTANT: create safe space so text is never covered */
.cta-card {
    padding-right: 140px; /* 🔥 THIS FIXES OVERLAP ISSUE */
}

@media(max-width:991px){

    .amenities-section {
        padding: 80px 0;
    }

    /* STACK LAYOUT */
    .amenities-wrapper {
        flex-direction: column;
        align-items: center;
    }

    /* LEFT CARD */
    .cta-card {
        width: 100%;
        margin-left: 0;
        padding: 40px 25px;
        min-height: auto;

        text-align: center;
    }

    .cta-card h2 {
        font-size: 24px;
    }

    .cta-card p {
        font-size: 14px;
    }

    /* RIGHT CARD */
    .amenities-card {
        position: relative;
        width: 100%;
        margin-top: 20px;

        top: 0;
        left: 0;
        transform: none;

        padding: 30px 20px;
    }

    /* LIST */
    .amenities-list li {
        justify-content: center;
        font-size: 14px;
    }

    /* HEADER SPACING */
    .amenities-header p {
        margin-bottom: 40px;
    }
}
/* ================= SERVICES ================= */

.services-section {
    padding: 120px 0;
    text-align: center;
}

/* HEADER */
.services-header h2 {
    font-size: 34px;
    color: #fff;
    margin-bottom: 10px;
}

.services-header p {
    max-width: 650px;
    font-size: 18px;
    margin: auto;
    color: #ccc;
    margin-bottom: 60px;
    line-height: 1.7;
}

/* GRID */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* CARD */
.service-card {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 14px;
}

/* IMAGE */
.service-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;

    transition: 0.6s ease;
}

/* OVERLAY */
.service-card .overlay {
    position: absolute;
    inset: 0;

    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.8),
        rgba(0,0,0,0.6),
        rgba(40,0,0,0.8)
    );

    display: flex;
    flex-direction: column;
    justify-content: center; /* 🔥 vertical center */
    align-items: center;     /* 🔥 horizontal center */

    text-align: center;
    gap: 12px;

    opacity: 0;
    transition: 0.4s;
}

/* TEXT */
.service-card h3 {
    color: #fff;
    font-size: 26px;
    margin-bottom: 5px;
}

/* BUTTON STYLE */
.service-card span {
    font-size: 13px;
    letter-spacing: 1px;

    padding: 10px 18px;
    border-radius: 30px;

    background: linear-gradient(135deg, #a00000, #6b0000);
    color: #fff;

    border: 1px solid rgba(255,255,255,0.1);

    transition: 0.3s;
}

/* HOVER EFFECT */
.service-card span:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 0 15px rgba(160,0,0,0.5);
}

.service-card .overlay {
    transform: scale(0.95);
}

.service-card:hover .overlay {
    opacity: 1;
    transform: scale(1);
}

/* HOVER EFFECT */
.service-card:hover img {
    transform: scale(1.1);
    filter: brightness(0.8);
}

.service-card:hover .overlay {
    opacity: 1;
}

/* MOBILE */
@media(max-width:768px){
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card img {
        height: 450px;
    }
}

/* ================= TESTIMONIALS ================= */

.testimonials-section {
    padding: 80px 0;
    text-align: center;
}

/* HEADER */
.testimonials-header h2 {
    font-size: 34px;
    color: #fff;
    margin-bottom: 10px;
}

.testimonials-header p {
    max-width: 600px;
    margin: auto;
    color: #ccc;
    margin-bottom: 60px;
}

/* GRID */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* CARD */
.testimonial-card {
    padding: 35px 25px;
    border-radius: 14px;

    background: linear-gradient(
        160deg,
        rgba(45, 0, 0, 0.85),
        rgba(20, 20, 20, 0.95)
    );

    border: 1px solid rgba(255,255,255,0.06);

    box-shadow: 0 20px 50px rgba(0,0,0,0.7);

    text-align: center;

    transition: 0.4s;
}

/* HOVER */
.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 70px rgba(0,0,0,0.9);
}

/* QUOTE */
.quote {
    font-size: 15px;
    color: #ddd;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

/* NAME */
.testimonial-card h4 {
    font-size: 14px;
    color: #ff4d4d;
    font-weight: 500;
}

/* SMALL CENTERED IMAGE */
.testimonial-image {
    width: 130px;
    height: 70px;
    margin: 0 auto 15px; /* 🔥 centers it */

    border-radius: 8px; /* soft, not circle */
    overflow: hidden;

    box-shadow: 0 6px 15px rgba(0,0,0,0.4);
}

/* IMAGE */
.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* SUBTLE HOVER */
.testimonial-card:hover .testimonial-image img {
    transform: scale(1.05);
}

.testimonial-card {
    padding: 20px 20px 30px;
}

/* NAME */
.testimonial-card h4 {
    font-size: 14px;
    color: #ff4d4d;
    margin-top: 10px;
}


/* MOBILE */
@media(max-width:768px){
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* ================= FOOTER ================= */

.footer {
    padding: 100px 0 30px;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.9),
        rgba(20,0,0,0.95)
    );
}

/* CONTAINER */
.footer-container {
    max-width: 1200px;   /* 🔥 controls width */
    margin: 0 auto;      /* 🔥 centers it */
    padding: 0 20px;     /* 🔥 prevents edge sticking */

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* LOGO */
.footer-logo {
    width: 140px;
    margin-bottom: 15px;
}

/* TEXT */
.footer-text {
    color: #bbb;
    line-height: 1.7;
}

/* TITLES */
.footer-col h3 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 18px;
}

/* LINKS */
.footer-col a {
    display: block;
    color: #aaa;
    margin-bottom: 10px;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col a:hover {
    color: #ff4d4d;
}

/* SOCIALS */
.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    font-size: 20px;
    color: #fff;
    transition: 0.3s;
}

.footer-socials a:hover {
    color: #ff4d4d;
    transform: scale(1.2);
}

/* BOTTOM */
.footer-bottom {
    text-align: center;
    margin-top: 50px;
    color: #aaa;
    font-size: 14px;
}

.footer-bottom a {
    color: #ff4d4d;
    text-decoration: none;
}

/* ================= WHATSAPP FLOAT ================= */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;

    width: 55px;
    height: 55px;

    background: linear-gradient(135deg, #a00000, #6b0000); /* 🔥 brand */
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    font-size: 22px;

    box-shadow: 
        0 10px 25px rgba(0,0,0,0.5),
        0 0 15px rgba(160,0,0,0.4);

    z-index: 3000;

    transition: 0.3s;
}

/* HOVER */
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 
        0 0 25px rgba(160,0,0,0.7);
}

/* ================= MOBILE ================= */

@media(max-width:768px){

    .footer-container {
        grid-template-columns: repeat(2, 1fr); /* 🔥 2 columns */
        text-align: left;
        gap: 25px;
    }

    .footer-logo {
        margin: 0;
    }

    .footer-socials {
        justify-content: flex-start;
    }
}