* {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

.hero-bg {
    background: linear-gradient(135deg, #0a1628 0%, #0f1d35 40%, #162544 100%);
    position: relative;
    overflow: hidden;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-bg::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 60%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(42, 74, 124, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(201, 168, 76, 0.1);
}

.gold-gradient {
    background: linear-gradient(135deg, #c9a84c, #e0c88a, #c9a84c);
    background-size: 200% 200%;
    animation: goldShift 3s ease infinite;
}

@keyframes goldShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.gradient-text {
    background: linear-gradient(135deg, #c9a84c, #e0c88a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #c9a84c;
    transition: width 0.3s ease;
}

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

#mobileMenu.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 9999;
    width: min(20rem, 85vw);
    height: 100vh;
    height: 100dvh;
    background-color: #0a1628;
    box-shadow: -16px 0 40px rgba(0, 0, 0, 0.35);
    overflow: hidden;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

#mobileMenu.mobile-menu.open {
    transform: translateX(0);
}

#mobileMenuOverlay.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 9998;
    background: rgba(10, 22, 40, 0.6);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

#mobileMenuOverlay.mobile-menu-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

body.mobile-menu-open {
    overflow: hidden;
}

#mobileMenu.mobile-menu>div {
    height: 100%;
}

.mobile-services-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-services-menu.open {
    max-height: 420px;
}

.blob-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    pointer-events: none;
}

.logo img {
    width: 50px;
}

.footer-logo {
    width: 70px;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0a1628;
}

::-webkit-scrollbar-thumb {
    background: #c9a84c;
    border-radius: 4px;
}

.custom-scrollbar::-webkit-scrollbar {
    width: 6px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: transparent;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: rgba(201, 168, 76, 0.3);
    border-radius: 10px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.more-faqs {
    display: none;
}

.more-faqs.show {
    display: block;
    animation: fadeIn 0.5s ease;
}

.planning-areas-swiper,
.required-swiper,
.documents-swiper {
    padding: 4px 4px 44px;
    width: 100%;
    max-width: 100%;
}

.planning-areas-swiper .swiper-wrapper,
.required-swiper .swiper-wrapper,
.documents-swiper .swiper-wrapper {
    align-items: stretch;
}

.planning-areas-swiper .swiper-slide,
.required-swiper .swiper-slide,
.documents-swiper .swiper-slide {
    height: auto;
}

.planning-areas-swiper:not(.swiper-initialized) .swiper-wrapper,
.required-swiper:not(.swiper-initialized) .swiper-wrapper,
.documents-swiper:not(.swiper-initialized) .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.planning-areas-swiper:not(.swiper-initialized) .swiper-slide,
.required-swiper:not(.swiper-initialized) .swiper-slide,
.documents-swiper:not(.swiper-initialized) .swiper-slide {
    width: auto !important;
}

.planning-swiper-pagination,
.required-swiper-pagination,
.documents-swiper-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.planning-swiper-pagination .swiper-pagination-bullet,
.required-swiper-pagination .swiper-pagination-bullet,
.documents-swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 !important;
    background: rgba(10, 22, 40, 0.25);
    opacity: 1;
}

.planning-swiper-pagination .swiper-pagination-bullet-active,
.required-swiper-pagination .swiper-pagination-bullet-active,
.documents-swiper-pagination .swiper-pagination-bullet-active {
    width: 28px;
    border-radius: 999px;
    background: #c9a84c;
}


/* Carousel Styles */
.carousel-container {
    position: relative;
    width: 100%;
    height: 700px;
    overflow: hidden;
    border-radius: 0;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    border-radius: 0px;
    overflow: hidden;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom;
}

.carousel-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 24px 24px;
    background: linear-gradient(to top, rgba(10, 22, 40, 0.95) 0%, rgba(10, 22, 40, 0.6) 50%, transparent 100%);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: #c9a84c;
    width: 28px;
    border-radius: 5px;
}

footer {
    background: #0b1830;
}

.footer-logo {
    width: 90px;
    transition: .3s;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-link {
    color: #94A3B8;
    text-decoration: none;
    transition: all .3s ease;
    position: relative;
    display: inline-block;
}

.footer-link:hover {
    color: #D4AF37;
    padding-left: 8px;
}

.footer-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 1px;
    background: #D4AF37;
    transition: .3s;
}

.footer-link:hover::after {
    width: 100%;
}

.bg-navy-800 {
    background: #0b1830;
}

.border-navy-700 {
    border-color: rgba(255, 255, 255, .08);
}

/* Responsive */

@media (max-width:991px) {

    footer .flex-wrap {
        justify-content: flex-start;
    }

}

@media (max-width:767px) {

    footer {
        text-align: center;
    }

    .footer-logo {
        margin: auto;
    }

    footer h4::after {
        left: 50% !important;
        transform: translateX(-50%);
    }

}



@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

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

@media (max-width: 1366px) {
    .carousel-container {
        height: 600px;
    }
}

@media (max-width: 768px) {

    .carousel-container {
        height: 250px;
    }

    .logo img {
        width: 40px;
    }

    .footer-logo {
        width: 40px;
    }

    .planning-areas-swiper:not(.swiper-initialized) .swiper-wrapper,
    .required-swiper:not(.swiper-initialized) .swiper-wrapper,
    .documents-swiper:not(.swiper-initialized) .swiper-wrapper {
        grid-template-columns: 1fr;
    }

    .blob-shape,
    .mobile-hide {
        display: none;
    }


}