* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background-color: #2a2a2a;
    color: #ffffff;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    background-color: #000;
    padding: 1.5rem 0;
}

.navbar-brand {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff !important;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1052;
    gap: 0.75rem;
    padding: 0.25rem 0;
}

.navbar-brand img {
    height: auto;
    width: 230px;
    object-fit: contain;
    user-select: none;
}

.brand-dot {
    width: 12px;
    height: 12px;
    background-color: #d4af37;
    border-radius: 50%;
    margin-right: 10px;
}

.navbar-nav .nav-link {
    color: #ffffff;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 1rem;
    transition: color 0.3s ease;
    position: relative;
}

.login-menu {
    background-color: #d4af37;
    color: #000 !important;
    border-radius: 25px;

    box-shadow: inset 0 2px 2px rgba(255, 255, 255, 0.4),
        inset 0 -2px 2px rgba(0, 0, 0, 0.25), 0 3px 0 #b8922d;

    transition: all 0.25s ease;
}

.login-menu:hover {
    background-color: #000;
    color: #d4af37 !important;
    box-shadow: inset 0 2px 2px rgba(255, 255, 255, 0.15),
        inset 0 -2px 2px rgba(0, 0, 0, 0.35), 0 3px 0 #111;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #d4af37 !important;
}

.navbar-nav .nav-link.active::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background-color: #d4af37;
}

/* Mobile Menu Overlay */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: rgba(0, 0, 0, 0.98);
        z-index: 1050;
        padding: 2rem;
        border-top: 1px solid rgba(212, 175, 55, 0.2);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    .navbar-nav {
        text-align: center;
        width: 100%;
    }

    .navbar-nav .nav-link {
        margin: 1rem 0;
        font-size: 1.2rem;
    }

    .navbar-nav .nav-link.active::after {
        bottom: -8px;
    }
}

/* Hero Section */
.hero-section {
    min-height: 40vh;
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
    position: relative;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.hero-content h1::before {
    content: "";
    display: block;
    width: 60px;
    height: 2px;
    background-color: #d4af37;
    margin-bottom: 2rem;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #b0b0b0;
    margin-bottom: 3rem;
    max-width: 450px;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    padding: 0.5rem 1rem;
    border: 2px solid #d4af37;
    color: #d4af37;
    text-decoration: none;
    text-transform: lowercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.cta-button:hover {
    background-color: #d4af37;
    color: #2a2a2a;
    transform: translateY(-2px);
}

.hero-image {
    padding-top: 20px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    overflow: hidden;
    animation: float 6s ease-in-out infinite;
    transition: filter 0.5s ease, transform 0.5s ease;
}

.hero-image img {
    max-width: 100%;
    height: 60vh;
    filter: grayscale(100%) contrast(1) brightness(0.9)
        drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
    object-fit: cover;
    object-position: center;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Scroll Down Text */
.scroll-down {
    position: fixed;
    left: 50px;
    bottom: 50px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    color: #b0b0b0;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: lowercase;
}

/* Social Icons */
.social-icons {
    position: fixed;
    right: 50px;
    bottom: 50px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.social-icons a {
    color: #b0b0b0;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #d4af37;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-image img {
        height: 50vh;
        /* smaller height for mobile */
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-section {
        min-height: auto;
    }

    .scroll-down,
    .social-icons {
        display: none;
    }

    .navbar-nav .nav-link {
        margin: 0.5rem 0;
    }
}

.section-image {
    width: 100%;
    height: 600px;
    margin-bottom: 25px;
    border-radius: 12px;
    overflow: hidden;
}

.section-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
    display: block;
}

/* Title */
.section-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #d4af37;
    text-align: center;
}

/* Body text */
.section-body {
    font-size: 17px;
    line-height: 1.7;
    color: #fff;
}

.nav_back_button {
    background: linear-gradient(145deg, #f8e7a0, #d4af37, #b9891c);
    color: #2a2a2a;
    border: 1px solid #b88a1d;
    border-radius: 0 4px 4px 0;
    padding: 3px 8px;
    cursor: pointer;

    /* 3D depth */
    box-shadow: inset 1px 1px 2px rgba(255, 255, 255, 0.4),
        /* top-left shine */ inset -2px -2px 3px rgba(0, 0, 0, 0.25),
        /* bottom-right depth */ 0 2px 4px rgba(0, 0, 0, 0.3);
    /* outer shadow (lift) */

    font-weight: 500;
    transition: all 0.2s ease;
}

.nav_back_button:hover {
    background: linear-gradient(145deg, #fff4c8, #e1bf43, #c29424);
    box-shadow: inset 1px 1px 3px rgba(255, 255, 255, 0.6),
        inset -2px -2px 4px rgba(0, 0, 0, 0.3), 0 3px 6px rgba(0, 0, 0, 0.35);
}

.nav_back_button:active {
    background: linear-gradient(145deg, #d9c06a, #c29b2f, #a67816);
    box-shadow: inset -1px -1px 3px rgba(0, 0, 0, 0.35),
        inset 2px 2px 3px rgba(255, 255, 255, 0.4);
    transform: translateY(1px);
}

.bg-custom-green {
    background: #006a4e;
}

.bg-green {
    background: #28a754;
}

.bg-red {
    background: #dc3545;
}

.bg-blue {
    background: #007bff;
}

.bg-yellow {
    background: #ffc107;
}

.bg-orange {
    background: #ff5b00;
}

.bg-purple {
    background: #7851a9;
}

.bg-gray {
    background: #6c757d;
}

/* Replace Bootstrap text colors */
.text-green {
    color: #28a754;
}

.text-red {
    color: #dc3545;
}

.text-blue {
    color: #007bff;
}

.text-yellow {
    color: #ffc107;
}

.text-light-yellow {
    color: #f4e7b3;
}

.text-orange {
    color: #ff5b00;
}

.text-purple {
    color: #7851a9;
}

.modal.fade .modal-dialog .modal-content {
    background: rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(18px) saturate(160%) !important;
    -webkit-backdrop-filter: blur(18px) saturate(160%) !important;
    border-radius: 15px !important;
    border: 1px solid rgba(212, 175, 55, 0.5) !important;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5), 0 0 10px rgba(212, 175, 55, 0.2) !important;
    transform: translateY(-5px) !important;
    transition: all 0.35s ease-in-out !important;
}

.modal.fade .modal-dialog .modal-content:hover {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.6),
        0 0 15px rgba(212, 175, 55, 0.45) !important;
    border-color: #d4af37 !important;
    transform: translateY(-8px) scale(1.04) !important;
    margin: 20px;
}

.modal.fade .modal-dialog .modal-header {
    background: rgba(255, 255, 255, 0.18) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    color: #fff !important;
}

.my_form_container {
    background: #2a2a2a;
    color: white;
    position: relative;
    padding: auto;
    margin: auto;
    /* border-radius: 20px; */
    border-radius: 0px 0px 20px 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.my_form {
    width: 100%;
    padding: 30px;
}

.my_form label {
    color: #d4af37;
}

.my_form input,
.my_form textarea,
.my_form select {
    margin: 10px 0;
    width: 100%;
    background: rgba(42, 42, 42, 0.1);
    border: 1px solid #d4af37;
    box-shadow: 0 0 10px #d4af37;
    color: #ffd754;
    text-align: center;
    border: none;
    padding: 8px 15px;
    margin: 8px 0;
    width: 100%;
}

.my_form input::placeholder,
.my_form textarea::placeholder,
.my_form select::placeholder {
    color: #8a6f17 !important;
}

.my_form input:focus,
.my_form textarea:focus,
.my_form select:focus {
    background: white;
    border: 1px solid #d4af37;
    box-shadow: 0 0 10px #d4af37;
}

.my_form_header {
    background: #006a4e;
    color: white;
    text-transform: uppercase;
    font-size: 20px;
    padding: 10px;
    font-weight: bolder;
    width: 100%;
    justify-content: center;
    text-align: center;
}

.note-editor {
    border-radius: 6px;
    margin: 10px 0;
    width: 100%;
    background: rgba(42, 42, 42, 0.1);
    border: 1px solid #d4af37;
    box-shadow: 0 0 10px #d4af37;
    color: #ffd754;
    border: none;
    padding: 8px 15px;
    margin: 8px 0;
    width: 100%;
}

.note-editor .note-editing-area .note-editable {
    background: rgba(212, 175, 55, 0.1) !important;
    color: #fff;
}

.green-button {
    border-radius: 5px;
    /* border: 1px solid #006a4e; */
    /* background-color: #006a4e; */
    font-size: 14px;
    text-transform: uppercase;
    transition: transform 80ms ease-in;
    height: 40px;
    width: 100%;
    font-weight: bold;

    background: linear-gradient(145deg, #f8e7a0, #d4af37, #b9891c);
    color: #000;
    border: 1px solid #b88a1d;
    border-radius: 0 4px 4px 0;
    cursor: pointer;

    /* 3D depth */
    box-shadow: inset 1px 1px 2px rgba(255, 255, 255, 0.4),
        /* top-left shine */ inset -2px -2px 3px rgba(0, 0, 0, 0.25),
        /* bottom-right depth */ 0 2px 4px rgba(0, 0, 0, 0.3);
    /* outer shadow (lift) */
    transition: all 0.2s ease;
}

.green-button:active {
    transform: scale(0.95);
}

.green-button:hover {
    background: linear-gradient(145deg, #fff4c8, #e1bf43, #c29424);
    box-shadow: inset 1px 1px 3px rgba(255, 255, 255, 0.6),
        inset -2px -2px 4px rgba(0, 0, 0, 0.3), 0 3px 6px rgba(0, 0, 0, 0.35);
}

.green-button:focus {
    outline: none;
}

/* Container for all payment boxes */
#payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Each box */
.payment-option {
    width: 150px;
    /* fixed width */
    height: 150px;
    /* fixed height */
    border: 2px solid #d4af37;
    border-radius: 12px;
    padding: 10px;
    text-align: center;
    cursor: pointer;
    background-color: #2a2a2a;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.2s ease-in-out;
    user-select: none;
}

.payment-option:hover {
    border-color: #d4af37 !important;
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.2);
}

.payment-option.selected {
    border: 3px solid #d4af37 !important;
    background-color: #fff !important;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3) !important;
    transform: scale(1.03);
}

/* Wrapper ensures logos are centered inside fixed space */
.payment-logo-wrapper {
    width: 80px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 8px;
}

/* Actual logo — constrained, never overflow */
.payment-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Payment name text */
.payment-name {
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    color: #000;
    line-height: 1.2;
}

.gallery-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
    /* Same height for all images */
    overflow: hidden;
    border-radius: 8px;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.overlay-buttons {
    position: absolute;
    inset: 0;
    /* top:0; right:0; bottom:0; left:0 */
    background: rgba(0, 0, 0, 0.55);
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.25s ease;
    z-index: 20;
}

/* Show overlay on hover (desktop) */
.gallery-wrapper:hover .overlay-buttons {
    opacity: 1;
}

/* Show overlay on tap (mobile) */
.gallery-wrapper:active .overlay-buttons {
    opacity: 1;
}

.overlay-buttons .btn {
    opacity: 1;
}

.site-footer {
    background: #000;
    color: #d4af37;
    text-align: center;
    padding: 10px 5px;
    font-size: 14px;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}

.site-footer p {
    margin: 0;
    opacity: 0.85;
    letter-spacing: 0.5px;
}

.whatsapp-chat {
    position: fixed;
    bottom: 70px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-chat-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #d4af37, #000000);
    /* Gold to black gradient */
    border-radius: 50%;
    width: 60px;
    height: 60px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.whatsapp-chat-button img {
    width: 35px;
    height: 35px;
    transition: transform 0.3s ease;
}

.whatsapp-chat-button:hover {
    transform: scale(1.3);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
    background-color: #1ebe57;
}

.whatsapp-chat-button:hover img {
    transform: rotate(15deg);
}

.object-fit-cover {
    object-fit: cover;
}

.newsletter-image-col {
    min-height: 400px;
}

@media (min-width: 768px) {
    .newsletter-image-col {
        min-height: 100%;
    }
}

.modal-footer-custom {
    border-top-color: rgba(255, 255, 255, 0.2) !important;
}

.btn-close-footer {
    background-color: #dc3545;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-close-footer:hover {
    background-color: #bb2d3b;
    color: white;
    transform: translateY(-2px);
}

.object-fit-cover {
    object-fit: cover;
}

.newsletter-image-col {
    min-height: 400px;
}

@media (min-width: 768px) {
    .newsletter-image-col {
        min-height: 100%;
    }
}

.modal-footer-custom {
    border-top-color: rgba(255, 255, 255, 0.2) !important;
}

.btn-close-footer {
    background-color: #dc3545;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-close-footer:hover {
    background-color: #9e222e;
    color: white;
    transform: translateY(-2px);
}

.custom-close {
    background-color: #dc3545;
    opacity: 1;
    border-radius: 50%;

    /* White X SVG */
    --bs-btn-close-bg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3E%3Cpath d='M2.146 2.854a.5.5 0 1 1 .708-.708L8 7.293l5.146-5.147a.5.5 0 0 1 .708.708L8.707 8l5.147 5.146a.5.5 0 0 1-.708.708L8 8.707l-5.146 5.147a.5.5 0 0 1-.708-.708L7.293 8z'/%3E%3C/svg%3E");
}

.contact-form .form-control:focus {
    border-color: #d4af37;
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

/* .grecaptcha-badge {
  bottom: 90px !important;
  left: 20px !important;
  z-index: 9999;
} */
.grecaptcha-badge {
    display: none;
}

/* ####################################### */
.team-carousel-wrapper {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        sans-serif;
    position: relative;
    max-width: 1800px;
    margin: auto;
    padding-left: 30px;
    padding-right: 30px;
    justify-content: center;
}

.team-carousel {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 20px 0;
    scrollbar-width: none;
}

.team-carousel::-webkit-scrollbar {
    display: none;
}

.team-carousel.no-smooth {
    scroll-behavior: auto;
}

.team-profile-card {
    flex: 0 0 280px;
    height: 380px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    scroll-snap-align: start;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-width: 280px;
    max-width: 280px;
    min-height: 380px;
    max-height: 380px;
}

.team-profile-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.team-card-arrow {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
}

.team-card-overlay {
    position: absolute;
    bottom: 0;
    padding: 20px;
    width: 100%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.team-stars {
    color: #ffcc33;
    letter-spacing: 2px;
    margin-bottom: 6px;
    font-size: 14px;
}

.team-card-overlay h3 {
    margin: 0 0 4px 0;
    font-size: 20px;
}

.team-card-overlay p {
    margin: 0;
    opacity: 0.9;
    font-size: 14px;
}

.team-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    font-size: 22px;
    cursor: pointer;
    z-index: 2;
    transition: all 0.2s ease;
}

.team-nav-btn:hover {
    background: #f0f0f0;
    transform: translateY(-50%) scale(1.05);
}

.team-nav-btn.left {
    left: -22px;
}

.team-nav-btn.right {
    right: -22px;
}

.team-card {
    display: grid;
    grid-template-columns: repeat(auto-fit, 260px);
    gap: 30px;
    justify-content: center;
}

.team-profile-card {
    aspect-ratio: 3 / 4;
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}
