body {
    background-color: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
}

/* Lenis Smooth Scroll */
html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: #C5A059;
    border-radius: 2px;
}

/* Hamburger Animation */
.hamburger .line {
    width: 30px;
    height: 2px;
    background-color: white;
    display: block;
    margin: 6px auto;
    transition: all 0.3s ease-in-out;
}

.hamburger.is-active .line:nth-child(2) {
    opacity: 0;
}

.hamburger.is-active .line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.is-active .line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Text Stroke */
.text-stroke {
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.15);
    color: transparent;
}

/* Magnetic Border */
.btn-magnetic {
    position: relative;
    background: transparent;
    color: #fff;
    transition: all 0.3s ease;
    overflow: hidden;
    z-index: 1;
}

.btn-magnetic::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #C5A059;
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.btn-magnetic:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-magnetic:hover {
    color: #000;
}

/* Dropdown Styles */
.dropdown-menu {
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.group:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Swiper Fixes & Effects */
.swiper-pagination-bullet {
    background: #fff;
    opacity: 0.3;
    width: 10px;
    height: 10px;
    transition: all 0.3s;
}

.swiper-pagination-bullet-active {
    background: #C5A059;
    opacity: 1;
    width: 30px;
    border-radius: 5px;
}

/* Custom Pagination Positioning for Testimonials */
.testimonial-pagination {
    position: relative !important;
    margin-top: 30px !important;
    bottom: 0 !important;
    display: flex;
    justify-content: center;
}

/* Call Widget Vertical */
.vertical-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
}

/* Mobile Menu Premium Animation */
#mobile-menu {
    clip-path: circle(0px at calc(100% - 40px) 40px);
    transition: clip-path 0.7s cubic-bezier(0.77, 0, 0.175, 1);
    background: rgba(10, 10, 10, 0.98);
    height: 100dvh;
    z-index: 45;
}

#mobile-menu.is-open {
    clip-path: circle(150% at calc(100% - 40px) 40px);
}

/* Staggered Animation for Links */
.mobile-link {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

#mobile-menu.is-open .mobile-link {
    opacity: 1;
    transform: translateY(0);
}

#mobile-menu.is-open .mobile-link:nth-child(1) {
    transition-delay: 0.2s;
}

#mobile-menu.is-open .mobile-link:nth-child(2) {
    transition-delay: 0.3s;
}

#mobile-menu.is-open .mobile-link:nth-child(3) {
    transition-delay: 0.4s;
}

#mobile-menu.is-open .mobile-link:nth-child(4) {
    transition-delay: 0.5s;
}

#mobile-menu.is-open .mobile-link:nth-child(5) {
    transition-delay: 0.6s;
}