/* JA MEGA - Premium Hospitality Website */

:root {
    --color-gold: #C9A227;
    --color-gold-light: #E4C767;
    --color-black: #0A0A0A;
    --color-dark: #1A1A1A;
    --color-dark-gray: #2A2A2A;
    --color-light-gray: #8A8A8A;
    --color-off-white: #F5F5F5;
    --color-white: #FFFFFF;
    --gradient-gold: linear-gradient(135deg, #C9A227 0%, #E4C767 50%, #C9A227 100%);
    --font-display: 'Poppins', sans-serif;
    --font-body: 'Poppins', sans-serif;
    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.7;
    color: var(--color-off-white);
    background: var(--color-black);
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.gold-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 3rem;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2rem;
    height: 1px;
    background: var(--color-gold);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 500;
    line-height: 1.2;
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition-medium);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    padding: 1rem 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-white);
}

.logo-accent {
    color: var(--color-gold);
}

.logo {
    text-decoration: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-links>li>a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-off-white);
    text-decoration: none;
    transition: var(--transition-fast);
}

.nav-links>li>a:hover {
    color: var(--color-gold);
}

.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.dropdown-arrow {
    transition: var(--transition-fast);
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 280px;
    padding: 1rem 0;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(201, 162, 39, 0.1);
    border-radius: 8px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
}

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

.dropdown-menu li a {
    display: block;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    color: var(--color-off-white);
    text-decoration: none;
    transition: var(--transition-fast);
}

.dropdown-menu li a:hover {
    background: rgba(201, 162, 39, 0.1);
    color: var(--color-gold);
}

.cta-button {
    padding: 0.875rem 1.75rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-black);
    background: var(--gradient-gold);
    border: none;
    border-radius: 4px;
    text-decoration: none;
    transition: var(--transition-medium);
    box-shadow: 0 10px 40px rgba(201, 162, 39, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 50px rgba(201, 162, 39, 0.4);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--color-white);
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.9), rgba(26, 26, 26, 0.85)),
        url('https://images.unsplash.com/photo-1566073771259-6a8506099945?w=2000') center/cover fixed;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    padding: 0 2rem;
    padding-top: 8rem;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

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

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 500;
    line-height: 1.1;
    color: var(--color-white);
    margin-bottom: 2rem;
}

.hero-subheadline {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 300;
    color: var(--color-light-gray);
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.125rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-black);
    background: var(--gradient-gold);
    border-radius: 4px;
    text-decoration: none;
    transition: var(--transition-medium);
    box-shadow: 0 10px 40px rgba(201, 162, 39, 0.3);
}

.hero-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 60px rgba(201, 162, 39, 0.5);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: var(--color-light-gray);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: pulse 2s ease-in-out infinite;
    z-index: 10;
}

@media (max-height: 800px) {
    .hero-scroll-indicator {
        display: none;
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--color-gold), transparent);
}

/* Credibility Section */
.credibility {
    padding: 8rem 0;
    background: var(--color-dark);
    position: relative;
}

.credibility-header {
    margin-bottom: 5rem;
}

.credibility-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.credibility-text {
    max-width: 600px;
}

.credibility-text .lead-text {
    font-size: 1.25rem;
    color: var(--color-white);
    margin-bottom: 2rem;
    line-height: 1.8;
    border-left: 3px solid var(--color-gold);
    padding-left: 1.5rem;
}

.credibility-text p {
    color: var(--color-light-gray);
    margin-bottom: 1.5rem;
}

.credibility-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 3rem;
    background: rgba(30, 30, 30, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

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

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 600;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--color-light-gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Pillars Section */
.pillars {
    padding: 8rem 0;
    background: var(--color-black);
    position: relative;
}

.pillars::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 162, 39, 0.3), transparent);
}

.pillars-header {
    text-align: center;
    margin-bottom: 5rem;
}

.pillars-header .section-tag {
    padding-left: 0;
}

.pillars-header .section-tag::before {
    display: none;
}

.pillars-header .section-subtitle {
    font-size: 1.1rem;
    color: var(--color-light-gray);
    max-width: 600px;
    margin: 0 auto;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.pillar-card {
    position: relative;
    padding: 3rem 2.5rem;
    background: rgba(30, 30, 30, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.pillar-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(201, 162, 39, 0.1), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.pillar-card:hover {
    transform: translateY(-10px);
    background: rgba(40, 40, 40, 0.6);
    border-color: rgba(201, 162, 39, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(201, 162, 39, 0.1);
}

.pillar-card:hover::after {
    opacity: 1;
}

.pillar-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 600;
    color: rgba(201, 162, 39, 0.15);
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    line-height: 1;
}

.pillar-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--color-gold);
}

.pillar-title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--color-white);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.pillar-description {
    font-size: 0.95rem;
    color: var(--color-light-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.pillar-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-gold);
    text-decoration: none;
    transition: var(--transition-fast);
    position: relative;
    z-index: 5;
}

.pillar-link:hover {
    gap: 0.75rem;
}

/* Why Us Section */
.why-us {
    padding: 8rem 0;
    background: var(--color-dark);
}

.why-us-header {
    text-align: center;
    margin-bottom: 5rem;
}

.why-us-header .section-tag {
    padding-left: 0;
}

.why-us-header .section-tag::before {
    display: none;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.why-card {
    text-align: center;
    padding: 3rem;
    background: rgba(42, 42, 42, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: var(--transition-medium);
}

.why-card:hover {
    transform: translateY(-5px);
    background: rgba(42, 42, 42, 0.5);
    border-color: rgba(201, 162, 39, 0.2);
}

.why-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    color: var(--color-gold);
    background: rgba(201, 162, 39, 0.1);
    border-radius: 50%;
}

.why-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.why-card p {
    font-size: 0.95rem;
    color: var(--color-light-gray);
    line-height: 1.7;
}

/* Transformation Section */
.transformation {
    padding: 8rem 0;
    background: var(--color-black);
    position: relative;
}

.transformation::before,
.transformation::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 162, 39, 0.3), transparent);
}

.transformation::before {
    top: 0;
}

.transformation::after {
    bottom: 0;
}

.transformation-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.transformation-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 500;
    color: var(--color-white);
    margin-bottom: 3rem;
    line-height: 1.3;
}

.transformation-questions {
    margin-bottom: 3rem;
}

.transformation-questions p {
    font-size: 1.125rem;
    color: var(--color-light-gray);
    margin-bottom: 1rem;
    font-style: italic;
}

.transformation-answer {
    font-size: 1.125rem;
    color: var(--color-white);
    line-height: 1.8;
    padding: 2rem;
    background: rgba(201, 162, 39, 0.1);
    border-left: 3px solid var(--color-gold);
    border-radius: 0 8px 8px 0;
}

/* Final CTA Section */
.final-cta {
    position: relative;
    padding: 8rem 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95), rgba(26, 26, 26, 0.9)),
        url('https://images.unsplash.com/photo-1551882547-ff40c63fe5fa?w=2000') center/cover;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(201, 162, 39, 0.15), transparent 60%);
}

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

.cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 500;
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.25rem;
    color: var(--color-light-gray);
    margin-bottom: 3rem;
}

.cta-button-large {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 3rem;
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-black);
    background: var(--gradient-gold);
    border: none;
    border-radius: 4px;
    text-decoration: none;
    transition: var(--transition-medium);
    box-shadow: 0 10px 40px rgba(201, 162, 39, 0.3);
}

.cta-button-large:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 25px 70px rgba(201, 162, 39, 0.5);
}

/* Footer */
.footer {
    background: #050505;
    padding: 10rem 0 6rem;
    /* Increased top padding */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 5rem;
}

.footer-brand p {
    margin-top: 1.5rem;
    color: var(--color-light-gray);
    font-size: 0.95rem;
    max-width: 300px;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links ul li a {
    font-size: 0.9rem;
    color: var(--color-light-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-links ul li a:hover {
    color: var(--color-gold);
}

.footer-contact p,
.footer-contact a {
    font-size: 0.9rem;
    color: var(--color-light-gray);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-contact a:hover {
    color: var(--color-gold);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #4A4A4A;
}

/* Responsive */
@media (max-width: 1200px) {
    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .credibility-content {
        grid-template-columns: 1fr;
    }

    .credibility-stats {
        max-width: 500px;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

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

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

    /* Fix Mobile Backgrounds */
    .hero,
    .final-cta {
        background-attachment: scroll !important;
        background-position: center center !important;
        background-size: cover !important;
    }
}

@media (max-width: 768px) {

    .nav-links,
    .navbar .cta-button {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

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

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

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand p {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: 2px;
}

::selection {
    background: var(--color-gold);
    color: var(--color-black);
}

/* Preloader */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(ellipse at center, #1a1a1a 0%, #0a0a0a 100%);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
        visibility 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.preloader::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(201, 162, 39, 0.05) 0%, transparent 70%);
    animation: pulseBackground 4s ease-in-out infinite;
}

@keyframes pulseBackground {

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

    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Animated Rings */
.preloader-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
}

.ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: var(--color-gold);
    animation: rotate 2s linear infinite;
}

.ring-1 {
    width: 280px;
    height: 280px;
    border-width: 3px;
    opacity: 0.8;
    animation-duration: 3s;
    box-shadow: 0 0 20px rgba(201, 162, 39, 0.3);
}

.ring-2 {
    width: 220px;
    height: 220px;
    border-width: 2px;
    opacity: 0.6;
    animation-duration: 2s;
    animation-direction: reverse;
    border-top-color: #d4a843;
    box-shadow: 0 0 15px rgba(212, 168, 67, 0.2);
}

.ring-3 {
    width: 160px;
    height: 160px;
    border-width: 2px;
    opacity: 0.4;
    animation-duration: 1.5s;
    border-top-color: #e8c766;
    box-shadow: 0 0 10px rgba(232, 199, 102, 0.15);
}

@keyframes rotate {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Logo Wrapper */
.preloader-logo-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {

    0%,
    100% {
        transform: translate(-50%, -50%) translateY(0px);
    }

    50% {
        transform: translate(-50%, -50%) translateY(-10px);
    }
}

.preloader-logo-img {
    width: 110px;
    height: auto;
    display: block;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 10px 30px rgba(201, 162, 39, 0.4));
    animation: logoFadeIn 1s ease-out;
}

@keyframes logoFadeIn {
    0% {
        opacity: 0;
        transform: scale(0.5) rotate(-10deg);
    }

    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: glowPulse 2s ease-in-out infinite;
    z-index: 1;
}

@keyframes glowPulse {

    0%,
    100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

/* Animated Particles */
.preloader-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--color-gold);
    border-radius: 50%;
    opacity: 0;
    box-shadow: 0 0 10px rgba(201, 162, 39, 0.8);
    animation: particleFloat 4s ease-in-out infinite;
}

.particle:nth-child(1) {
    left: 20%;
    top: 30%;
    animation-delay: 0s;
    animation-duration: 3s;
}

.particle:nth-child(2) {
    left: 80%;
    top: 40%;
    animation-delay: 0.5s;
    animation-duration: 3.5s;
}

.particle:nth-child(3) {
    left: 15%;
    top: 70%;
    animation-delay: 1s;
    animation-duration: 4s;
}

.particle:nth-child(4) {
    left: 85%;
    top: 65%;
    animation-delay: 1.5s;
    animation-duration: 3.2s;
}

.particle:nth-child(5) {
    left: 50%;
    top: 20%;
    animation-delay: 2s;
    animation-duration: 3.8s;
}

.particle:nth-child(6) {
    left: 50%;
    top: 80%;
    animation-delay: 2.5s;
    animation-duration: 3.3s;
}

@keyframes particleFloat {
    0% {
        opacity: 0;
        transform: translateY(0) scale(0);
    }

    20% {
        opacity: 1;
        transform: translateY(-20px) scale(1);
    }

    80% {
        opacity: 1;
        transform: translateY(-40px) scale(1);
    }

    100% {
        opacity: 0;
        transform: translateY(-60px) scale(0);
    }
}

/* Loading Text */
.preloader-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-top: 180px;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    color: var(--color-gold);
    text-transform: uppercase;
    z-index: 10;
}

.loading-letter {
    display: inline-block;
    animation: letterBounce 1.4s ease-in-out infinite;
    opacity: 0.7;
}

.loading-letter:nth-child(1) {
    animation-delay: 0s;
}

.loading-letter:nth-child(2) {
    animation-delay: 0.1s;
}

.loading-letter:nth-child(3) {
    animation-delay: 0.2s;
}

.loading-letter:nth-child(4) {
    animation-delay: 0.3s;
}

.loading-letter:nth-child(5) {
    animation-delay: 0.4s;
}

.loading-letter:nth-child(6) {
    animation-delay: 0.5s;
}

.loading-letter:nth-child(7) {
    animation-delay: 0.6s;
}

@keyframes letterBounce {

    0%,
    100% {
        transform: translateY(0);
        opacity: 0.7;
    }

    50% {
        transform: translateY(-8px);
        opacity: 1;
    }
}

.loading-dots {
    display: inline-flex;
    gap: 0.2rem;
    margin-left: 0.2rem;
}

.dot {
    display: inline-block;
    animation: dotPulse 1.4s ease-in-out infinite;
    opacity: 0.5;
}

.dot:nth-child(1) {
    animation-delay: 0s;
}

.dot:nth-child(2) {
    animation-delay: 0.2s;
}

.dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes dotPulse {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 1;
    }
}

/* Responsive Preloader */
@media (max-width: 768px) {
    .preloader-rings {
        width: 250px;
        height: 250px;
    }

    .ring-1 {
        width: 230px;
        height: 230px;
    }

    .ring-2 {
        width: 180px;
        height: 180px;
    }

    .ring-3 {
        width: 130px;
        height: 130px;
    }

    .preloader-logo-img {
        width: 80px;
    }

    .logo-glow {
        width: 110px;
        height: 110px;
    }

    .preloader-text {
        font-size: 0.85rem;
        letter-spacing: 0.2em;
        margin-top: 140px;
    }
}

/* Mobile Menu Styles */
.nav-links.active {
    display: flex !important;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.nav-links.active>li>a {
    font-size: 1.5rem;
    font-weight: 500;
}

.nav-links.active .dropdown-menu {
    position: static;
    transform: none;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    background: transparent;
    border: none;
    text-align: center;
    min-width: auto;
    padding: 0;
    transition: all 0.4s ease;
}

.nav-links.active .dropdown-toggle {
    justify-content: center;
    width: 100%;
}

.nav-links.active .dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    max-height: 500px;
    padding: 1rem 0 0;
    margin-bottom: 1rem;
}

.nav-links.active .dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.nav-links.active .dropdown-menu li a {
    padding: 0.5rem;
    font-size: 1rem;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu-btn span {
    transition: var(--transition-fast);
}

/* Additional Hover Effects */
.pillar-icon {
    transition: var(--transition-medium);
}

.pillar-card:hover .pillar-icon {
    transform: scale(1.1);
    color: var(--color-gold-light);
}

.why-icon {
    transition: var(--transition-medium);
}

.why-card:hover .why-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(201, 162, 39, 0.2);
}

/* Glassmorphism card effect on hover */
.pillar-card:hover {
    background: linear-gradient(180deg, rgba(201, 162, 39, 0.08) 0%, rgba(26, 26, 26, 0.8) 100%);
}

/* Subtle glow effect */
.cta-button-outline {
    display: inline-block;
    padding: 1rem 2.5rem;
    border: 1px solid var(--color-white);
    color: var(--color-white);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button-outline:hover {
    background: var(--color-white);
    color: var(--color-black);
}

@keyframes glow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(201, 162, 39, 0.1);
    }

    50% {
        box-shadow: 0 0 40px rgba(201, 162, 39, 0.2);
    }
}

.hero-cta,
.cta-button-large {
    animation: glow 3s ease-in-out infinite;
}

/* Text gradient animation */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

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

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

.gold-text {
    background-size: 200% 200%;
    animation: gradientShift 5s ease infinite;
}


.logo-img {
    height: 40px;
    width: auto;
    display: block;
    object-fit: contain;
}

@media (max-width: 768px) {
    .logo-img {
        height: 35px;
    }
}