/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', 'Segoe UI', sans-serif;
}

body {
    background: #fafaf8;
    color: #1f1f1f;
    position: relative;
}
html {
    scroll-behavior: smooth;
}


/* COMMON */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
}

/* ===== NAVBAR ===== */
.navbar {
    background: #ffffff;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #ffffff;
}

#home {
    scroll-margin-top: 90px;
    /* height of navbar */
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.navbar.scrolled {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo img {
    height: 65px;
    width: auto;
    object-fit: contain;
}

/* Elegant Text */
.logo-text {
    font-size: 22px;
    font-weight: 700;
    background: linear-gradient(135deg, #c9a24d, #9e7c2f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.5px;
}

/* Hover effect */
.logo:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .logo img {
        height: 45px;
    }

    .logo-text {
        font-size: 18px;
    }
}


.nav-links {
    list-style: none;
    display: flex;
    gap: 28px;
}

.nav-links a {
    color: #333;
    font-weight: 500;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background: #c9a24d;
    transition: 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}
/* RESPONSIVE */
@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }
}

.hamburger {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: #c9a24d;
}

/* MOBILE NAV */
@media (max-width: 900px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 80px;
        right: 0;
        background: white;
        width: 100%;
        flex-direction: column;
        align-items: center;
        display: none;
        padding: 20px 0;
        border-top: 1px solid #eee;
    }

    .nav-links.show {
        display: flex;
    }
}


/* ===== HERO ===== */
.btn-primary {
    background: linear-gradient(135deg, #c9a24d, #9e7c2f);
    color: white;
    padding: 12px 22px;
    border-radius: 6px;
    font-weight: 600;
}

.btn-secondary {
    background: #c9a24d;
    color: white;
    padding: 14px 26px;
    border-radius: 6px;
    font-weight: 600;
}

.btn-outline {
    border: 2px solid #c9a24d;
    color: #c9a24d;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
}

.hero {
    padding: 80px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

.hero-content h1 {
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content h1 span {
    color: #c9a24d;
}

.hero-content p {
    font-size: 18px;
    color: #555;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.hero-image img {
    width: 100%;
    border-radius: 14px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}


/* ========================= */
/* 📱 MOBILE RESPONSIVENESS */
/* ========================= */

@media (max-width: 768px) {

    .hero {
        padding: 50px 16px;
    }

    .hero-grid {
        grid-template-columns: 1fr; /* stack layout */
        gap: 40px;
        text-align: center;
    }
}


/* ===== ABOUT ===== */
.about-lounge {
    padding: 10px 0;
    background: #fafaf8;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2 equal columns */
    gap: 16px;
}

/* Make every image square */
.about-images img {
    width: 100%;
    aspect-ratio: 1 / 1;
    /* Makes it square */
    border-radius: 16px;
    object-fit: cover;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Hover Effect */
.about-images img:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

/* Responsive for mobile */
@media (max-width: 768px) {
    .about-images {
        grid-template-columns: 1fr;
    }
}

.about-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.about-content h2 span {
    color: #c9a24d;
}

.about-content p {
    color: #555;
    margin-bottom: 16px;
    line-height: 1.7;
}

/* Mobile */
@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== GALLERY ===== */
.gallery {
    padding: 100px 0;
}

.gallery .section-title {
    text-align: center;
    font-size: 40px;
    margin-bottom: 10px;
}

.gallery .section-subtitle {
    text-align: center;
    margin-bottom: 50px;
    color: #555;
}

/* Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Square Items */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    cursor: pointer;
    aspect-ratio: 1 / 1;
    opacity: 0;
    transform: translateY(30px);
    transition: 0.6s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

/* Fade in when visible */
.gallery-item.show {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.lightbox img {
    max-width: 90%;
    max-height: 85%;
    border-radius: 12px;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
}

/* ===== FACILITIES ===== */
.facilities {
    padding: 10px 5%;
}

.section-subtitle {
    text-align: center;
    color: #555;
    margin-bottom: 60px;
    font-size: 16px;
}

/* FIXED GRID */
.facilities .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}

.facility-card {
    background: #efefef;
    padding: 60px 30px;
    border-radius: 25px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    border-top: 3px solid transparent;
}

.facility-card:hover {
    transform: translateY(-8px);
    border-top: 3px solid #c9a227;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.facility-card:active {
    transform: translateY(-6px);
    border-top: 3px solid #c9a227;
}

.icon-circle {
    width: 95px;
    height: 95px;
    margin: 0 auto 25px;
    background: #e6e1d8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 4s ease-in-out infinite;
}

.icon-circle svg {
    width: 36px;
    height: 36px;
    stroke: #c9a227;
    stroke-width: 2;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }

    100% {
        transform: translateY(0);
    }
}

.facility-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1c1c1c;
    font-weight: 600;
}

.facility-card p {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
}


/* ===== REVIEWS ===== */
.reviews-section {
    padding: 100px 0;
    text-align: center;
}

.reviews-grid {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease;
}

.review-card:hover {
    transform: translateY(-6px);
}

.review-stars {
    color: #c9a24d;
    font-size: 18px;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.review-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.review-card h4 {
    font-weight: 600;
    color: #333;
}

/* Tablet */
@media (max-width: 992px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 600px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .review-card {
        padding: 30px 20px;
    }
}

/* ===== PRICING ===== */
.pricing {
    padding: 10px 0;
    background: #fafaf8;
}

/* Title */
.section-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #222;
}

/* Tabs */
.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.tab-btn {
    padding: 12px 35px;
    border-radius: 30px;
    border: 2px solid #c9a24d;
    background: transparent;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

.tab-btn.active {
    background: linear-gradient(135deg, #c9a24d, #a67c1f);
    color: #fff;
    box-shadow: 0 6px 18px rgba(201, 162, 77, 0.4);
}

/* Tab Content */
.pricing-content {
    display: none;
    animation: fadeIn 0.4s ease forwards;
}

.pricing-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

/* Cards */
.price-card {
    background: #fff;
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    border: 1px solid #eee;
    transition: 0.3s ease;
}

.price-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.08);
}

.price-card.featured {
    border: 2px solid #c9a24d;
}

/* Price */
.price {
    font-size: 42px;
    font-weight: bold;
    color: #c9a24d;
    margin: 20px 0;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 20px;
    margin-right: 8px;
}

/* List */
.price-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.price-card ul li {
    margin: 10px 0;
}

/* Buttons */
.btn-outline {
    border: 2px solid #c9a24d;
    color: #c9a24d;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary {
    background: #c9a24d;
    color: #fff;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
}

/* Ribbon */
.offer-card {
    position: relative;
    overflow: hidden;
}

.ribbon {
    position: absolute;
    top: 20px;
    right: -45px;
    background: linear-gradient(45deg, #d10000, #ff3c3c);
    color: #fff;
    padding: 8px 50px;
    font-size: 12px;
    font-weight: bold;
    transform: rotate(45deg);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* GST Note */
.pricing-note {
    text-align: center;
    margin-top: 60px;
    font-size: 15px;
    color: #444;
}
.gst-highlight{
    color:#c9a24d;
}

/* ===== PRICING 2 ===== */
.pricing-wrapper{
    max-width:1200px;
    margin:auto;
}

.heading{
    text-align:center;
    margin-bottom:35px;
}

.heading h1{
    color:#002b67;
    font-size:60px;
    font-weight:900;
    line-height:1;
}

.heading h2{
    color:rgb(201, 162, 77);
    font-size:60px;
    font-weight:900;
    line-height:1;
}

.pricing-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}

.package-card{
    background:#fff;
    border-radius:20px;
    box-shadow:0 3px 15px rgba(0,0,0,.08);
    padding:18px;
}

.package-title{
    height:48px;
    border-radius:50px;
    display:flex;
    align-items:center;
    color:#fff;
    font-weight:700;
    font-size:15px;
    padding-left:58px;
    position:relative;
    margin-bottom:15px;
}

.basic{
    background:#002b67;
}

.premium{
    background:rgb(201, 162, 77);
}

.package-icon{
    position:absolute;
    left:-10px;
    width:52px;
    height:52px;
    border-radius:50%;
    border:3px solid #fff;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    font-size:18px;
}

.basic-icon{
    background:#002b67;
}

.premium-icon{
    background:rgb(201, 162, 77);
}

.row-item{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:14px 0;
    border-bottom:1px solid #ececec;
}

.row-item:last-child{
    border-bottom:none;
}

/* .row-item span{
    display:flex;
    align-items:center;
    gap:8px;
    color:#333;
    font-size:14px;
} */

.row-item strong{
    font-size:30px;
    font-weight:800;
    color:#002b67;
}

.premium-text strong{
    color:rgb(201, 162, 77);
}

.badge{
    background:#002b67;
    color:#fff;
    font-size:9px;
    padding:3px 8px;
    border-radius:20px;
    margin-left:4px;
}

.badge.gold{
    background:rgb(201, 162, 77);
}

.save-section{
    margin-top:20px;
    background:#fff;
    border-radius:18px;
    box-shadow:0 3px 15px rgba(0,0,0,.08);
    padding:25px;
}

.save-title{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:15px;
    font-size:16px;
    font-weight:700;
}

.save-title::before,
.save-title::after{
    content:"";
    width:60px;
    height:2px;
    background:rgb(201, 162, 77);
}

.save-grid{
    margin-top:25px;
    display:grid;
    grid-template-columns:repeat(3,1fr);
}

.save-item{
    text-align:center;
    border-right:1px solid #ddd;
}

.save-item:last-child{
    border-right:none;
}

.save-icon{
    width:46px;
    height:46px;
    background:#f8efe3;
    color:#002b67;
    border-radius:50%;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:center;
}

.save-item p{
    margin-top:8px;
    font-size:13px;
}

.save-item h4{
    color:#002b67;
    font-size:30px;
    font-weight:800;
}

.contact-section1{
    margin-top:20px;
    background:#fff;
    border:1px solid rgb(201, 162, 77);
    border-radius:16px;
    padding:18px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.contact-item{
    display:flex;
    align-items:center;
    gap:12px;
}

.contact-circle{
    width:48px;
    height:48px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:18px;
}

.location{
    background:#002b67;
}

.phone{
    background:rgb(201, 162, 77);
}

.contact-text{
    color:#333;
    font-size:15px;
    font-weight:500;
}

.phone-number{
    font-size:20px;
    font-weight:800;
    color:#222;
}

.contact-divider{
    width:1px;
    height:55px;
    background:#d8d8d8;
}

    .plan-name{
    display:flex;
    align-items:center;
    gap:8px;
    color:#1d1d1d;
    font-size:14px;
    font-weight:500;
}

.calendar-icon{
    color:#002b67;
    font-size:16px;
    width:18px;
    min-width:18px;
}

.save-badge{
    background:#002b67;
    color:#fff;
    border-radius:20px;
    padding:3px 10px;
    font-size:9px;
    font-weight:700;
    text-transform:uppercase;
    line-height:1;
    letter-spacing:.4px;
    margin-left:4px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    height:16px;
}

.premium-text .save-badge{
    background:rgb(201, 162, 77);
}

@media (max-width: 768px) {

    .heading h1,
    .heading h2 {
        font-size: 38px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }
    .save-title {
        font-size: 10px;
        gap: 8px;
        font-weight: 700;
    }

    /* KEEP 3 COLUMNS ON MOBILE */
    .save-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
    }

    .save-item {
        border-right: 1px solid #ddd;
        padding: 0 8px;
    }

    .save-item:last-child {
        border-right: none;
    }

    .save-item p {
        font-size: 11px;
    }

    .save-item h4 {
        font-size: 18px;
    }

    .save-icon {
        width: 38px;
        height: 38px;
    }

    /* KEEP CONTACT SECTION HORIZONTAL */
    .contact-section1 {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 12px;
        gap: 0;
    }

    .contact-divider {
        display: block;
        width: 1px;
        height: 45px;
        background: #d8d8d8;
    }

    .contact-item {
        gap: 8px;
    }

    .contact-circle {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }

    .contact-text {
        font-size: 12px;
        line-height: 1.4;
    }

    .phone-number {
        font-size: 16px;
        white-space: nowrap;
    }

    .plan-name{
    display:flex;
    align-items:center;
    gap:8px;
    color:#1d1d1d;
    font-size:14px;
    font-weight:500;
}

.calendar-icon{
    color:#002b67;
    font-size:16px;
    width:18px;
    min-width:18px;
}

.save-badge{
    background:#002b67;
    color:#fff;
    border-radius:20px;
    padding:3px 10px;
    font-size:9px;
    font-weight:700;
    text-transform:uppercase;
    line-height:1;
    letter-spacing:.4px;
    margin-left:4px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    height:16px;
}

.premium-text .save-badge{
    background:rgb(201, 162, 77);
}
}
/* ===== RULES ===== */
.rules {
    padding: 10px 0;
    background: #fafaf8;
}

.rules-title {
    text-align: center;
    font-size: 42px;
    margin-bottom: 20px;
}

.rules-title span {
    color: #c9a24d;
}

.rules-sub {
    text-align: center;
    max-width: 700px;
    margin: auto;
    color: #555;
    line-height: 1.7;
}

.rules-links {
    text-align: center;
    margin: 20px 0 50px;
}

.rules-links a {
    color: #c9a24d;
    font-weight: 600;
}

.rules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.rule-card {
    background: #fff;
    padding: 26px 30px;
    border-radius: 12px;
    border: 1px solid #eee;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: 0.3s;
}

.rule-card span {
    font-size: 22px;
    color: #c9a24d;
}

.rule-card:hover {
    border-color: #c9a24d;
    transform: translateX(4px);
}

/* POPUP BACKDROP */
.rules-popup {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
}

/* POPUP BOX */
.rules-popup-box {
    background: #fff;
    width: 100%;
    max-width: 620px;
    max-height: 80vh;
    overflow-y: auto;
    border-radius: 16px;
    padding: 30px;
    position: relative;
    transform: scale(0.95);
    opacity: 0;
    transition: all 0.25s ease;
}

/* ACTIVE STATE */
.rules-popup.show .rules-popup-box {
    transform: scale(1);
    opacity: 1;
}

/* CLOSE BUTTON */
.rules-close {
    position: absolute;
    top: 14px;
    right: 14px;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
}

/* CONTENT */
.rules-content {
    display: none;
}

.rules-content h3 {
    color: #c9a24d;
    margin-bottom: 12px;
}

.rules-content ul {
    padding-left: 18px;
}

.rules-content li {
    margin-bottom: 10px;
    line-height: 1.6;
}

/* MOBILE */
@media (max-width: 600px) {
    .rules-popup-box {
        padding: 20px;
    }
}

/* ===== CONTACT ===== */
.contact-section {
    padding: 80px 0;
    background: #fafaf8;
    text-align: center;
}

.contact-section .section-title span {
    color: #c9a24d;
}

.contact-desc {
    max-width: 750px;
    margin: 20px auto 30px;
    color: #555;
    line-height: 1.6;
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.contact-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.contact-links a:hover {
    color: #c9a24d;
}

/* Social Icons */
.contact-social {
    display: flex;
    justify-content: center;
    gap: 18px;
}

.contact-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c9a24d;
    font-size: 16px;
    transition: 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-social a:hover {
    background: #c9a24d;
    color: #fff;
}

/* Mobile First */
@media (max-width: 600px) {
    .contact-links {
        flex-direction: column;
        gap: 10px;
    }
}

/* =========================
   FINAL CALL TO ACTION
========================= */

.final-cta {
    padding: 80px 0;
    text-align: center;
}

.final-cta h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1f1f1f;
}

.final-cta p {
    max-width: 600px;
    margin: 0 auto 35px;
    color: #555;
    font-size: 16px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Primary Button (Gold Gradient) */
.cta-primary {
    background: linear-gradient(135deg, #c9a24d, #9e7c2f);
    color: #fff;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
    box-shadow: 0 8px 20px rgba(201,162,77,0.3);
}

.cta-primary:hover {
    transform: translateY(-3px);
}

/* Outline Button */
.cta-outline {
    border: 2px solid #c9a24d;
    color: #c9a24d;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.cta-outline:hover {
    background: #c9a24d;
    color: #fff;
}
/* Responsive */
@media (max-width: 600px) {
    .final-cta {
        padding: 60px 20px;
    }

    .final-cta h2 {
        font-size: 26px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
}

/* ===== FOOTER ===== */
.site-footer {
    background:
        linear-gradient(rgba(27, 27, 27, 0.85),
            rgba(33, 33, 33, 0.85)),
        url("https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQWto4ToMhdPNn2qnVvhjqFa3-GoMehH3T-oTj_x1Ml2bEVMT_UhZBbVKA&s") center / cover no-repeat;
    color: #fff;
    padding-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2.3fr 1fr 1fr;
    gap: 40px;
}

.footer-map iframe {
    width: 100%;
    height: 260px;
    border-radius: 16px;
    border: 0;
    position: relative;
    z-index: 1; 
}

.footer-brand h3,
.footer-links h4 {
    color: #c9a24d;
    margin-bottom: 12px;
}

.footer-links a {
    display: block;
    margin-bottom: 8px;
    color: #ccc;
}

.social-btn {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.social-btn i {
    color: #fff;
    font-size: 20px;
}

.social-btn:hover {
    background: #c9a24d;
    transform: translateY(-3px);
}

.social-btn:hover i {
    color: #000;
}

/* =========================
   FOOTER LEGAL STRIP
========================= */

.footer-bottom {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  background-color: black;
}

.footer-bottom p {
  margin: 0px 0;
  font-size: 13px;
  color: #bbb;
}

.footer-legal {
  font-size: 12px;
  color: #999;
}
/* MOBILE */
@media (max-width: 600px) {

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-map iframe {
        height: 200px;
    }
}

/* =========================
   WHATSAPP FLOATING BUTTON
========================= */

.whatsapp-float {
  position: fixed !important;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  z-index: 999999 !important;
  transition: all 0.3s ease;
  animation: whatsappPulse 2s infinite;
}

.whatsapp-float i {
  font-size: 30px;
  color: #ffffff;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  animation: none;
}

@keyframes whatsappPulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.7); }
  70% { box-shadow: 0 0 0 18px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* Mobile only size adjustment */
@media (max-width: 600px) {
  .whatsapp-float {
    width: 55px;
    height: 55px;
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-float i {
    font-size: 26px;
  }
}