/* ---------- 2. RESET & BASE ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Outfit', sans-serif;
    background: #080808;
    color: #cccccc;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.section-title,
.hero-title {
    font-family: 'Merriweather', Georgia, serif;
    font-weight: 600;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ---------- 3. LOADER ---------- */
#loader {
    position: fixed;
    inset: 0;
    background: #080808;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.loader-logo {
    width: 180px;
    animation: loaderPulse 1.4s ease-in-out infinite alternate;
}

.loader-sub {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.1rem;
    color: #c9a84c;
    letter-spacing: 6px;
    text-transform: uppercase;
}

.loader-dots {
    display: flex;
    gap: 8px;
    margin-top: 4px;
}

.loader-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #c9a84c;
    animation: dotBounce 1.4s ease-in-out infinite;
}

.loader-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.loader-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes loaderPulse {
    from {
        opacity: 0.7;
        transform: scale(0.97);
    }

    to {
        opacity: 1;
        transform: scale(1.0);
    }
}

@keyframes dotBounce {

    0%,
    80%,
    100% {
        transform: scale(0);
        opacity: 0.3;
    }

    40% {
        transform: scale(1);
        opacity: 1;
    }
}

/* ---------- 4. HEADER ---------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Top Bar */
.header-topbar {
    background: #181818;
    border-bottom: 1px solid rgba(201, 168, 76, 0.18);
    padding: 7px 0;
    transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-topbar.hidden {
    transform: translateY(-100%);
    opacity: 0;
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.topbar-left,
.topbar-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.topbar-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: #9a9a9a;
    transition: color 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.topbar-item i {
    color: #c9a84c;
    font-size: 0.82rem;
}

.topbar-item:hover {
    color: #c9a84c;
}

.topbar-sep {
    color: rgba(201, 168, 76, 0.35);
    font-size: 0.8rem;
}

/* Language Toggle */
.lang-toggle-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(201, 168, 76, 0.12);
    border: 1px solid rgba(201, 168, 76, 0.4);
    color: #c9a84c;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Outfit', sans-serif;
    letter-spacing: 1px;
}

.lang-toggle-btn:hover {
    background: #c9a84c;
    color: #080808;
}

/* Main Nav */
.main-nav {
    background: rgba(8, 8, 8, 0.92);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.14);
    padding: 0;
    transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-nav.scrolled {
    background: rgba(5, 5, 5, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    gap: 20px;
}

/* Logo */

.nav-logo-link {
    display: flex;
    align-items: center;
}

.nav-logo-img {
    height: 100px;
    width: auto;
    object-fit: contain;
}

/* Nav Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    justify-content: flex-end;
}

.nav-link-item {
    font-family: 'Outfit', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    color: #cccccc;
    padding: 8px 14px;
    border-radius: 6px;
    transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.nav-link-item::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1.5px;
    background: #c9a84c;
    transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.nav-link-item:hover {
    color: #c9a84c;
}

.nav-link-item:hover::after {
    width: 60%;
}

/* Dropdown */
.nav-has-dropdown {
    position: relative;
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: rgba(15, 15, 15, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 14px;
    padding: 10px 0;
    min-width: 210px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    z-index: 200;
}

.nav-has-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 20px;
    font-size: 0.85rem;
    color: #cccccc;
    transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.3px;
}

.nav-dropdown-menu li a::before {
    content: '→';
    color: #c9a84c;
    font-size: 0.75rem;
    opacity: 0;
    transform: translateX(-6px);
    transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-dropdown-menu li a:hover {
    color: #c9a84c;
    background: rgba(201, 168, 76, 0.06);
    padding-left: 26px;
}

.nav-dropdown-menu li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Translate Button in Main Navbar */
.nav-lang-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.16), rgba(201, 168, 76, 0.06));
    border: 1.5px solid #c9a84c;
    color: #c9a84c;
    font-weight: 700;
    font-size: 0.82rem;
    padding: 9px 20px;
    border-radius: 50px;
    transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    cursor: pointer;
    box-shadow: 0 4px 18px rgba(201, 168, 76, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Outfit', sans-serif;
}

.nav-lang-btn i {
    font-size: 1rem;
    color: #c9a84c;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-lang-btn:hover {
    background: linear-gradient(135deg, #c9a84c, #9c7a2e);
    color: #080808;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 168, 76, 0.45);
}

.nav-lang-btn:hover i {
    color: #080808;
    transform: rotate(15deg);
}

.mobile-cta-btn.mobile-lang-btn {
    background: rgba(201, 168, 76, 0.15);
    border: 1px solid #c9a84c;
    color: #c9a84c;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Hamburger */
.hamburger-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger-btn span {
    display: block;
    width: 26px;
    height: 2px;
    background: #c9a84c;
    border-radius: 2px;
    transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger-btn.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger-btn.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger-btn.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Drawer */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(360px, 90vw);
    height: 100%;
    background: #111111;
    border-left: 1px solid rgba(201, 168, 76, 0.15);
    z-index: 1200;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.mobile-drawer.active {
    right: 0;
}

.mobile-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.mobile-logo {
    height: 56px;
    width: auto;
}

.mobile-close-btn {
    background: rgba(201, 168, 76, 0.12);
    border: 1px solid rgba(201, 168, 76, 0.3);
    color: #c9a84c;
    font-size: 1.6rem;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    line-height: 1;
}

.mobile-close-btn:hover {
    background: #c9a84c;
    color: #080808;
}

.mobile-nav-list {
    padding: 16px 0;
    flex: 1;
}

.mobile-nav-list li a,
.mobile-submenu-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    font-size: 1rem;
    font-weight: 500;
    color: #cccccc;
    transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    cursor: pointer;
    letter-spacing: 0.3px;
}

.mobile-nav-list li a:hover,
.mobile-submenu-toggle:hover {
    color: #c9a84c;
    background: rgba(201, 168, 76, 0.06);
}

.mobile-submenu {
    background: rgba(0, 0, 0, 0.3);
    display: none;
}

.mobile-submenu.open {
    display: block;
}

.mobile-submenu li a {
    padding: 11px 24px 11px 38px;
    font-size: 0.9rem;
    color: #9a9a9a;
}

.mobile-submenu li a:hover {
    color: #c9a84c;
}

.mobile-drawer-ctas {
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-top: 1px solid rgba(201, 168, 76, 0.15);
}

.mobile-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px;
    border-radius: 14px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-cta-btn.phone {
    background: linear-gradient(135deg, #c9a84c, #9c7a2e);
    color: #080808;
}

.mobile-cta-btn.whatsapp {
    background: rgba(37, 211, 102, 0.12);
    border: 1px solid rgba(37, 211, 102, 0.35);
    color: #25d366;
}

.mobile-cta-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

/* ---------- 5. FLOATING ELEMENTS ---------- */
/* Scroll to Top */
.scroll-top-btn {
    position: fixed;
    bottom: 90px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c9a84c, #9c7a2e);
    border: none;
    color: #080808;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 900;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.35);
}

.scroll-top-btn.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 40px rgba(201, 168, 76, 0.25);
}

/* Floating Call Button */
.floating-call-btn {
    position: fixed;
    bottom: 96px;
    right: 28px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c9a84c, #9c7a2e);
    color: #080808 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 6px 22px rgba(201, 168, 76, 0.45);
    z-index: 940;
    transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-call-btn:hover {
    background: linear-gradient(135deg, #e2c97e, #c9a84c);
    transform: translateY(-3px) scale(1.06);
    box-shadow: 0 10px 30px rgba(201, 168, 76, 0.65);
    color: #080808 !important;
}

/* Social Sidebar */
.social-sidebar {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    z-index: 800;
}

.soc-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    color: #ffffff;
    transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0 6px 6px 0;
    transform: translateX(-4px);
}

.soc-btn:hover {
    transform: translateX(0) scale(1.08);
}

.soc-phone {
    background: linear-gradient(135deg, #c9a84c, #9c7a2e) !important;
    color: #080808 !important;
    box-shadow: 0 4px 15px rgba(201, 168, 76, 0.4);
}

.soc-phone i {
    color: #080808 !important;
}

.soc-phone:hover {
    background: linear-gradient(135deg, #e2c97e, #c9a84c) !important;
    color: #080808 !important;
    box-shadow: 0 6px 20px rgba(201, 168, 76, 0.6);
}

.soc-wa {
    background: #25D366;
}

.soc-fb {
    background: #1877f2;
}

.soc-ig {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.soc-tt {
    background: #010101;
    border-top: 1px solid #222;
}

/* Floating WhatsApp Widget */
.wa-widget {
    position: fixed;
    bottom: 30px;
    left: 24px;
    z-index: 950;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.wa-toggle-btn {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25D366;
    color: #ffffff;
    font-size: 1.8rem;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    animation: callPulse 2s ease-in-out infinite;
}

.wa-toggle-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

.wa-popup {
    position: absolute;
    bottom: 80px;
    left: 0;
    width: 280px;
    background: #111111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transform-origin: bottom left;
    transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.wa-popup.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.wa-popup-header {
    background: #25D366;
    padding: 18px 20px;
    border-radius: 14px 14px 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wa-popup-header h5 {
    color: #ffffff;
    margin: 0;
    font-size: 1.05rem;
    font-family: 'Merriweather', Georgia, serif;
}

.wa-close-btn {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.4rem;
    cursor: pointer;
    opacity: 0.8;
    transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.wa-close-btn:hover {
    opacity: 1;
    transform: scale(1.1);
}

.wa-popup-body {
    padding: 20px;
}

.wa-popup-body p {
    font-size: 0.85rem;
    color: #9a9a9a;
    margin-bottom: 16px;
    line-height: 1.5;
}

.wa-option {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #181818;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 12px 14px;
    border-radius: 6px;
    margin-bottom: 10px;
    transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.wa-option:last-child {
    margin-bottom: 0;
}

.wa-option:hover {
    background: rgba(37, 211, 102, 0.1);
    border-color: rgba(37, 211, 102, 0.3);
    transform: translateX(4px);
}

.wa-option i {
    font-size: 1.5rem;
    color: #25D366;
}

.wa-option-text {
    display: flex;
    flex-direction: column;
}

.wa-option-text strong {
    font-size: 0.85rem;
    color: #ffffff;
    margin-bottom: 2px;
}

.wa-option-text span {
    font-size: 0.78rem;
    color: #9a9a9a;
}

/* ---------- 6. HERO SECTION ---------- */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: heroSlideAnimation 15s infinite;
}

.hero-slide-one {
    background-image: url('../img/postres-2.webp');
    animation-delay: 0s;
}

.hero-slide-two {
    background-image: url('../img/baby-9.webp');
    animation-delay: 5s;
}

.hero-slide-three {
    background-image: url('../img/weding-6.webp');
    animation-delay: 10s;
}

@keyframes heroSlideAnimation {
    0% {
        opacity: 0;
        transform: scale(1);
    }

    6% {
        opacity: 1;
    }

    33% {
        opacity: 1;
    }

    39% {
        opacity: 0;
        transform: scale(1.05);
    }

    100% {
        opacity: 0;
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(0, 0, 0, 0.75) 0%,
            rgba(0, 0, 0, 0.45) 50%,
            rgba(0, 0, 0, 0.75) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
    max-width: 900px;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 168, 76, 0.15);
    border: 1px solid rgba(201, 168, 76, 0.5);
    color: #c9a84c;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    animation: fadeInDown 0.8s ease both;
}

.hero-badge i {
    font-size: 0.9rem;
}

.hero-title {
    font-family: 'Merriweather', Georgia, serif;
    font-size: clamp(3.5rem, 9vw, 7.5rem);
    font-weight: 900;
    color: #ffffff;
    line-height: 0.95;
    margin-bottom: 16px;
    animation: fadeInUp 0.9s ease 0.2s both;
}

.hero-title span {
    color: #c9a84c;
}

.hero-subtitle {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1.1rem, 2.5vw, 1.6rem);
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 2px;
    margin-bottom: 40px;
    animation: fadeInUp 0.9s ease 0.4s both;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.9s ease 0.6s both;
}

.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #c9a84c, #9c7a2e);
    color: #080808;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 14px 30px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 6px 25px rgba(201, 168, 76, 0.35);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(201, 168, 76, 0.55);
    color: #080808;
}

.btn-outline-gold {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 13px 30px;
    border-radius: 50px;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.btn-outline-gold:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #c9a84c;
    color: #c9a84c;
    transform: translateY(-3px);
}

/* Hero Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    animation: fadeInUp 1s ease 1s both;
}

.hero-scroll-indicator span {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.scroll-mouse {
    width: 22px;
    height: 34px;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    border-radius: 14px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 5px;
}

.scroll-mouse::before {
    content: '';
    width: 3px;
    height: 7px;
    background: #c9a84c;
    border-radius: 2px;
    animation: scrollDot 1.8s ease-in-out infinite;
}

@keyframes scrollDot {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(10px);
        opacity: 0;
    }
}

/* ---------- 7. MARQUEE STRIP ---------- */
.marquee-strip {
    background: linear-gradient(90deg, #9c7a2e, #c9a84c, #9c7a2e);
    padding: 11px 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-track {
    display: inline-flex;
    gap: 0;
    animation: marqueeScroll 22s linear infinite;
}

.marquee-track span {
    font-family: 'Outfit', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #080808;
    padding: 0 32px;
}

.marquee-track span::before {
    content: '✦';
    margin-right: 32px;
    font-size: 0.7rem;
    opacity: 0.6;
}

@keyframes marqueeScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ---------- 8. SECTION COMMONS ---------- */
.section-wrap {
    padding: 100px 0;
}

.section-wrap.dark-bg {
    background: #111111;
}

.section-wrap.darker-bg {
    background: #181818;
}

.section-wrap.black-bg {
    background: #080808;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #c9a84c;
    margin-bottom: 14px;
}

.section-label::before,
.section-label::after {
    content: '';
    display: inline-block;
    width: 30px;
    height: 1px;
    background: #c9a84c;
    opacity: 0.6;
}

.section-title {
    font-family: 'Merriweather', Georgia, serif;
    font-size: clamp(1.8rem, 4vw, 3.5rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 20px;
    max-width: 100%;
    word-break: break-word;
    overflow-wrap: break-word;
}

.section-title span {
    color: #c9a84c;
}

.section-subtitle {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    color: #9a9a9a;
    max-width: 580px;
    line-height: 1.7;
}

/* Gold Divider */
.gold-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 16px auto 40px;
    max-width: 500px;
}

.gold-divider span {
    display: block;
    height: 1.5px;
    flex: 1;
    background: linear-gradient(90deg, transparent, #c9a84c, transparent);
    max-width: 160px;
    min-width: 30px;
}

.gold-divider i {
    color: #c9a84c;
    font-size: 0.7rem;
}

/* ---------- 9. WELCOME SECTION ---------- */
.welcome-section {
    padding: 100px 0;
    background: #111111;
}

.welcome-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 220px;
    gap: 10px;
    border-radius: 28px;
    overflow: hidden;
}

.welcome-img-item {
    position: relative;
    overflow: hidden;
}

.welcome-img-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.welcome-img-item:hover img {
    transform: scale(1.06);
}

.welcome-img-item:first-child {
    border-radius: 28px 0 0 0;
}

.welcome-img-item:nth-child(2) {
    border-radius: 0 28px 0 0;
}

.welcome-img-item:nth-child(3) {
    border-radius: 0 0 0 28px;
}

.welcome-img-item:last-child {
    border-radius: 0 0 28px 0;
}

/* Floating badge on gallery */
.gallery-badge {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: rgba(0, 0, 0, 0.75);
    border: 1px solid rgba(201, 168, 76, 0.4);
    backdrop-filter: blur(12px);
    border-radius: 14px;
    padding: 10px 16px;
    text-align: center;
}

.gallery-badge p {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #c9a84c;
    margin: 0;
}

.welcome-text {
    padding-left: 60px;
}

.welcome-text .section-label {
    margin-bottom: 10px;
}

.welcome-text h2 {
    font-family: 'Merriweather', Georgia, serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 24px;
}

.welcome-text h2 em {
    font-style: italic;
    color: #c9a84c;
}

.welcome-text p {
    color: #9a9a9a;
    line-height: 1.8;
    font-size: 0.98rem;
    margin-bottom: 16px;
}

.welcome-feats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 20px;
    margin: 28px 0 36px;
}

.welcome-feat {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #cccccc;
}

.welcome-feat i {
    color: #c9a84c;
    font-size: 1rem;
    flex-shrink: 0;
}

/* ---------- 10. SERVICES SECTION ---------- */
.services-section {
    padding: 100px 0;
    background: #080808;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.service-card {
    background: #111111;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 28px;
    overflow: hidden;
    transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 28px;
    border: 1.5px solid transparent;
    background: linear-gradient(135deg, #c9a84c, transparent) border-box;
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card-img {
    position: relative;
    height: 230px;
    overflow: hidden;
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .service-card-img img {
    transform: scale(1.08);
}

.service-card-img .service-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 60%);
}

.service-card-icon {
    position: absolute;
    bottom: 16px;
    left: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c9a84c, #9c7a2e);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #080808;
    font-size: 1.1rem;
    box-shadow: 0 4px 16px rgba(201, 168, 76, 0.4);
}

.service-card-body {
    padding: 22px;
}

.service-card-body h3 {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.service-card-body p {
    font-size: 0.88rem;
    color: #9a9a9a;
    line-height: 1.7;
    margin-bottom: 18px;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #c9a84c;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card-link:hover {
    gap: 12px;
    color: #e2c97e;
}

/* ---------- 11. PACKAGES SECTION ---------- */
.packages-section {
    padding: 100px 0;
    background: #111111;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 60px;
    align-items: stretch;
}

.package-card {
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.package-card.featured {
    border-color: rgba(201, 168, 76, 0.4);
    box-shadow: 0 20px 60px rgba(201, 168, 76, 0.2);
}

.package-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.package-card.featured:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 25px 70px rgba(201, 168, 76, 0.3);
}

.package-header {
    padding: 36px 30px 28px;
    text-align: center;
    position: relative;
}

.package-card:not(.featured) .package-header {
    background: #181818;
}

.package-card.featured .package-header {
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.25), rgba(201, 168, 76, 0.05));
}

.package-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: linear-gradient(135deg, #c9a84c, #9c7a2e);
    color: #080808;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 50px;
}

.package-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.package-icon.bronze {
    background: rgba(150, 100, 50, 0.2);
    color: #cd7f32;
    border: 1px solid rgba(205, 127, 50, 0.3);
}

.package-icon.silver {
    background: rgba(180, 180, 180, 0.15);
    color: #c0c0c0;
    border: 1px solid rgba(192, 192, 192, 0.3);
}

.package-icon.gold {
    background: rgba(201, 168, 76, 0.2);
    color: #c9a84c;
    border: 1px solid rgba(201, 168, 76, 0.4);
}

.package-name {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}

.package-tagline {
    font-size: 0.82rem;
    color: #9a9a9a;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.package-body {
    padding: 28px 30px;
    background: #222222;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.package-card.featured .package-body {
    background: rgba(25, 22, 14, 1);
}

.package-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}

.package-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: #cccccc;
}

.package-feature i {
    color: #c9a84c;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.package-cta-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 13px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: auto;
}

.package-cta-btn.gold-btn {
    background: linear-gradient(135deg, #c9a84c, #9c7a2e);
    color: #080808;
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
}

.package-cta-btn.outline-btn {
    background: transparent;
    border: 1.5px solid rgba(201, 168, 76, 0.35);
    color: #c9a84c;
}

.package-cta-btn:hover {
    transform: translateY(-2px);
}

.package-cta-btn.gold-btn:hover {
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.5);
    color: #080808;
}

.package-cta-btn.outline-btn:hover {
    background: rgba(201, 168, 76, 0.1);
    color: #e2c97e;
}

/* ---------- 12. STYLE/GALLERY CAROUSEL ---------- */
.style-section {
    padding: 100px 0;
    background: #080808;
}

.style-track-wrap {
    overflow: hidden;
    position: relative;
    margin-top: 60px;
}

.style-track {
    display: flex;
    gap: 20px;
    animation: styleScroll 35s linear infinite;
    width: max-content;
}

.style-track:hover {
    animation-play-state: paused;
}

.style-card {
    width: 280px;
    flex-shrink: 0;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.style-card img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.style-card:hover img {
    transform: scale(1.05);
}

.style-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.style-card:hover .style-card-overlay {
    opacity: 1;
}

.style-card-overlay h4 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.1rem;
    color: #ffffff;
    margin: 0;
}

@keyframes styleScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ---------- 13. VIDEO SECTION ---------- */
.video-section {
    padding: 80px 0;
    background: #111111;
}

.video-showcase {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    max-height: 520px;
}

.video-showcase video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    max-height: 520px;
}

.video-showcase-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, transparent 60%);
    display: flex;
    align-items: center;
    padding: 40px;
}

.video-info-box {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(201, 168, 76, 0.3);
    backdrop-filter: blur(12px);
    border-radius: 14px;
    padding: 28px 32px;
    max-width: 320px;
}

.video-info-box h3 {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 1.6rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.video-info-box p {
    font-size: 0.88rem;
    color: #9a9a9a;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* ---------- 14. VALUES SECTION ---------- */
.values-section {
    padding: 100px 0;
    background: #181818;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.value-card {
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    height: 380px;
    cursor: pointer;
}

.value-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.value-card:hover img {
    transform: scale(1.07);
}

.value-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px;
    transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 28px;
    transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-card:nth-child(1) .value-overlay::before {
    background: linear-gradient(to top, rgba(120, 60, 20, 0.85), rgba(201, 168, 76, 0.15) 60%, transparent);
}

.value-card:nth-child(2) .value-overlay::before {
    background: linear-gradient(to top, rgba(60, 20, 80, 0.85), rgba(130, 40, 180, 0.15) 60%, transparent);
}

.value-card:nth-child(3) .value-overlay::before {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(50, 50, 50, 0.2) 60%, transparent);
}

.value-icon {
    position: relative;
    z-index: 1;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.2);
    border: 1px solid rgba(201, 168, 76, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c9a84c;
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.value-content {
    position: relative;
    z-index: 1;
}

.value-content h3 {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 1.5rem;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 8px;
}

.value-content p {
    font-size: 0.87rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.65;
}

/* ---------- 15. ABOUT SECTION ---------- */
.about-section {
    padding: 100px 0;
    background: #111111;
}

.about-video-wrap {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    height: 440px;
}

.about-video-wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-video-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid rgba(201, 168, 76, 0.2);
    border-radius: 28px;
    pointer-events: none;
}

.about-text {
    padding-left: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-text p {
    color: #9a9a9a;
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: 0.97rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 32px 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 2.2rem;
    font-weight: 900;
    color: #c9a84c;
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.78rem;
    color: #9a9a9a;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* ---------- 16. TESTIMONIALS ---------- */
.testimonials-section {
    padding: 100px 0;
    background: #080808;
}

.testi-track-wrap {
    overflow: hidden;
    margin-top: 60px;
}

.testi-track {
    display: flex;
    gap: 24px;
    animation: testiScroll 30s linear infinite;
    width: max-content;
}

.testi-track:hover {
    animation-play-state: paused;
}

.testi-card {
    width: 340px;
    flex-shrink: 0;
    background: #111111;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 28px;
    padding: 28px;
    position: relative;
    transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.testi-card:hover {
    border-color: rgba(201, 168, 76, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    transform: translateY(-4px);
}

.testi-quote {
    font-size: 3rem;
    color: #c9a84c;
    line-height: 1;
    font-family: Georgia, serif;
    margin-bottom: -8px;
    opacity: 0.6;
}

.testi-text {
    font-size: 0.9rem;
    color: #9a9a9a;
    line-height: 1.75;
    margin-bottom: 20px;
}

.testi-stars {
    color: #c9a84c;
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.testi-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c9a84c, #9c7a2e);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #080808;
    font-weight: 800;
    font-size: 1rem;
    flex-shrink: 0;
}

.testi-name {
    font-weight: 600;
    color: #ffffff;
    font-size: 0.9rem;
}

.testi-role {
    font-size: 0.78rem;
    color: #9a9a9a;
}

@keyframes testiScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - 12px));
    }
}

/* ---------- 17. WHY CHOOSE US ---------- */
.why-section {
    padding: 100px 0;
    background: #111111;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-top: 60px;
}

.why-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: #181818;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 28px;
    transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-card:hover {
    border-color: rgba(201, 168, 76, 0.25);
    background: rgba(201, 168, 76, 0.04);
    transform: translateY(-3px);
}

.why-icon {
    width: 54px;
    height: 54px;
    border-radius: 6px;
    background: rgba(201, 168, 76, 0.12);
    border: 1px solid rgba(201, 168, 76, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c9a84c;
    font-size: 1.3rem;
    flex-shrink: 0;
    transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-card:hover .why-icon {
    background: rgba(201, 168, 76, 0.2);
    box-shadow: 0 0 20px rgba(201, 168, 76, 0.2);
}

.why-content h4 {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.why-content p {
    font-size: 0.87rem;
    color: #9a9a9a;
    line-height: 1.7;
    margin: 0;
}

/* ---------- 18. CTA SECTION ---------- */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #181818 0%, #111111 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
}

.cta-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-inner h2 {
    font-family: 'Merriweather', Georgia, serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 20px;
}

.cta-inner h2 span {
    color: #c9a84c;
}

.cta-inner p {
    font-size: 1rem;
    color: #9a9a9a;
    margin-bottom: 36px;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-gold-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, #c9a84c, transparent);
    margin: 50px 0;
    opacity: 0.4;
}

/* ---------- 19. FOOTER ---------- */
.site-footer {
    background: #080808;
    position: relative;
}

.footer-curve {
    line-height: 0;
    overflow: hidden;
}

.footer-curve svg {
    width: 100%;
    height: 60px;
    display: block;
}

.footer-main {
    padding: 80px 0 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 50px;
}

.footer-logo {
    width: 140px;
    margin-bottom: 18px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.footer-desc {
    font-size: 0.88rem;
    color: #9a9a9a;
    line-height: 1.75;
    margin-bottom: 22px;
    text-align: center;
}

.footer-social-row {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.footer-soc-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9a9a9a;
    font-size: 0.9rem;
    transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-soc-icon:hover {
    background: #c9a84c;
    border-color: #c9a84c;
    color: #080808;
}

.footer-col-heading {
    font-family: 'Outfit', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #c9a84c;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

.footer-link-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-link-list li a {
    font-size: 0.87rem;
    color: #9a9a9a;
    transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-link-list li a::before {
    content: '→';
    color: #c9a84c;
    font-size: 0.75rem;
    opacity: 0.6;
    transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-link-list li a:hover {
    color: #c9a84c;
    padding-left: 4px;
}

.footer-link-list li a:hover::before {
    opacity: 1;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.87rem;
    color: #9a9a9a;
}

.footer-contact-list li i {
    color: #c9a84c;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-contact-list li a {
    color: #9a9a9a;
    transition: color 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-contact-list li a:hover {
    color: #c9a84c;
}

.footer-contact-list li small {
    display: block;
    font-size: 0.75rem;
    color: #9a9a9a;
    opacity: 0.7;
}

.footer-payments {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.footer-payments img {
    height: 30px;
    width: auto;
    object-fit: contain;
    filter: brightness(0.8) grayscale(0.2);
    transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-payments img:hover {
    filter: brightness(1);
}

.footer-wa-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-wa-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.3);
    color: #25d366;
    font-size: 0.83rem;
    font-weight: 600;
    padding: 9px 14px;
    border-radius: 6px;
    transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-wa-btn:hover {
    background: rgba(37, 211, 102, 0.18);
    color: #25d366;
    transform: translateX(3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 22px 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-bottom-inner p {
    font-size: 0.83rem;
    color: #9a9a9a;
    margin: 0;
}


.footer-bottom-address {
    font-size: 0.8rem !important;
    color: rgba(154, 154, 154, 0.6) !important;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ---------- 20. ANIMATIONS ---------- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    transform: translateX(-50px);
}

.reveal-right {
    transform: translateX(50px);
}

.reveal-left.visible,
.reveal-right.visible {
    transform: translateX(0);
}

/* ---------- 21. RESPONSIVE ---------- */
/* Tablet */
@media (max-width: 1100px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .welcome-text {
        padding-left: 30px;
    }

    .about-text {
        padding-left: 30px;
    }
}

@media (max-width: 992px) {
    .nav-links {
        display: none;
    }

    .hamburger-btn {
        display: flex;
    }

    .header-topbar {
        display: none;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .packages-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin-left: auto;
        margin-right: auto;
    }

    .package-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .section-wrap {
        padding: 70px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .welcome-gallery {
        grid-template-rows: 180px 180px;
    }

    .welcome-text {
        padding-left: 0;
        margin-top: 40px;
    }

    .about-text {
        padding-left: 0;
        margin-top: 40px;
    }

    .about-video-wrap {
        height: 300px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-title {
        font-size: clamp(2.8rem, 11vw, 4.5rem);
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .social-sidebar {
        display: none;
    }
}

@media (max-width: 480px) {
    .topbar-left {
        display: none;
    }

    .welcome-feats {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: 1fr 1fr;
    }

    .hero-badge {
        font-size: 0.7rem;
        letter-spacing: 2px;
    }
}

/* =======================================================
   22. INNER PAGE HERO SECTION
   ======================================================= */
.page-hero-section {
    position: relative;
    padding: 160px 20px 100px;
    min-height: 500px;
    text-align: center;
    overflow: hidden;
    background: #111111;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.05);
    filter: brightness(0.7) saturate(1.1);
    transition: transform 10s ease;
}

.page-hero-section:hover .page-hero-bg {
    transform: scale(1.1);
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.35) 55%, rgba(8, 8, 8, 0.85) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.page-hero-content h1 {
    font-family: 'Merriweather', Georgia, serif;
    font-size: clamp(2.4rem, 6vw, 4rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.page-hero-content h1 span,
.page-hero-content h1 em {
    color: #c9a84c;
    font-style: normal;
}

.page-hero-content p {
    font-size: 1.15rem;
    color: #cccccc;
    max-width: 620px;
    margin: 0 auto 24px;
    line-height: 1.6;
}

.page-hero-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 22px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 30px;
    backdrop-filter: blur(10px);
    font-size: 0.85rem;
    font-weight: 500;
}

.page-hero-breadcrumb a {
    color: #c9a84c;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-hero-breadcrumb a:hover {
    color: #e2c97e;
}

.page-hero-breadcrumb i {
    font-size: 0.75rem;
    color: #9a9a9a;
}

.page-hero-breadcrumb span {
    color: #ffffff;
}

/* =======================================================
   23. SERVICE FEATURES LIST (Single Service Pages)
   ======================================================= */
.service-feature-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    background: #1a1a1a;
    padding: 35px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.svc-feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: all 0.3s ease;
}

.svc-feature-item:hover {
    background: rgba(212, 175, 55, 0.08);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateX(4px);
}

.svc-feature-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(212, 175, 55, 0.12);
    color: #c9a84c;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.svc-feature-item span {
    font-size: 0.92rem;
    color: #cccccc;
    font-weight: 500;
}

/* =======================================================
   24. PHOTO GALLERY MASONRY & LIGHTBOX
   ======================================================= */
.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.2, 1, 0.3, 1);
}

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(8, 8, 8, 0.85) 100%);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c9a84c;
    font-size: 2rem;
    transition: opacity 0.35s ease;
}

.gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.5), 0 0 25px rgba(212, 175, 55, 0.25);
    border-color: #c9a84c;
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    inset: 0;
    background: rgba(4, 4, 4, 0.94);
    backdrop-filter: blur(15px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding: 20px;
}

.lightbox-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-img-wrap {
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.lightbox-img-wrap img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.lightbox-close {
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 2.2rem;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
}

.lightbox-close:hover {
    background: #c9a84c;
    color: #111111;
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #ffffff;
    font-size: 1.8rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
}

.lightbox-nav:hover {
    background: #c9a84c;
    color: #111111;
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

/* =======================================================
   25. SERVICES FULL GRID (services.php)
   ======================================================= */
.services-full-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.svc-card {
    background: #1a1a1a;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    transition: all 0.4s cubic-bezier(0.2, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.svc-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4), 0 0 30px rgba(212, 175, 55, 0.15);
    border-color: #c9a84c;
}

.svc-card-img {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.svc-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.svc-card:hover .svc-card-img img {
    transform: scale(1.08);
}

.svc-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(14, 14, 14, 0.95) 100%);
}

.svc-card-icon {
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #c9a84c, #9c7a2e);
    color: #111111;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
    z-index: 2;
    transition: transform 0.3s ease;
}

.svc-card:hover .svc-card-icon {
    transform: scale(1.1) rotate(5deg);
}

.svc-card-body {
    padding: 30px 25px 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.svc-card-body h3 {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 1.65rem;
    color: #ffffff;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.svc-card:hover .svc-card-body h3 {
    color: #c9a84c;
}

.svc-card-body p {
    font-size: 0.95rem;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.svc-card-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: #c9a84c;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.25s ease;
}

.svc-card:hover .svc-card-link {
    gap: 12px;
    color: #e2c97e;
}

/* =======================================================
   26. ABOUT PAGE STYLES (about.php)
   ======================================================= */
.about-gallery {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 18px;
    height: 500px;
    align-items: stretch;
}

.about-img-box {
    width: 100%;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: transform 0.4s ease;
}

.about-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.about-img-box:hover img {
    transform: scale(1.05);
}

.about-text-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    min-height: 480px;
}

.about-img-main {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.06);
    height: 100%;
}

.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-img-main:hover img {
    transform: scale(1.05);
}

.about-img-side {
    display: flex;
    flex-direction: column;
    gap: 18px;
    height: 100%;
    min-height: 0;
}

.about-img-side img {
    width: 100%;
    flex: 1;
    min-height: 0;
    height: 0;
    object-fit: cover;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: transform 0.6s ease;
    display: block;
}

.about-img-side img:hover {
    transform: scale(1.05);
}

.about-feats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 25px;
}

.about-feat {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-size: 0.95rem;
}

.about-feat i {
    color: #c9a84c;
    font-size: 1.15rem;
}

/* =======================================================
   27. CONTACT PAGE STYLES (contact.php)
   ======================================================= */
.contact-section-wrap {
    background: linear-gradient(180deg, #090909 0%, #131313 50%, #0a0a0a 100%);
    padding: 85px 0 95px;
    position: relative;
    border-bottom: 1px solid rgba(201, 168, 76, 0.16);
}

.contact-section-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.35), transparent);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 50px;
    align-items: start;
}

/* Info Column Header */
.contact-info-header {
    margin-bottom: 26px;
}

.badge-gold-subtle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(201, 168, 76, 0.12);
    border: 1px solid rgba(201, 168, 76, 0.35);
    color: #c9a84c;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 14px;
}

.contact-info-col h2 {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 2.3rem;
    color: #ffffff;
    margin-bottom: 14px;
    line-height: 1.2;
}

.contact-info-col p {
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Contact Cards */
.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: rgba(22, 22, 22, 0.85);
    backdrop-filter: blur(10px);
    padding: 20px 22px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: rgba(201, 168, 76, 0.45);
    background: rgba(28, 28, 28, 0.95);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
}

.contact-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(201, 168, 76, 0.12);
    color: #c9a84c;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    border: 1px solid rgba(201, 168, 76, 0.2);
}

.contact-card-body h4 {
    font-size: 1.02rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 6px;
    font-family: 'Outfit', sans-serif;
}

.contact-card-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-card-links a,
.contact-card-body p {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #cccccc;
    text-decoration: none;
    font-size: 0.92rem;
    line-height: 1.5;
    transition: color 0.25s ease;
    margin: 0;
}

.contact-card-links a:hover {
    color: #c9a84c;
}

.contact-card-links a i {
    font-size: 0.85rem;
    color: #c9a84c;
}

/* Payment Methods Card */
.contact-payments-card {
    background: rgba(18, 18, 18, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 18px 22px;
    margin-top: 20px;
    margin-bottom: 22px;
}

.contact-payments-card h5 {
    font-size: 0.85rem;
    color: #cccccc;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 12px;
}

.contact-payments-icons {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.contact-payments-icons img {
    height: 28px;
    width: auto;
    object-fit: contain;
    background: #ffffff;
    border-radius: 6px;
    padding: 3px 8px;
}

.cash-accepted-note {
    display: block;
    margin-top: 8px;
    font-size: 0.8rem;
    color: #9a9a9a;
}

/* Social Section */
.contact-social-section {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.social-label {
    font-size: 0.85rem;
    color: #9a9a9a;
    font-weight: 500;
}

.contact-social-row {
    display: flex;
    gap: 10px;
}

.contact-soc-btn {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(25, 25, 25, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #cccccc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-soc-btn:hover {
    color: #080808;
    background: #c9a84c;
    border-color: #c9a84c;
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(201, 168, 76, 0.4);
}

/* Right Column: Contact Form */
.contact-form-col {
    position: relative;
    padding-top: 155px;
}

.contact-form-card {
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.96), rgba(14, 14, 14, 0.98));
    border: 1px solid rgba(201, 168, 76, 0.28);
    border-radius: 22px;
    padding: 38px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    position: relative;
    overflow: hidden;
}

.contact-form-card {
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.96), rgba(14, 14, 14, 0.98));
    border: 1px solid rgba(201, 168, 76, 0.28);
    border-radius: 22px;
    padding: 38px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    position: relative;
    overflow: hidden;
}

.contact-form-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.12), transparent 70%);
    pointer-events: none;
}

.contact-form-header {
    margin-bottom: 26px;
}

.badge-gold {
    display: inline-block;
    background: linear-gradient(135deg, #c9a84c, #9c7a2e);
    color: #080808;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 10px;
}

.contact-form-header h3 {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 1.85rem;
    color: #ffffff;
    margin-bottom: 8px;
    line-height: 1.25;
}

.contact-form-header p {
    color: #cccccc;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Selected Package Banner */
.selected-package-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.2), rgba(201, 168, 76, 0.08));
    border: 1.5px solid #c9a84c;
    border-radius: 14px;
    padding: 12px 18px;
    margin-bottom: 22px;
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.2);
    animation: fadeIn 0.35s ease;
}

.package-banner-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.package-banner-left i {
    font-size: 1.5rem;
    color: #c9a84c;
    flex-shrink: 0;
}

.banner-sub {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #e2c97e;
    font-weight: 600;
}

.package-banner-left strong {
    font-size: 1.05rem;
    color: #ffffff;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
}

.btn-remove-pkg {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: #cccccc;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    line-height: 1;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-remove-pkg:hover {
    background: rgba(255, 75, 75, 0.2);
    border-color: #ff4b4b;
    color: #ff4b4b;
    transform: scale(1.08);
}

.custom-field-label {
    display: block;
    font-size: 0.82rem;
    font-weight: 500;
    color: #cccccc;
    margin-bottom: 6px;
    letter-spacing: 0.3px;
}

.field-icon-wrap {
    position: relative;
}

.field-icon-wrap i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #c9a84c;
    font-size: 0.95rem;
    pointer-events: none;
    z-index: 2;
}

.field-icon-wrap.textarea-wrap i {
    top: 18px;
    transform: none;
}

.custom-form-input {
    width: 100%;
    background: #090909;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 11px;
    color: #ffffff;
    font-size: 0.9rem;
    padding: 12px 14px 12px 42px;
    transition: all 0.3s ease;
    font-family: 'Outfit', sans-serif;
}

.custom-form-input:focus {
    outline: none;
    border-color: #c9a84c;
    background: #111111;
    box-shadow: 0 0 15px rgba(201, 168, 76, 0.25);
}

.custom-form-input::placeholder {
    color: #666666;
    font-size: 0.88rem;
}

select.custom-form-input {
    cursor: pointer;
}

select.custom-form-input option {
    background: #111111;
    color: #ffffff;
}

textarea.custom-form-input {
    resize: vertical;
    min-height: 100px;
    line-height: 1.5;
}

/* Submit Button */
.btn-gold-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #c9a84c, #9c7a2e);
    color: #080808;
    font-weight: 700;
    font-size: 0.92rem;
    padding: 14px 28px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.35s ease;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 0 6px 25px rgba(201, 168, 76, 0.35);
    margin-top: 6px;
}

.btn-gold-submit:hover {
    background: linear-gradient(135deg, #e2c97e, #c9a84c);
    transform: translateY(-2px);
    box-shadow: 0 10px 35px rgba(201, 168, 76, 0.55);
}

.btn-gold-submit i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.btn-gold-submit:hover i {
    transform: translateX(4px);
}

/* Success Alert */
.contact-success-alert {
    margin-top: 18px;
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.4);
    border-radius: 12px;
    padding: 14px 18px;
    color: #25d366;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.88rem;
    animation: fadeIn 0.4s ease;
}

.contact-success-alert i {
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-success-alert strong {
    display: block;
    margin-bottom: 2px;
    color: #48e280;
}

.contact-success-alert p {
    margin: 0;
    color: #bbf0cf;
    font-size: 0.84rem;
}

/* =======================================================
   MAP SEPARATOR SECTION (Between Contact & Footer)
   ======================================================= */
.contact-map-section {
    background: #060606;
    position: relative;
    border-top: 2px solid rgba(201, 168, 76, 0.25);
    border-bottom: 2px solid rgba(201, 168, 76, 0.25);
}

.map-section-header {
    background: linear-gradient(180deg, #0d0d0d, #080808);
    padding: 32px 0;
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.map-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.map-header-info h3 {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 1.6rem;
    color: #ffffff;
    margin: 6px 0 4px;
}

.map-address-line {
    color: #cccccc;
    font-size: 0.92rem;
    margin: 0;
}

.map-address-line i {
    color: #c9a84c;
    margin-right: 4px;
}

.btn-map-directions {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 168, 76, 0.12);
    border: 1px solid #c9a84c;
    color: #c9a84c;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.btn-map-directions:hover {
    background: #c9a84c;
    color: #080808;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 168, 76, 0.35);
}

.contact-map-frame {
    width: 100%;
    line-height: 0;
    position: relative;
}

.contact-map-frame iframe {
    display: block;
    width: 100%;
    filter: saturate(1.05) contrast(1.05);
}

@media (max-width: 992px) {
    .contact-form-card {
        padding: 30px 24px;
    }
}

/* =======================================================
   28. VIDEO GALLERY (video.php)
   ======================================================= */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.video-card {
    background: #1a1a1a;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.35s ease;
    cursor: pointer;
}

.video-card:hover {
    transform: translateY(-6px);
    border-color: #c9a84c;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 0 25px rgba(212, 175, 55, 0.2);
}

.video-card-thumb {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #000;
}

.video-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.video-card:hover .video-card-thumb img {
    transform: scale(1.06);
}

.video-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.video-card:hover .video-card-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.video-play-btn {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c9a84c, #9c7a2e);
    color: #111111;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
    transition: transform 0.3s ease;
}

.video-card:hover .video-play-btn {
    transform: scale(1.15);
}

.video-card-info {
    padding: 20px 22px;
}

.video-card-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: #c9a84c;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.video-card-info h3 {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 1.35rem;
    color: #ffffff;
    margin-bottom: 6px;
    transition: color 0.3s ease;
}

.video-card:hover .video-card-info h3 {
    color: #c9a84c;
}

.video-card-info p {
    font-size: 0.88rem;
    color: #cccccc;
    margin-bottom: 0;
}

/* Video Modal */
.video-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.94);
    backdrop-filter: blur(12px);
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding: 20px;
}

.video-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.video-modal-content {
    width: 100%;
    max-width: 900px;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.4);
}

.video-modal-content video {
    width: 100%;
    height: auto;
    display: block;
    max-height: 80vh;
    background: #000;
}

.video-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: rgba(0, 0, 0, 0.6);
    border: none;
    color: #fff;
    font-size: 2.2rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    z-index: 10;
}

.video-modal-close:hover {
    background: #c9a84c;
    color: #111111;
}

/* Additional Responsive Media Queries */
@media (max-width: 992px) {
    .service-feature-list {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .about-gallery {
        height: 420px;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .page-hero-section {
        padding: 130px 15px 70px;
    }

    .about-gallery {
        grid-template-columns: 1fr;
        height: auto;
    }

    .about-img-main {
        height: 280px;
    }

    .about-img-side {
        flex-direction: row;
        height: 160px;
        min-height: 160px;
    }

    .about-img-side img {
        width: calc(50% - 7px);
        height: 100%;
    }

    .about-feats {
        grid-template-columns: 1fr;
    }

    .section-label {
        letter-spacing: 2px;
        font-size: 0.7rem;
        max-width: 100%;
        text-align: center;
        white-space: normal;
    }

    .section-title {
        font-size: clamp(1.5rem, 5vw, 2.2rem);
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 36px;
    }

    .why-card {
        padding: 20px;
        gap: 16px;
    }

    .why-icon {
        width: 46px;
        height: 46px;
        font-size: 1.1rem;
    }

    .services-full-grid {
        grid-template-columns: 1fr;
    }

    .videos-grid {
        grid-template-columns: 1fr;
    }

    .lightbox-nav {
        display: none;
    }
}

/* =======================================================
   WHY CHOOSE US SECTION
   ======================================================= */
.why-choose-us .why-list {
    list-style: none;
    padding: 0;
}

.why-choose-us .why-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.why-choose-us .why-list li i {
    color: #c9a84c;
    font-size: 1.3rem;
}

.why-gallery-circle {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    position: relative;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    aspect-ratio: 1;
    border: 5px solid #1a1a1a;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.why-img-item {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.why-img-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.why-gallery-circle:hover .why-img-item img {
    transform: scale(1.1);
}

.why-gallery-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #c9a84c, #9c7a2e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #111;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border: 5px solid #1a1a1a;
    z-index: 2;
}