.gradient-text {
    font-weight: 700;
    /* font-bold */
    font-size: 1.125rem;
    /* text-lg = 18px */
    font-family: 'Playfair Display', serif;
    white-space: nowrap;

    background: linear-gradient(to right,
            #d4af37,
            #f5e27a,
            #b8860b);

    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* md:text-3xl (min-width: 768px) */
@media (min-width: 768px) {
    .gradient-text {
        font-size: 1.875rem;
        /* text-3xl = 30px */
    }
}


.fixed-header {
    position: fixed;
    /* fixed */
    top: 0;
    /* top-0 */
    width: 100%;
    /* w-full */
    z-index: 50;
    /* z-50 */

    background: linear-gradient(to bottom right,
            /* bg-gradient-to-br */
            #0a0f1e,
            #00333d,
            #000000);

    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    /* shadow-md */
    font-family: 'Poppins', sans-serif;
    /* font-[Poppins] */
}


.gradient-link {
    font-weight: 500;
    /* font-medium */

    background: linear-gradient(to right,
            /* bg-gradient-to-r */
            #d4af37,
            #f5e27a,
            #b8860b);

    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
    /* transition duration-300 */
}

.gradient-link:hover {
    color: #6b5e45;
    /* hover:text-[#6b5e45] */
    transform: scale(1.05);
    /* hover:scale-105 */
}


.gradient-badge {
    display: flex;
    /* flex */
    align-items: center;
    /* items-center */
    gap: 0.5rem;
    /* gap-2 */

    font-weight: 500;
    /* font-medium */
    color: #3b3b3b;
    /* text-[#3b3b3b] */

    padding: 0.25rem 0.5rem;
    /* py-1 px-2 */
    border-radius: 0.375rem;
    /* rounded-md */

    background: linear-gradient(to right,
            /* bg-gradient-to-r */
            #d4af37,
            #f5e27a,
            #b8860b);

    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
    /* shadow-sm */

    transition: background-color 0.3s ease;
    /* transition duration-300 */
}

.gradient-badge:hover {
    background: #000;
    /* hover:bg-[#c9b692] */
    border: 1px solid #d4af37;
    color: #fff;
}

/* md: breakpoint (min-width: 768px) */
@media (min-width: 768px) {
    .gradient-badge {
        padding: 0.5rem 0.75rem;
        /* md:py-2 md:px-3 */
    }
}

.navbar-toggler {
    color: #ffff;
    background: #fff;
}


/* banner */
/* GOOGLE FONTS */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Poppins:wght@400;500;600&display=swap');

/* HERO SECTION */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: url("../img/banner-U7ogoM72.webp") center/cover no-repeat;
    padding: 4rem 1.5rem;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

/* DARK OVERLAY */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

/* CONTAINER */
.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    padding: 100px 5px;
}

/* CONTENT */
.hero-content {
    flex: 1;
    color: #fff;
}

.hero-title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
    font-family: 'Playfair Display', serif;
}

.hero-gradient-text {
    background: linear-gradient(to right, #d4af37, #f5e27a, #b8860b);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-desc {
    margin-top: 1.5rem;
    font-size: 1.1rem;
    color: #e5e5e5;
}

.hero-small-text {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: #cfcfcf;
}

/* BUTTON */
.hero-btn-call {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 8rem;
    border-radius: 999px;
    background: linear-gradient(to right, #2196F3, #03A9F4, #0f83df);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
}

.hero-btn-call:hover {
    transform: scale(1.05);
}


/* BUTTON */
.hero-btn-what {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 7rem;
    border-radius: 999px;
    background: linear-gradient(to right, #66ff98, #84ff6f, #66ff98);
    color: #000;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
}

.hero-btn-what:hover {
    transform: scale(1.05);
}

/* IMAGE */
.hero-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.hero-image-border {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #ffd166;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.hero-image-border img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* DECORATIVE CIRCLES */
.circle {
    position: absolute;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.circle-1 {
    width: 80px;
    height: 80px;
    background: rgba(255, 209, 102, 0.3);
    top: -30px;
    left: -30px;
}

.circle-2 {
    width: 60px;
    height: 60px;
    background: rgba(255, 111, 145, 0.3);
    bottom: 10px;
    right: 10px;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

/* FLOATING BUTTONS */
.call-btn,
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    padding: 15px;
    border-radius: 50%;
    font-size: 22px;
    color: #000;
    z-index: 50;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s;
    text-decoration: none;
}

.call-btn {
    left: 20px;
    background: linear-gradient(to right, #d4af37, #f5e27a, #b8860b);
}

.whatsapp-btn {
    right: 20px;
    background: #25d366;
}

.call-btn:hover,
.whatsapp-btn:hover {
    transform: scale(1.1);
}

/* RESPONSIVE */
@media (min-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
}

/* service */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Poppins:wght@400;500;600&display=swap');

.services-section {
    min-height: 100vh;
    padding: 4rem 1.5rem;
    background: linear-gradient(to bottom right, #0a0f1e, #00333d, #000);
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

/* TITLE */
.services-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    font-family: 'Playfair Display', serif;
    background: linear-gradient(to right, #d4af37, #f5e27a, #b8860b);
    -webkit-background-clip: text;
    color: transparent;
}

/* GRID */
.services-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

/* CARD */
.service-card {
    background: #060b0f;
    padding: 1.25rem;
    border-radius: 1.25rem;
    text-align: center;
    border: 1px solid rgba(0, 255, 179, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: rgba(123, 93, 255, 0.4);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8);
}

/* IMAGE */
.service-img {
    overflow: hidden;
    border-radius: 0.75rem;
}

.service-img img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover img {
    transform: scale(1.1);
}

/* TEXT */
.service-title {
    margin: 1rem 0 0.5rem;
    font-size: 1.25rem;
    font-weight: 600;
    background: linear-gradient(to right, #d4af37, #f5e27a, #b8860b);
    -webkit-background-clip: text;
    color: transparent;
}

.service-desc {
    font-size: 0.9rem;
    color: #ccc;
}

/* BUTTONS */
.service-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.btn-call,
.btn-wa {
    padding: 0.6rem;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.btn-call {
    background: linear-gradient(to right, #ffd166, #ff6f91, #f5e27a);
    color: #000;
}

.btn-wa {
    background: #00ffb3;
    color: #000;
}

.btn-call:hover,
.btn-wa:hover {
    transform: scale(1.05);
}

/* FOOT NOTE */
.services-note {
    max-width: 700px;
    margin: 3rem auto 0;
    text-align: center;
    font-weight: 500;
    background: linear-gradient(to right, #d4af37, #f5e27a, #b8860b);
    -webkit-background-clip: text;
    color: transparent;
}

/* RESPONSIVE */
@media (min-width: 768px) {
    .services-title {
        font-size: 3rem;
    }
}


/* about */

.about-section {
    width: 100%;
    padding: 5rem 1.5rem;
    background: linear-gradient(to bottom right, #0a0f1e, #00333d, #000000);
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.about-container {
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

/* SUBTITLE */
.about-subtitle {
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.9rem;
    font-weight: 600;
    background: linear-gradient(to right, #ffd166, #ff6f91, #f5e27a);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* TITLE */
.about-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

/* TEXT */
.about-text {
    max-width: 900px;
    margin: auto;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #cfcfcf;
}

/* BUTTONS */
.about-actions {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    justify-content: center;
}

.about-btn {
    display: inline-block;
    padding: 0.9rem 1.8rem;
    border-radius: 999px;
    background: linear-gradient(to right, #ffd166, #ff6f91, #f5e27a);
    color: #000;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.about-btn:hover {
    transform: scale(1.05);
}

/* RESPONSIVE */
@media (min-width: 768px) {
    .about-title {
        font-size: 3rem;
    }

    .about-text {
        font-size: 1.2rem;
    }

    .about-actions {
        flex-direction: row;
    }
}




.ambience-section {
    position: relative;
    min-height: 100vh;
    padding: 5rem 1rem;
    background: linear-gradient(to bottom right, #0a0f1e, #00333d, #000);
    color: #fff;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

/* DECORATIVE ICONS */
.leaf {
    position: absolute;
    font-size: 2rem;
    opacity: 0.6;
}

.leaf-top-left {
    top: 15px;
    left: 15px;
}

.leaf-top-right {
    top: 15px;
    right: 15px;
}

.leaf-bottom-left {
    bottom: 15px;
    left: 15px;
}

.leaf-bottom-right {
    bottom: 15px;
    right: 15px;
}

/* HEADING */
.ambience-heading {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
}

.ambience-heading h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.3rem;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #d4af37, #f5e27a, #b8860b);
    -webkit-background-clip: text;
    color: transparent;
}

.ambience-heading p {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.6;
}

/* SLIDERS */
.ambience-slider {
    max-width: 1200px;
    margin: 0 auto 4rem;
}

/* MEDIA CARD */
.media-card {
    border-radius: 1rem;
    overflow: hidden;
    border: 2px solid #d4af37;
    background: #000;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.media-card img,
.media-card video {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

/* RESPONSIVE */
@media (min-width: 768px) {
    .ambience-heading h2 {
        font-size: 3rem;
    }

    .media-card img,
    .media-card video {
        height: 380px;
    }

    .leaf {
        font-size: 3.5rem;
    }
}








.offer-section {
    position: relative;
    width: 100%;
    padding: 5rem 1.5rem;
    background: linear-gradient(to bottom right, #0a0f1e, #00333d, #000);
    color: #fff;
    text-align: center;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

/* GLOW CIRCLES */
.glow {
    position: absolute;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
    animation: pulseSlow 3s infinite ease-in-out;
}

.glow-top {
    top: -40px;
    right: -40px;
    background: #ffd166;
}

.glow-bottom {
    bottom: -40px;
    left: -40px;
    background: #00ffb3;
}

/* TITLE */
.offer-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #d4af37, #f5e27a, #b8860b);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* TEXT */
.offer-text {
    max-width: 800px;
    margin: auto;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #e5e5e5;
}

.highlight {
    color: #ffd166;
    font-weight: 600;
}

/* BUTTON */
.offer-btn {
    display: inline-block;
    margin-top: 2rem;
    padding: 0.9rem 1.8rem;
    border-radius: 999px;
    background: linear-gradient(to right, #ffd166, #ff6f91, #f5e27a);
    color: #000;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    transition: transform 0.3s ease;
}

.offer-btn:hover {
    transform: scale(1.05);
}

/* ANIMATION */
@keyframes pulseSlow {
    0% { transform: scale(1); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

/* RESPONSIVE */
@media (min-width: 768px) {
    .offer-title {
        font-size: 3rem;
    }

    .offer-text {
        font-size: 1.2rem;
    }
}






.why-section {
    padding: 5rem 1.5rem;
    background: linear-gradient(to bottom right, #0a0f1e, #00333d, #000);
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

.why-title {
    text-align: center;
    font-size: 2.3rem;
    margin-bottom: 3rem;
    font-family: 'Playfair Display', serif;
    background: linear-gradient(to right, #d4af37, #f5e27a, #b8860b);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* GRID */
.why-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
}

/* CARD */
.why-card {
    background: #111;
    border: 1px solid #f5e27a;
    padding: 2rem 1.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: all 0.3s ease;
}

.why-card:hover {
    box-shadow: 0 0 30px rgba(0,255,179,0.3);
    transform: translateY(-5px);
}

/* ICON */
.why-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #d4af37;
}

/* TITLE */
.why-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(to right, #d4af37, #f5e27a, #b8860b);
    -webkit-background-clip: text;
    color: transparent;
}

/* TEXT */
.why-card p {
    font-size: 0.95rem;
    color: #ccc;
}

/* NOTE */
.why-note {
    max-width: 800px;
    margin: 3rem auto 0;
    text-align: center;
    font-size: 1.05rem;
    color: #aaa;
}

/* RESPONSIVE */
@media (min-width: 768px) {
    .why-title {
        font-size: 3rem;
    }
}






.contact-section {
    padding: 5rem 1.5rem;
    background: linear-gradient(to bottom right, #0a0f1e, #00333d, #000);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
}

/* HEADER */
.contact-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.contact-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #d4af37, #f5e27a, #b8860b);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.contact-header p {
    font-size: 1.05rem;
    color: #cfcfcf;
    line-height: 1.7;
}

/* BUTTONS */
.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.6rem;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    color: #000;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    transition: transform 0.3s ease;
}

.btn:hover {
    transform: scale(1.05);
}

.btn-call {
    background: linear-gradient(to right, #ffd166, #ff6f91, #f5e27a);
}

.btn-whatsapp {
    background: #00ffb3;
}

.btn-map {
    background: linear-gradient(to right, #00ffb3, #7b5dff, #ffd166);
}

/* INFO */
.contact-info {
    text-align: center;
    margin-bottom: 3rem;
}

.address {
    color: #ffd166;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.8rem;
}

.info-gradient {
    font-weight: 600;
    background: linear-gradient(to right, #ffd166, #ff6f91, #f5e27a);
    -webkit-background-clip: text;
    color: transparent;
}

/* MAP */
.map-wrapper {
    width: 100%;
    height: 280px;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid #d4af37;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* RESPONSIVE */
@media (min-width: 768px) {
    .contact-section {
        padding: 5rem 4rem;
    }

    .contact-header h2 {
        font-size: 3rem;
    }

    .map-wrapper {
        height: 400px;
    }
}
