:root {

    /* ðŸ”¥ BASE (DARK MODE) */
    --black: #0a0a0a;
    --black-soft: #121212;

    /* ðŸ”¥ GOLD */
    --gold: #C9A96A;
    --gold-soft: #E6D3A3;

    /* ðŸ”¥ PURPLE (YOUR BRAND) */
    --purple: rgb(88, 16, 67);
    --purple-soft: #E0A3B3;

    /* ðŸ”¥ TEXT */
    --white: #ffffff;
    --gray: #bfbfbf;
}

/* ================= GLOBAL ================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins', sans-serif;
    background:var(--black);
    color:var(--white);
}

html{
    scroll-behavior:smooth;
}

section{
    scroll-margin-top:100px;
}

/* ================= NAVBAR ================= */
/* LOGO */
.logo-container{
    position:fixed;
    top:20px;
    left:30px;
    z-index:3000;
}

.nav-logo{
    width:130px;
    transition:0.3s;
}

.nav-logo:hover{
    transform:scale(1.05);
}

/* MENU BUTTON */
.menu-toggle{
    position:fixed;
    top:30px;
    right:30px;
    color:#fff; /* gold */
    cursor:pointer;
    z-index:3000;
    display:flex;
    align-items:center;
    gap:8px;
}

.menu-text{
    font-size:22px;
    font-weight: 500px;
    color:#fff;
}

.menu-icon{
    font-size:30px;
}

/* BACKDROP */
.menu-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);

    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:340px;
    height:100%;
    background:linear-gradient(
        180deg,
        #000,
        rgb(88,16,67),
        #2B2B2B
    );
    transform:translateX(100%);
    transition:0.4s;
    z-index:4000;
    padding-top:100px;
}

.side-menu.open{
    transform:translateX(0);
}

/* CLOSE */
.close-btn{
    position:absolute;
    top:20px;
    right:25px;
    font-size:28px;
    color:#C9A96A;
    cursor:pointer;
}

/* LINKS */
.side-links{
    list-style:none;
    padding:0 30px;
}

.side-links li{
    margin:22px 0;
}

.side-links a{
    color:white;
    font-size:22px;
    text-decoration:none;
    position:relative;
    transition:0.3s;
}

/* GOLD UNDERLINE */
.side-links a::before{
    content:"";
    position:absolute;
    bottom:-4px;
    left:0;
    width:100%;
    height:2px;
    background:linear-gradient(90deg,#C9A96A,#E6D3A3);
    transform:scaleX(0);
    transition:0.3s;
}

.side-links a:hover::before{
    transform:scaleX(1);
}

.side-links a:hover{
    color:#C9A96A;
}

/* BUTTON */
.reserve-wrapper{
    margin-top:40px;
    padding:0 30px;
}

.reserve-btn{
    display:block;
    text-align:center;
    padding:14px 28px;

    /* ðŸ”¥ UNIQUE SHAPE */
    border-radius:50px 10px 50px 10px;

    background:linear-gradient(135deg, rgb(88,16,67), #E0A3B3);
    color:white;
    font-weight:600;
    text-decoration:none;

    box-shadow:0 0 15px rgba(88,16,67,0.6),
               0 0 30px rgba(224,163,179,0.3);

    position:relative;
    overflow:hidden;
    transition:0.4s;
}


.reserve-btn::before{
    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:100%;

    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.4),
        transparent
    );

    transition:0.6s;
}

.reserve-btn:hover::before{
    left:100%;
}

.reserve-btn:hover{
    transform:translateY(-3px) scale(1.05);

    /* ðŸ”¥ GOLD HOVER */
    background:linear-gradient(135deg,#C9A96A,#E6D3A3);

    box-shadow:0 0 20px rgba(201,169,106,0.6),
               0 0 40px rgba(230,211,163,0.3);
}

.hide-on-scroll{
    opacity:0;
    transform:translateY(-30px);
    pointer-events:none;
    transition:0.4s ease;
}


/* ===== DROPDOWN ===== */

/* DROPDOWN FIX */
.has-dropdown {
    position: relative;
}

/* HIDDEN BY DEFAULT */
.gallery-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    list-style: none;
    padding-left: 15px;
}

/* SHOW */
.gallery-submenu.open {
    max-height: 150px;
}

/* LINKS */
.gallery-submenu li {
    margin: 10px 0;
}

.gallery-submenu a {
    font-size: 17px;
    color: #ccc;
    display: block;
}
/* ================= HERO ================= */

.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    object-fit: cover;
    transform: translate(-50%, -50%);
}

.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background:rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.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;
}

.hero-content h1 {
    font-size: 55px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 22px;
    margin-bottom: 25px;
    opacity: 0.9;
}

.hero-btn {
    margin-left: 0;
}

/* Wave */
.wave {
    position: absolute;
    bottom: 0;
    width: 100%;
    line-height: 0;
}

.wave svg {
    display: block;
    width: 100%;
    height: 120px;
}

.wave path {
    fill: var(--cream);
}

/* MOBILE HERO */
@media (max-width: 768px) {

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 15px;
    }

    .hero {
        height: 90vh;
    }
}

/* ================= ABOUT SECTION ================= */

.about-section {
    background: #0a0a0a; /* match body */
    padding: 100px 60px;
}

.about-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 80px;
}

/* ===== LEFT IMAGES ===== */

.about-images {
    flex: 1;
    position: relative;
}

/* MAIN IMAGE (CONTROL HEIGHT HERE) */
.main-img {
    width: 100%;
    height: 500px;
    border-radius: 20px;

    object-fit: cover;
    object-position: center;

    border: 8px solid #ffffff;

    box-shadow: 0 20px 60px rgba(0,0,0,0.6);

    /* 🔥 ADD THIS FOR VIDEO */
    display: block;
}

.main-img {
    transition: transform 0.6s ease;
}

.main-img:hover {
    transform: scale(1.03);
}

.small-img {
    width: 40%;
    height: 200px;
    position: absolute;
    bottom: -40px;
    right: -40px;

    border-radius: 15px;

    /* ðŸ”¥ MATCH MAIN IMAGE */
    border: 6px solid #ffffff;

    object-fit: cover;
    object-position: center;

    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

/* ===== TEXT SIDE ===== */

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 40px;
    margin: 15px 0 20px;

    /* ðŸ”¥ GOLD HEADLINE (premium contrast) */
    color: #fff;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;

    /* ðŸ”¥ SOFT WHITE (not harsh) */
    color: #bfbfbf;

    margin-bottom: 20px;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

    .about-container {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .main-img {
        height: 350px; /* mobile control */
    }

    .small-img {
        position: relative;
        height: 200px;
        width: 80%;
        bottom: 0;
        right: 0;
        margin-top: 20px;
    }

    .about-section {
        padding: 80px 20px;
    }

    .about-text h2 {
        font-size: 28px;
    }
}

/* ================= MENU SECTION ================= */

.menu-section {
    padding: 40px 60px;
    background: #0a0a0a;
}

/* HEADER */
.menu-header {
    text-align: center;
    max-width: 700px;
    margin: auto;
    margin-bottom: 70px;
}

.menu-header h2 {
    font-size: 40px;
    color: #fff;
}

.menu-header p {
    color: #bfbfbf;
}

/* ===== GALLERY ===== */
.menu-gallery {
    position: relative;
    max-width: 1200px;
    margin: auto;
}

.gallery-track {
    display: flex;
    gap: 20px;
    overflow-x: scroll;
    scroll-behavior: smooth;
}

/* HIDE SCROLLBAR */
.gallery-track::-webkit-scrollbar {
    display: none;
}

.gallery-track img {
    width: 250px;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    cursor: pointer;
    transition: 0.4s;
}

.gallery-track img:hover {
    transform: scale(1.05);
}

/* ARROWS */
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.6);
    border: none;
    color: white;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 50%;
}

.left-arrow { left: 10px; }
.right-arrow { right: 10px; }


/* LIGHTBOX */
.lightbox {
    display: none;              /* stays hidden */
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 999;
    text-align: center;         /* fallback centering */
}

.lightbox img {
    position: absolute;         /* 🔥 key trick */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);  /* perfect center */

    max-width: 90%;
    max-height: 85%;
    object-fit: contain;
}


.gallery-track img {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-track img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.close {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}

.lb-arrow {
    position: absolute;
    top: 50%;
    font-size: 40px;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.lb-arrow.left { left: 50px; }
.lb-arrow.right { right: 50px; }

/* CTA */
.menu-cta {
    text-align: center;
    margin-top: 60px;
}

.menu-cta p {
    color: #bfbfbf;
    margin-bottom: 20px;
}

/* MOBILE */
@media (max-width: 768px) {

    .menu-section {
        padding: 40px 20px;
    }

    .gallery-track {
        gap: 15px;
        padding-left: 10px;
    }

    .gallery-track img {
        min-width: 80%;   /* 🔥 THIS is the key */
        height: 260px;
        border-radius: 12px;
    }

    /* Hide arrows on mobile (cleaner UX) */
    .arrow {
        display: none;
    }
}

/* ================= CTA SECTION ================= */

.cta-section {
    position: relative;
    height: 90vh; /* ðŸ”¥ BIG SECTION */
    background: url('../images/g1.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
}

/* Overlay */
.cta-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        rgba(0,0,0,0.5),
        rgba(88,16,67,0.6)
    );
}

/* Container */
.cta-container {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    padding: 0 80px;
}

/* BOX */
.cta-box {
    position: relative;
    max-width: 500px;
    padding: 50px;

    /* GLASS EFFECT */
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);

    border-radius: 20px;

    color: #fff;
}

/* TITLE */
.cta-box h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

/* TEXT */
.cta-box p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* CTA BUTTON = SAME AS RESERVE BUTTON */
.cta-btn{
    display:inline-block;
    text-align:center;
    padding:14px 28px;

    /* ðŸ”¥ SAME UNIQUE SHAPE */
    border-radius:50px 10px 50px 10px;

    background:linear-gradient(135deg, rgb(88,16,67), #E0A3B3);
    color:white;
    font-weight:600;
    text-decoration:none;

    box-shadow:0 0 15px rgba(88,16,67,0.6),
               0 0 30px rgba(224,163,179,0.3);

    position:relative;
    overflow:hidden;
    transition:0.4s;

    margin-left:0;
}

/* SHINE EFFECT */
.cta-btn::before{
    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:100%;

    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.4),
        transparent
    );

    transition:0.6s;
}

.cta-btn:hover::before{
    left:100%;
}

/* HOVER */
.cta-btn:hover{
    transform:translateY(-3px) scale(1.05);

    background:linear-gradient(135deg,#C9A96A,#E6D3A3);

    box-shadow:0 0 20px rgba(201,169,106,0.6),
               0 0 40px rgba(230,211,163,0.3);
}

/* VERTICAL TEXT */
.cta-vertical {
    position: absolute;
    top: 20px;
    right: -40px;

    writing-mode: vertical-rl;
    transform: rotate(180deg);

    font-size: 12px;
    letter-spacing: 4px;
    color: var(--gold);
    opacity: 0.8;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

    .cta-section {
        height: auto;
        padding: 80px 20px;
    }

    .cta-container {
        justify-content: center;
        padding: 0;
    }

    .cta-box {
        padding: 30px;
        text-align: center;
    }

    .cta-box h2 {
        font-size: 26px;
    }

    .cta-vertical {
        display: none;
    }
}

/* ================= GALLERY SECTION ================= */

.gallery-section {
    position: relative;
    padding: 120px 60px;
    background: url('../images/about3.jpg') center/cover no-repeat;
}

/* OVERLAY */
.gallery-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;

    background: linear-gradient(
        135deg,
        rgba(88, 16, 67, 0.85) 0%,   /* your main purple */
        rgba(0, 0, 0, 0.7) 50%,      /* depth */
        rgba(201, 169, 106, 0.25) 100% /* subtle gold glow */
    );
}

/* CONTAINER */
.gallery-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: auto;
}

/* HEADER */
.gallery-header {
    text-align: center;
    margin-bottom: 60px;
    color: #fff;
}

.gallery-header h2 {
    font-size: 42px;
    margin-bottom: 10px;
}

.gallery-header p {
    opacity: 0.8;
}

/* GRID */
.gallery-grid {
    display: flex;
    gap: 20px;
}

/* ===== CENTER LAYOUT FIX ===== */

.gallery-center {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 2;
}

/* TOP ROW (2 images side by side) */
.gallery-center-top {
    display: flex;
    gap: 20px;
}

.gallery-center-top .gallery-item {
    flex: 1;
}

/* BOTTOM (stretched image) */
.gallery-center-bottom {
    width: 100%;
}

/* ITEMS */
.gallery-item {
    overflow: hidden;
    border-radius: 20px;
}

/* IMAGES */
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

/* SIZES */
.tall {
    flex: 1;
    height: 500px;
}

.medium {
    height: 240px;
}

.wide {
    height: 243px;
}

/* HOVER EFFECT */
.gallery-item:hover img {
    transform: scale(1.08);
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

    /* ðŸ”¥ HARD LIMIT container height */
    .gallery-item {
        height: 300px !important;
        max-height: 300px !important;
        overflow: hidden !important;
    }

    /* ðŸ”¥ FORCE image to respect container */
    .gallery-item img {
        height: 100% !important;
        width: 100% !important;
        object-fit: cover !important;
        display: block;
    }

    /* ðŸ”¥ CRITICAL: kill inherited stretch */
    .gallery-item,
    .gallery-center,
    .gallery-center-top,
    .gallery-center-bottom {
        align-items: unset !important;
    }
}

/* ================= BLOG SECTION ================= */

.blog-section {
    background: #0a0a0a;
    padding: 120px 60px;
}

/* HEADER */
.blog-header {
    text-align: center;
    max-width: 700px;
    margin: auto;
    margin-bottom: 70px;
}

/* HEADER */
.blog-header h2 {
    font-size: 40px;
    margin: 15px 0;

    /* ðŸ”¥ GOLD TITLE */
    color: #fff;
}

.blog-header p {
    color: #bfbfbf;
    font-size: 16px;
    line-height: 1.7;
}

/* CARDS */
.blog-cards {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

/* CARD */
.blog-card {
    width: 320px;
}

/* IMAGE SHAPE (LEAF STYLE) */
.blog-image {
    position: relative;
    overflow: hidden;

    border-radius: 60px 15px 60px 15px; /* ðŸ”¥ same as button but bigger */
}

.blog-image {
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.blog-image img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    transition: 0.5s ease;
}

/* HOVER */
.blog-image:hover img {
    transform: scale(1.08);
}

/* TITLE BAR */
.blog-title-bar {
    position: absolute;
    bottom: 0;
    width: 100%;

    background: rgba(88,16,67,0.9); /* deeper purple */
    color: #fff;
    
    padding: 12px;
    font-size: 17px;
    text-align: center;
}

/* DESCRIPTION */
.blog-desc {
    display: block;
    margin-top: 15px;
    color: #bfbfbf;
    font-size: 15px;
    line-height: 1.6;
    text-decoration: none;
    transition: 0.3s;
}

/* HOVER EFFECT */
.blog-desc:hover {
    color: #C9A96A;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

    .blog-section {
        padding: 80px 20px;
    }

    .blog-header h2 {
        font-size: 28px;
    }

    .blog-card {
        width: 100%;
    }

    .blog-image img {
        height: 280px;
    }
}

/* ================= TESTIMONIAL SECTION ================= */

.testimonial-section {
    background: var(--cream);
    padding: 60px 60px;
    text-align: center;
}

.testimonial-header h2 {
    font-size: 40px;
    margin: 15px 0 60px;
    color: #fff;
}

/* CONTAINER */
.testimonial-container {
    position: relative;
    max-width: 700px;
    margin: auto;
    height: 260px; /* ðŸ”¥ slightly bigger fixed height */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* TESTIMONIAL */
.testimonial {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;

    transform: translateY(-50%) translateY(10px);
    opacity: 0;

    transition: opacity 1s ease, transform 1s ease;
}

.testimonial.active {
    opacity: 1;
    transform: translateY(-50%) translateY(0);
}

/* IMAGE */
.testimonial img {
    width: 60px;
    margin-bottom: 20px;
}

/* TEXT */
.testimonial p {
    font-size: 16px;
    line-height: 1.8;
    color: #bfbfbf;
    margin-bottom: 20px;
}

/* NAME */
.testimonial h4 {
    color: #fff;
    font-weight: 600;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

    .testimonial-section {
        padding: 80px 20px;
    }

    .testimonial-header h2 {
        font-size: 28px;
    }

    .testimonial-container {
        height: auto;
    }

    .testimonial {
        position: relative;
        opacity: 1;
        margin-bottom: 40px;
    }
}

/* ================= FOOTER ================= */

.footer {
    /* ðŸ”¥ GRADIENT DARK BACKGROUND */
    background: linear-gradient(
        135deg,
        rgb(88,16,67),
        #111
    );
    color: #fff;
    padding: 80px 60px 30px;
}

/* GRID */
.footer-container{
    display:grid;
    grid-template-columns: repeat(4, 1fr);
    gap:40px;
    max-width:1200px;
    margin:auto;
}

/* LOGO COLUMN */
.footer-logo {
    width: 200px;
    margin-bottom: 15px;

    padding-left: 40px; /* ðŸ”¥ ONLY logo moves */
}


.footer-text {
    font-size: 14px;
    line-height: 1.6;
    color: #ccc;
}

/* HEADINGS */
.footer-col h3 {
    margin-bottom: 15px;
    color: var(--gold);
}

/* LINKS */
.footer-col a {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 8px;
    transition: 0.3s;
}

.footer-col a:hover {
    color: var(--gold);
}

/* HOURS */
.footer-hours {
    margin-top: 20px;
}

.footer-hours h4 {
    margin-bottom: 8px;
    color: var(--gold);
}

/* SOCIAL ICONS */

.footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    border-radius: 50%;
    margin-right: 10px;

    background: rgba(255,255,255,0.08);
    color: var(--gold);

    font-size: 18px;

    transition: all 0.3s ease;
}

/* HOVER EFFECTS (SUBTLE BRAND TOUCH) */

.footer-socials a:hover {
    transform: translateY(-3px) scale(1.05);
}

/* INSTAGRAM HOVER */
.footer-socials a:nth-child(1):hover {
    background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
    color: #fff;
}

/* TIKTOK HOVER */
.footer-socials a:nth-child(2):hover {
    background: #000;
    color: #fff;
}

/* MAP */
.footer-map iframe {
    width: 100%;
    height: 220px;
    border-radius: 10px;
    border: none;
}

/* MAP COLUMN SPAN */
.footer-map-col {
    grid-column: span 1;
}

/* BOTTOM */
.footer-bottom {
    text-align: center;
    margin-top: 40px;
    font-size: 13px;
    color: #aaa;
}

/* FOOTER CREDIT LINK */

.footer-contact-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
    margin-left: 5px;

    position: relative;
    transition: 0.3s ease;
}

/* subtle underline animation */
.footer-contact-link::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 1px;
    left: 0;
    bottom: -2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.footer-contact-link:hover {
    color: #fff;
}

.footer-contact-link:hover::after {
    width: 100%;
}

@media (max-width: 768px) {
    .footer-logo {
        max-width: 120px; /* smaller logo on mobile */
        margin-bottom: 15px;
    }
}
/* ================= WHATSAPP ================= */

.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;

    width: 65px;
    height: 65px;

    background: linear-gradient(135deg, var(--purple), var(--purple-soft));
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 28px;
    color: #fff;

    box-shadow: 0 8px 25px rgba(88,16,67,0.4);

    z-index: 1000;
    transition: 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(201,169,106,0.5);
}
/* ================= MOBILE ================= */

@media (max-width: 768px) {

    .footer {
        padding: 60px 20px 20px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    /* ðŸ”¥ REMOVE LEFT PADDING ON MOBILE */

    .footer-logo {
     padding-left: 0;
        }

    .footer-map iframe {
        height: 180px;
    }
}

/* ===== FORCE FIX: MOBILE GALLERY ===== */
@media (max-width: 768px) {

    .gallery-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 10px !important;
    }

    .gallery-center,
    .gallery-center-top {
        display: flex !important;
        flex-direction: column !important;
        gap: 10px !important;
    }

    /* ðŸ”¥ OVERRIDE EVERYTHING */
    .gallery-item,
    .gallery-item.tall,
    .gallery-item.medium,
    .gallery-item.wide {
        height: 150px !important;
        width: 100% !important;
    }

    .gallery-item img {
        height: 100% !important;
        object-fit: cover;
    }
}
@media (max-width: 768px) {

    .testimonial-container {
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    .testimonial {
        position: relative;
        opacity: 1 !important;
        transform: none !important;

        display: block;
    }

    /* ðŸ”¥ disable animation completely */
    .testimonial.active {
        opacity: 1;
        transform: none;
    }
}