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

/* Performance: defer rendering of off-screen sections */
section {
    content-visibility: auto;
    contain-intrinsic-size: auto 800px;
}

/* Performance: pause ALL animations by default, play only when visible */
section *, section *::before, section *::after {
    animation-play-state: paused !important;
}
section.is-visible *, section.is-visible *::before, section.is-visible *::after {
    animation-play-state: running !important;
}

/* Performance: respect user preference for reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

:root {
    --gold: #D4AF37;
    --dark-gold: #B8860B;
    --rich-gold: #FFD700;
    --antique-gold: #CD7F32;
    --black: #0A0A0A;
    --deep-black: #000000;
    --desert-beige: #F5E6D3;
    --sand: #E8D5B7;
    --papyrus: #F4F1E8;
    --luxurious-white: #FEFEFE;
    --royal-purple: #4B0082;
    --gradient-gold: linear-gradient(135deg, #D4AF37, #FFD700, #B8860B);
    --gradient-sand: linear-gradient(135deg, #F5E6D3, #E8D5B7, #DEB887);
    --gradient-royal: linear-gradient(135deg, #4B0082, #8B008B, #9400D3);
    --shadow-gold: 0 0 50px rgba(212, 175, 55, 0.6);
    --shadow-royal: 0 0 30px rgba(75, 0, 130, 0.4);
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background: var(--black);
    color: var(--luxurious-white);
    line-height: 1.6;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

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

/* Enhanced Modern Navigation */
.navigation {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.97) 0%, rgba(15, 15, 15, 0.97) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    transition: padding 0.3s ease, background 0.3s ease;
    will-change: padding;
    contain: layout style;
}

.navigation.scrolled {
    padding: 0.6rem 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.97) 0%, rgba(15, 15, 15, 0.97) 100%);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.4);
}

.navigation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(212, 175, 55, 0.08) 25%, 
        rgba(212, 175, 55, 0.08) 75%, 
        transparent 100%);
    opacity: 0.6;
    opacity: 0.6;
}

@keyframes navGlow {
    0% { opacity: 0.4; }
    100% { opacity: 0.8; }
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
    gap: 2rem;
}

.logo {
    font-family: 'Cinzel', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold);
    text-shadow: 
        0 0 15px rgba(212, 175, 55, 0.6),
        1px 1px 3px rgba(0, 0, 0, 0.6);
    letter-spacing: 2px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-logo {
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-logo:hover {
    transform: scale(1.05);
    text-shadow: 
        0 0 30px rgba(212, 175, 55, 1),
        0 0 60px rgba(212, 175, 55, 0.6);
}

.logo::before,
.logo::after {
    display: none;
}

@keyframes logoOrnamentFloat {
    0% { transform: translateY(-50%) scale(1); }
    100% { transform: translateY(-50%) scale(1.1); }
}

.logo:hover {
    transform: scale(1.05);
    text-shadow: 
        0 0 30px rgba(212, 175, 55, 1),
        0 0 60px rgba(212, 175, 55, 0.6),
        2px 2px 8px rgba(0, 0, 0, 0.8);
}

/* Hide navigation logo when mobile menu is active */
body.mobile-menu-active .navigation .logo {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 1001;
    transition: all 0.3s ease;
}

/* Show mobile menu button on mobile devices */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex !important;
    }

    .nav-links {
        display: none !important;
    }
}

.mobile-menu-btn:hover {
    transform: scale(1.1);
}

.hamburger {
    width: 25px;
    height: 3px;
    background: var(--gold);
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 3px;
    background: var(--gold);
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

/* Hamburger Animation */
.mobile-menu-btn.active .hamburger {
    background: transparent;
    box-shadow: none;
}

.mobile-menu-btn.active .hamburger::before {
    top: 0;
    transform: rotate(45deg);
    background: var(--rich-gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.8);
}

.mobile-menu-btn.active .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
    background: var(--rich-gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.8);
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    position: relative;
    flex-wrap: nowrap;
    align-items: center;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.98) 0%, 
        rgba(15, 15, 15, 0.95) 50%, 
        rgba(0, 0, 0, 0.98) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 999;
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    overflow: hidden;
}

.mobile-menu-overlay.active {
    display: flex;
    opacity: 1;
    visibility: visible;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.mobile-menu-overlay.active ~ .navigation .logo {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(75, 0, 130, 0.1) 0%, transparent 60%);
    animation: menuShimmer 8s ease-in-out infinite alternate;
}

@keyframes menuShimmer {
    0% { opacity: 0.3; }
    100% { opacity: 0.8; }
}

.mobile-menu-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 90%;
    width: 100%;
}

.mobile-menu-logo {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    text-shadow: 
        0 0 30px rgba(212, 175, 55, 0.8),
        0 0 60px rgba(212, 175, 55, 0.4);
    letter-spacing: 3px;
    margin-bottom: 3rem;
}

@keyframes logoGlow {
    0% { 
        text-shadow: 
            0 0 30px rgba(212, 175, 55, 0.8),
            0 0 60px rgba(212, 175, 55, 0.4);
    }
    100% { 
        text-shadow: 
            0 0 50px rgba(212, 175, 55, 1),
            0 0 80px rgba(212, 175, 55, 0.6),
            0 0 120px rgba(212, 175, 55, 0.3);
    }
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.mobile-menu-links a {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--desert-beige);
    text-decoration: none;
    letter-spacing: 2px;
    padding: 1.5rem 2rem;
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    background: linear-gradient(135deg, 
        rgba(212, 175, 55, 0.05) 0%, 
        rgba(0, 0, 0, 0.8) 100%);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.mobile-menu-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(212, 175, 55, 0.2), 
        transparent);
    transition: left 0.6s ease;
}

.mobile-menu-links a:hover::before,
.mobile-menu-links a:active::before {
    left: 100%;
}

.mobile-menu-links a:hover,
.mobile-menu-links a:active {
    color: var(--gold);
    border-color: var(--gold);
    background: linear-gradient(135deg, 
        rgba(212, 175, 55, 0.15) 0%, 
        rgba(0, 0, 0, 0.9) 100%);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
    box-shadow: 
        0 15px 40px rgba(212, 175, 55, 0.2),
        0 0 60px rgba(212, 175, 55, 0.1);
    transform: translateY(-5px) scale(1.02);
}

.mobile-menu-cta {
    margin-top: 2rem;
}

.mobile-menu-cta .cta-button {
    font-size: 1.2rem;
    padding: 1.2rem 2.5rem;
    letter-spacing: 1.5px;
    box-shadow: 
        0 0 50px rgba(212, 175, 55, 0.6),
        0 15px 30px rgba(0, 0, 0, 0.3);
}

.mobile-menu-ornaments {
    position: absolute;
    font-size: 6rem;
    color: var(--gold);
    opacity: 0.1;
    animation: ornamentFloat 8s ease-in-out infinite alternate;
}

.mobile-menu-ornament-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.mobile-menu-ornament-2 {
    top: 20%;
    right: 15%;
    animation-delay: 2s;
}

.mobile-menu-ornament-3 {
    bottom: 20%;
    left: 15%;
    animation-delay: 4s;
}

.mobile-menu-ornament-4 {
    bottom: 15%;
    right: 10%;
    animation-delay: 6s;
}

/* Menu Animation Effects */
.mobile-menu-links a {
    transform: translateY(50px);
    opacity: 0;
    animation: none;
}

.mobile-menu-overlay.active .mobile-menu-links a {
    animation: slideInUp 0.6s ease-out forwards;
}

.mobile-menu-overlay.active .mobile-menu-links a:nth-child(1) { animation-delay: 0.1s; }
.mobile-menu-overlay.active .mobile-menu-links a:nth-child(2) { animation-delay: 0.2s; }
.mobile-menu-overlay.active .mobile-menu-links a:nth-child(3) { animation-delay: 0.3s; }
.mobile-menu-overlay.active .mobile-menu-links a:nth-child(4) { animation-delay: 0.4s; }

.mobile-menu-logo {
    transform: scale(0.8);
    opacity: 0;
}

.mobile-menu-overlay.active .mobile-menu-logo {
    animation: scaleIn 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.2s forwards;
}

.mobile-menu-cta {
    transform: translateY(30px);
    opacity: 0;
}

.mobile-menu-overlay.active .mobile-menu-cta {
    animation: slideInUp 0.6s ease-out 0.5s forwards;
}

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

@keyframes scaleIn {
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.nav-links a {
    color: var(--desert-beige);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    padding: 8px 14px;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-family: 'Cinzel', serif;
    white-space: nowrap;
    min-width: fit-content;
}

.nav-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
    transition: left 0.6s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 2px;
    transition: width 0.4s ease;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.8);
}

.nav-links a:hover {
    color: var(--gold);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.8);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(212, 175, 55, 0.2);
}

.nav-links a:hover::before {
    left: 100%;
}

.nav-links a:hover::after {
    width: 80%;
}

.nav-links a:active {
    transform: translateY(0);
}

/* Hero Section Enhanced */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: 
        linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.8) 50%, rgba(0, 0, 0, 0.9) 100%),
        radial-gradient(circle at 30% 20%, rgba(75, 0, 130, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        url('kleopatra.png') no-repeat center center,
        linear-gradient(135deg, var(--deep-black) 0%, var(--black) 50%, #1a1a1a 100%);
    background-size: cover, auto, auto, cover, cover;
    background-position: center, center, center, center, center;
    overflow: hidden;
    margin-top: 0;
    padding: 90px 10px 40px 10px;
    background-attachment: fixed;
}

@media (max-width: 768px) {
    .hero {
        background-attachment: scroll;
        padding: 80px 15px 30px 15px;
        min-height: 100vh;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 60% 40%, rgba(212, 175, 55, 0.25) 0%, transparent 60%),
        radial-gradient(circle at 20% 20%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    opacity: 0.6;
    z-index: 1;
}

.hieroglyphs-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200"><text x="20" y="40" font-size="24" fill="%23D4AF37" opacity="0.05">𓂀</text><text x="120" y="80" font-size="20" fill="%23D4AF37" opacity="0.03">𓋹</text><text x="60" y="120" font-size="18" fill="%23D4AF37" opacity="0.04">𓁹</text><text x="160" y="160" font-size="22" fill="%23D4AF37" opacity="0.03">𓊖</text></svg>');
    will-change: transform;
}

@keyframes shimmer {
    0% { opacity: 0.3; }
    100% { opacity: 0.8; }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(1deg); }
}

.floating-hieroglyph {
    position: absolute;
    font-size: 3rem;
    color: var(--gold);
    opacity: 0.1;
    animation: floatSlow 15s ease-in-out infinite;
    will-change: transform;
}

.floating-hieroglyph.h1 {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.floating-hieroglyph.h2 {
    top: 60%;
    right: 20%;
    animation-delay: 5s;
}

.floating-hieroglyph.h3 {
    bottom: 30%;
    left: 10%;
    animation-delay: 10s;
}

@keyframes floatSlow {
    0%, 100% { transform: translateY(0px) scale(1); opacity: 0.1; }
    50% { transform: translateY(-30px) scale(1.1); opacity: 0.2; }
}



.hero-content {
    text-align: center;
    z-index: 3;
    position: relative;
    animation: fadeInUp 2s ease-out;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 15px;
    min-height: calc(100vh - 120px);
    justify-content: center;
}

@media (max-width: 768px) {
    .hero-content {
        padding: 0 25px;
        margin-top: 0;
        min-height: calc(100vh - 100px);
        justify-content: center;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 0 20px;
        min-height: calc(100vh - 80px);
        gap: 0.8rem;
    }
}

.hero-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2rem, 6vw, 4.5rem);
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 0.5rem;
    margin-top: 0;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
    letter-spacing: 4px;
    white-space: nowrap;
    text-align: center;
}

@media (max-width: 768px) {
    .hero-title {
        white-space: normal;
        word-break: break-word;
        text-align: center;
        font-size: clamp(2.2rem, 8vw, 3.5rem);
        letter-spacing: 8px;
        margin-top: 0;
        line-height: 1.1;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: clamp(1.8rem, 9vw, 2.8rem);
        letter-spacing: 6px;
        margin-top: 0;
        line-height: 1.1;
        margin-bottom: 0.3rem;
    }
}

@keyframes titleGlow {
    0% { 
        text-shadow: 
            0 0 30px rgba(212, 175, 55, 0.8),
            0 0 60px rgba(212, 175, 55, 0.4);
    }
    100% { 
        text-shadow: 
            0 0 50px rgba(212, 175, 55, 1),
            0 0 80px rgba(212, 175, 55, 0.6),
            0 0 120px rgba(212, 175, 55, 0.3);
    }
}

.hero-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.2rem, 4vw, 2.5rem);
    font-weight: 400;
    color: var(--desert-beige);
    margin-bottom: 2rem;
    letter-spacing: 3px;
    font-style: italic;
    width: 100%;
    max-width: none;
    text-align: center;
}

@media (min-width: 769px) {
    .hero-subtitle {
        letter-spacing: 8px;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
        padding: 0 2rem;
    }
}

@media (max-width: 768px) {
    .hero-subtitle {
        font-size: clamp(1rem, 5vw, 1.8rem);
        letter-spacing: 2px;
        margin-bottom: 1.5rem;
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .hero-subtitle {
        font-size: clamp(0.9rem, 5vw, 1.4rem);
        letter-spacing: 1px;
        margin-bottom: 1rem;
    }
}

.hero-description {
    font-size: 1.2rem;
    color: var(--sand);
    letter-spacing: 1px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.egyptian-ornament {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 1.5rem 0;
    gap: 0.1rem;
    position: relative;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--sand);
    margin: 0;
    margin-bottom: -3rem;
    letter-spacing: 3px;
    max-width: 600px;
    text-align: center;
    font-family: 'Cinzel', serif;
    text-transform: uppercase;
    font-weight: 500;
    text-shadow: 0 0 15px rgba(232, 213, 183, 0.4);
    z-index: 3;
    position: relative;
}

@media (max-width: 768px) {
    .hero-description {
        font-size: 1rem;
        letter-spacing: 2px;
        max-width: 90%;
        margin-bottom: -2.5rem;
        margin-top: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-description {
        font-size: 0.9rem;
        letter-spacing: 1px;
        max-width: 95%;
        margin-bottom: -2.5rem;
        margin-top: 2rem;
    }
}

.ornament-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    width: 100%;
    margin: 1.5rem 0;
}

@media (max-width: 768px) {
    .ornament-divider {
        gap: 1rem;
        margin: 1.2rem 0;
    }
}

@media (max-width: 480px) {
    .ornament-divider {
        gap: 0.8rem;
        margin: 1rem 0;
    }
}

.ornament-left, .ornament-right {
    font-size: 2.2rem;
    color: var(--gold);
    animation: pulse 3s ease-in-out infinite alternate;
}

@media (max-width: 768px) {
    .ornament-left, .ornament-right {
        font-size: 1.8rem;
    }

    .ornament-left {
        margin-right: 1rem;
    }

    .ornament-right {
        margin-left: 1rem;
    }
}

@media (max-width: 480px) {
    .ornament-left, .ornament-right {
        font-size: 1.5rem;
    }

    .ornament-left {
        margin-right: 1rem;
    }

    .ornament-right {
        margin-left: 1rem;
    }
}

.ornament-right {
    animation-delay: 1.5s;
}

.golden-divider {
    width: 27rem !important;
    height: 4px;
    background: var(--gradient-gold);
    margin: 0;
    position: relative;
    border-radius: 2px;
    box-shadow: var(--shadow-gold);
}

@media (max-width: 768px) {
    .golden-divider {
        width: 24rem !important;
        height: 3px;
    }
}

@media (max-width: 480px) {
    .golden-divider {
        width: 19rem !important;
        height: 2px;
    }
}

.pyramid-decoration {
    position: absolute;
    opacity: 0.15;
}

.pyramid-left {
    left: 5%;
    top: 15%;
    width: 0;
    height: 0;
    border-left: 80px solid transparent;
    border-right: 80px solid transparent;
    border-bottom: 140px solid var(--gold);
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.2));
}

.pyramid-right {
    right: 5%;
    bottom: 15%;
    width: 0;
    height: 0;
    border-left: 100px solid transparent;
    border-right: 100px solid transparent;
    border-bottom: 170px solid var(--gold);
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.2));
}

@keyframes pyramidFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

.pyramid-glow {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 60px;
    background: linear-gradient(to top, var(--gold), transparent);
    opacity: 0.6;
}

@keyframes beamGlow {
    0%, 100% { opacity: 0.3; transform: translateX(-50%) scaleY(1); }
    50% { opacity: 1; transform: translateX(-50%) scaleY(1.5); }
}

/* Sections Enhanced */
section {
    padding: 6rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--gold);
    margin-bottom: 3rem;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    position: relative;
}

.about-us .section-title {
    color: var(--luxurious-white);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--gradient-gold);
    border-radius: 1px;
}

.section-subtitle {
    font-size: 1.3rem;
    color: var(--desert-beige);
    font-style: italic;
    letter-spacing: 1px;
}

.papyrus-divider {
    margin: 2rem auto;
    font-size: 2rem;
    color: var(--gold);
    text-shadow: var(--shadow-gold);
}

.golden-divider {
    width: 200px;
    height: 4px;
    background: var(--gradient-gold);
    margin: 2rem auto;
    position: relative;
    border-radius: 2px;
    box-shadow: var(--shadow-gold);
}

.golden-divider.large {
    width: 300px;
    height: 6px;
}

.golden-divider::before,
.golden-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.8);
}

.golden-divider::before {
    left: -20px;
}

.golden-divider::after {
    right: -20px;
}

/* Dynasty Section */
.dynasty {
    background: linear-gradient(135deg, var(--black) 0%, #1a1a1a 100%);
    padding: 6rem 0;
}

@media (max-width: 768px) {
    .dynasty {
        padding: 4rem 0;
    }
}

.dynasty-content {
    display: grid;
    grid-template-columns: 1fr 300px 350px;
    gap: 3rem;
    align-items: stretch;
    margin-top: 4rem;
}

@media (max-width: 1200px) {
    .dynasty-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        margin-top: 2rem;
    }

    .dynasty-image {
        order: 1;
    }

    .dynasty-text {
        order: 2;
    }

    .dynasty-stats {
        order: 3;
    }
}

@media (max-width: 768px) {
    .dynasty-content {
        gap: 2rem;
        margin-top: 2rem;
    }

    .dynasty-image {
        order: 1;
    }

    .dynasty-text {
        order: 2;
    }

    .dynasty-stats {
        order: 3;
    }
}

.dynasty-text {
    padding-right: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.manifesto {
    font-size: clamp(1rem, 2.5vw, 2.2rem);
    font-weight: 300;
    color: var(--desert-beige);
    line-height: 1.8;
    letter-spacing: 1px;
    font-family: 'Playfair Display', serif;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.manifesto span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: clamp(0.9rem, 2.2vw, 2.2rem);
}

@media (max-width: 768px) {
    .manifesto {
        font-size: clamp(1.1rem, 4vw, 1.8rem);
        gap: 1rem;
        text-align: center;
    }

    .manifesto span {
        white-space: normal;
        overflow: visible;
        text-overflow: unset;
        font-size: clamp(1.1rem, 4vw, 1.8rem);
    }
}

@media (max-width: 480px) {
    .manifesto {
        font-size: clamp(1rem, 4.5vw, 1.5rem);
        gap: 0.8rem;
    }

    .manifesto span {
        font-size: clamp(1rem, 4.5vw, 1.5rem);
    }
}

.manifesto strong {
    color: var(--gold);
    font-weight: 700;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
}

.dynasty-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-self: start;
    height: 100%;
}

@media (max-width: 1200px) {
    .dynasty-stats {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
        justify-self: center;
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .dynasty-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 350px;
        width: 100%;
    }

    .stat-item {
        width: 100%;
        max-width: none;
        min-width: auto;
    }
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(0, 0, 0, 0.8) 100%);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat-number {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--gold);
    text-shadow: var(--shadow-gold);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--desert-beige);
    font-size: 1rem;
    letter-spacing: 1px;
    line-height: 1.3;
}

.dynasty-image {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dynasty-queen-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 
        0 20px 60px rgba(212, 175, 55, 0.3),
        0 0 80px rgba(212, 175, 55, 0.2);
    border: 3px solid rgba(212, 175, 55, 0.4);
    transition: all 0.4s ease;
    filter: sepia(10%) contrast(110%) brightness(105%);
}

.dynasty-queen-image:hover {
    transform: scale(1.05);
    box-shadow: 
        0 30px 80px rgba(212, 175, 55, 0.4),
        0 0 100px rgba(212, 175, 55, 0.3);
    border-color: var(--gold);
}

/* Enhanced Service Cards */
.the-system {
    background: var(--deep-black);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

/* Desktop layout for services */
@media (min-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }
}

@media (min-width: 769px) and (max-width: 1199px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

/* Mobile layout for services */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }
}

.service-card {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(0, 0, 0, 0.9) 100%);
    padding: 3rem;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    position: relative;
    overflow: hidden;
    contain: layout style;
    will-change: transform;
}

.service-card.premium {
    border-color: var(--gold);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
}

.card-ornament {
    position: absolute;
    font-size: 1.5rem;
    color: var(--gold);
    opacity: 0.3;
}

.card-ornament.top {
    top: 15px;
    right: 15px;
}

.card-ornament.bottom {
    bottom: 15px;
    left: 15px;
}

.service-card::before {
    content: '';
    position: absolute,
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.15), transparent);
    transition: left 0.8s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--rich-gold);
    box-shadow: 0 25px 50px rgba(212, 175, 55, 0.3);
}

.service-icon {
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    display: block;
    text-shadow: var(--shadow-gold);
    animation: iconPulse 3s ease-in-out infinite alternate;
}

@keyframes iconPulse {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.service-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.service-card p {
    color: var(--desert-beige);
    line-height: 1.7;
    font-size: 1.1rem;
}

/* Enhanced Comparison */
.comparison {
    background: linear-gradient(135deg, var(--black) 0%, #1a1a1a 100%);
    padding: 6rem 0;
}

@media (max-width: 768px) {
    .comparison {
        padding: 4rem 0;
    }
}

/* Desktop layout - default */
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 120px 1fr;
    gap: 3rem;
    align-items: stretch;
    margin-top: 4rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.comparison-side {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 500px;
}

.vs-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
}

/* Ensure desktop layout stays in place */
@media (min-width: 769px) {
    .comparison-grid {
        display: grid !important;
        grid-template-columns: 1fr 120px 1fr !important;
        gap: 3rem;
        align-items: stretch;
    }

    .comparison-side {
        display: flex;
        flex-direction: column;
    }
}

/* Mobile layout */
@media (max-width: 768px) {
    .comparison-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem;
        margin-top: 2rem;
    }

    .comparison-side.peasant {
        order: 1;
    }

    .vs-divider {
        order: 2;
        padding: 1rem 0;
        border: none;
        background: none;
    }

    .comparison-side.pharaoh {
        order: 3;
    }

    .comparison-side {
        transform: none !important;
        min-height: 300px;
    }
}

@media (max-width: 480px) {
    .comparison-grid {
        gap: 1rem;
    }

    .vs-divider {
        padding: 0.3rem 0;
    }
}

.comparison-side {
    padding: 3rem;
    border-radius: 15px;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .comparison-side {
        padding: 2rem;
        min-height: 300px;
    }
}

@media (max-width: 480px) {
    .comparison-side {
        padding: 1.5rem;
        min-height: 250px;
    }
}

.comparison-side.peasant {
    background: linear-gradient(135deg, rgba(100, 100, 100, 0.2) 0%, rgba(50, 50, 50, 0.3) 100%);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.comparison-side.pharaoh {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 2px solid var(--gold);
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.2);
}

.comparison-header {
    text-align: center;
    margin-bottom: 2rem;
}

.comparison-header h3 {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* Desktop enhancements */
@media (min-width: 769px) {
    .comparison-header {
        margin-bottom: 2rem;
    }

    .comparison-header h3 {
        font-size: 2rem;
    }

    .comparison-content {
        flex-grow: 1;
    }
}

@media (max-width: 768px) {
    .comparison-header h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .comparison-header h3 {
        font-size: 1.4rem;
    }
}

.comparison-side.peasant h3 {
    color: var(--luxurious-white);
}

.comparison-side.pharaoh h3 {
    color: var(--gold);
    text-shadow: var(--shadow-gold);
}

.comparison-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

@media (min-width: 769px) {
    .comparison-icon {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .comparison-icon {
        font-size: 2.5rem;
    }
}

.comparison-content ul {
    list-style: none;
    padding: 0;
}

.comparison-content li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.2rem;
    position: relative;
    padding-left: 2rem;
    transition: all 0.3s ease;
}

/* Desktop list enhancements */
@media (min-width: 769px) {
    .comparison-content li {
        padding: 1.2rem 0;
        font-size: 1.2rem;
        padding-left: 2.5rem;
    }
}

@media (max-width: 768px) {
    .comparison-content li {
        font-size: 1rem;
        padding: 0.8rem 0;
        padding-left: 1.8rem;
    }
}

@media (max-width: 480px) {
    .comparison-content li {
        font-size: 0.9rem;
        padding: 0.6rem 0;
        padding-left: 1.5rem;
    }
}

.comparison-content li::before {
    content: '𓋹';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 1.5rem;
}

.comparison-side.pharaoh .comparison-content li {
    border-bottom-color: rgba(212, 175, 55, 0.3);
    color: var(--desert-beige);
}

.vs-divider {
    text-align: center;
    padding: 1.5rem 0;
}

/* Desktop VS divider */
@media (min-width: 769px) {
    .vs-divider {
        padding: 2rem 1rem;
    }
}

.vs-symbol {
    font-size: 4rem;
    color: var(--gold);
    text-shadow: var(--shadow-gold);
}

@media (min-width: 769px) {
    .vs-symbol {
        font-size: 4.5rem;
    }
}

@media (max-width: 768px) {
    .vs-symbol {
        font-size: 3rem;
    }
}

.vs-text {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: var(--gold);
    margin-top: 1rem;
    letter-spacing: 2px;
}

@media (min-width: 769px) {
    .vs-text {
        font-size: 1.6rem;
        letter-spacing: 2px;
    }
}

@media (max-width: 768px) {
    .vs-text {
        font-size: 1.2rem;
        letter-spacing: 1px;
    }
}

/* Testimonials */
.testimonials {
    background: var(--deep-black);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(0, 0, 0, 0.9) 100%);
    padding: 3rem;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.testimonial-ornament {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 2rem;
    text-shadow: var(--shadow-gold);
}

.testimonial-card p {
    font-size: 1.2rem;
    color: var(--desert-beige);
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.author-name {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    color: var(--gold);
    font-weight: 600;
}

.author-title {
    color: var(--sand);
    font-size: 1rem;
    margin-top: 0.5rem;
}

/* OnlyFans Challenges Section */
.onlyfans-challenges {
    background: 
        radial-gradient(circle at 20% 30%, rgba(220, 20, 60, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.1) 0%, transparent 60%),
        linear-gradient(135deg, var(--deep-black) 0%, #0a0a0a 50%, var(--black) 100%);
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

.onlyfans-challenges::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="150" height="150" viewBox="0 0 150 150"><text x="20" y="40" font-size="18" fill="%23DC143C" opacity="0.03">⚔️</text><text x="80" y="90" font-size="16" fill="%23D4AF37" opacity="0.02">👑</text><text x="40" y="120" font-size="20" fill="%23DC143C" opacity="0.03">📢</text></svg>');
    animation: float 30s linear infinite;
    opacity: 0.3;
}

.challenges-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2rem;
    align-items: stretch;
    margin-top: 2rem;
}

.challenge-image-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 100%;
    min-height: 550px;
    box-shadow: 
        0 20px 60px rgba(220, 20, 60, 0.25),
        0 0 80px rgba(212, 175, 55, 0.15);
    border: 2px solid rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.challenge-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
    filter: contrast(105%) brightness(110%) saturate(115%);
}

.challenge-image-container:hover .challenge-image {
    transform: scale(1.03);
    filter: contrast(115%) brightness(115%) saturate(125%);
}

.image-glow-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(220, 20, 60, 0.15) 0%, 
        transparent 35%, 
        rgba(212, 175, 55, 0.1) 65%, 
        transparent 100%);
    mix-blend-mode: overlay;
    transition: all 0.3s ease;
}

.challenge-image-container:hover .image-glow-overlay {
    background: linear-gradient(135deg, 
        rgba(220, 20, 60, 0.2) 0%, 
        transparent 30%, 
        rgba(212, 175, 55, 0.15) 70%, 
        transparent 100%);
}

.floating-stats {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-bubble {
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.85) 0%, rgba(139, 0, 0, 0.85) 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    animation: statFloat 3s ease-in-out infinite alternate;
    white-space: nowrap;
}

.stat-bubble:nth-child(2) {
    animation-delay: 1s;
}

.stat-bubble:nth-child(3) {
    animation-delay: 2s;
}

@keyframes statFloat {
    0% { transform: translateY(0px) scale(1); opacity: 0.9; }
    100% { transform: translateY(-3px) scale(1.01); opacity: 1; }
}

.challenges-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
    height: 100%;
}

.challenge-card {
    background: linear-gradient(145deg, 
        rgba(220, 20, 60, 0.08) 0%, 
        rgba(0, 0, 0, 0.95) 30%, 
        rgba(0, 0, 0, 0.98) 100%);
    border: 2px solid rgba(220, 20, 60, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    overflow: hidden;
    backdrop-filter: blur(5px);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 180px;
}

.challenge-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        rgba(220, 20, 60, 0.6), 
        transparent, 
        rgba(180, 20, 60, 0.6), 
        transparent, 
        rgba(220, 20, 60, 0.6));
    border-radius: 15px;
    z-index: -1;
    animation: challengeBorderGlow 3s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

@keyframes challengeBorderGlow {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 200%; }
}

.challenge-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(220, 20, 60, 0.2), 
        transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.challenge-card:hover::after {
    left: 100%;
}

.challenge-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(220, 20, 60, 0.8);
    box-shadow: 
        0 20px 45px rgba(220, 20, 60, 0.4),
        0 0 60px rgba(220, 20, 60, 0.2),
        inset 0 1px 0 rgba(220, 20, 60, 0.1);
}

.challenge-card.solution {
    border-color: var(--gold);
    background: linear-gradient(145deg, 
        rgba(212, 175, 55, 0.12) 0%, 
        rgba(0, 0, 0, 0.95) 30%, 
        rgba(0, 0, 0, 0.98) 100%);
}

.challenge-card.solution::before {
    background: linear-gradient(45deg, 
        var(--gold), 
        transparent, 
        var(--rich-gold), 
        transparent, 
        var(--gold));
}

.challenge-card.solution:hover {
    border-color: var(--rich-gold);
    box-shadow: 
        0 20px 45px rgba(212, 175, 55, 0.3),
        0 0 60px rgba(212, 175, 55, 0.15);
}

.challenge-icon {
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
    display: block;
    filter: drop-shadow(0 0 15px rgba(220, 20, 60, 0.5));
    animation: challengeIconPulse 3s ease-in-out infinite alternate;
    position: relative;
    z-index: 2;
}

.challenge-card.solution .challenge-icon {
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.7));
}

@keyframes challengeIconPulse {
    0% { transform: scale(1) rotate(0deg); }
    100% { transform: scale(1.1) rotate(2deg); }
}

.challenge-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #DC143C;
    margin-bottom: 0.8rem;
    letter-spacing: 0.6px;
    text-shadow: 0 0 12px rgba(220, 20, 60, 0.4);
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.challenge-card.solution h3 {
    color: var(--gold);
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

.challenge-card p {
    color: var(--desert-beige);
    line-height: 1.4;
    font-size: 0.9rem;
    letter-spacing: 0.2px;
    position: relative;
    z-index: 2;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.challenge-ornament {
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 1.2rem;
    color: rgba(220, 20, 60, 0.3);
    animation: ornamentSpin 8s linear infinite;
}

.challenge-card.solution .challenge-ornament {
    color: rgba(212, 175, 55, 0.4);
}

@keyframes ornamentSpin {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
    100% { transform: rotate(360deg) scale(1); }
}

/* Enhanced mobile responsiveness for challenges section */
@media (max-width: 1200px) {
    .challenges-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .challenge-image-container {
        max-width: 500px;
        height: 350px;
        margin: 0 auto;
        min-height: 350px;
    }

    .challenges-grid {
        margin-top: 1rem;
    }
}

@media (max-width: 768px) {
    .challenges-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .challenge-card {
        padding: 1.8rem;
        min-height: 200px;
    }

    .challenge-image-container {
        height: 320px;
        max-width: 90%;
        width: 90%;
        margin: 0 auto;
        border-radius: 15px;
    }

    .challenge-image {
        border-radius: 15px;
        object-fit: cover;
        width: 100%;
        height: 100%;
    }

    .floating-stats {
        position: absolute;
        top: 15px;
        right: 15px;
        left: 15px;
        flex-direction: row;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 8px;
        margin-top: 0.5rem;
    }

    .stat-bubble {
        font-size: 0.65rem;
        padding: 5px 8px;
        flex: 1;
        min-width: 75px;
        text-align: center;
    }

    .onlyfans-challenges {
        padding: 4rem 0;
    }

    .challenges-layout {
        gap: 2.5rem;
        margin-top: 2rem;
    }
}

@media (max-width: 480px) {
    .challenge-icon {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }

    .challenge-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }

    .challenge-card p {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .challenge-card {
        padding: 1.5rem;
        min-height: 180px;
    }

    .challenge-image-container {
        height: 280px;
        max-width: 95%;
        width: 95%;
        margin: 0 auto;
        border-radius: 12px;
    }

    .challenge-image {
        border-radius: 12px;
        object-fit: cover;
        width: 100%;
        height: 100%;
    }

    .floating-stats {
        top: 10px;
        right: 10px;
        left: 10px;
        gap: 5px;
    }

    .stat-bubble {
        font-size: 0.55rem;
        padding: 4px 6px;
        min-width: 65px;
    }
}

/* Professional Process Section */
.professional-process {
    background: 
        radial-gradient(circle at 30% 20%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(75, 0, 130, 0.02) 0%, transparent 60%),
        linear-gradient(135deg, #000000 0%, #000000 50%, #000000 100%);
    position: relative;
    overflow: hidden;
}

.professional-process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><text x="10" y="30" font-size="20" fill="%23D4AF37" opacity="0.03">𓋹</text><text x="60" y="70" font-size="18" fill="%23D4AF37" opacity="0.02">𓂀</text></svg>');
    animation: float 25s linear infinite;
    opacity: 0.4;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 4rem;
    margin-top: 5rem;
    position: relative;
    z-index: 2;
}

.process-card {
    background: linear-gradient(145deg, 
        rgba(212, 175, 55, 0.08) 0%, 
        rgba(0, 0, 0, 0.95) 30%, 
        rgba(0, 0, 0, 0.98) 100%);
    border: 3px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
    backdrop-filter: blur(10px);
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(212, 175, 55, 0.2);
}

.process-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        var(--gold), 
        transparent, 
        var(--gold), 
        transparent, 
        var(--gold));
    border-radius: 20px;
    z-index: -1;
    animation: borderGlow 4s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.process-card:hover::before {
    opacity: 0.6;
}

@keyframes borderGlow {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 200%; }
}

.card-glow-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(212, 175, 55, 0.2), 
        transparent);
    transition: left 0.8s ease;
    z-index: 1;
}

.process-card:hover .card-glow-effect {
    left: 100%;
}

.process-card:hover {
    transform: translateY(-20px) scale(1.03);
    border-color: var(--gold);
    box-shadow: 
        0 30px 80px rgba(212, 175, 55, 0.3),
        0 0 100px rgba(212, 175, 55, 0.2),
        inset 0 1px 0 rgba(212, 175, 55, 0.4);
}

.process-image-container {
    position: relative;
    height: 280px;
    overflow: hidden;
    border-bottom: 2px solid rgba(212, 175, 55, 0.2);
}

.process-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
    filter: sepia(20%) contrast(110%) brightness(110%);
}

.process-card:hover .process-image {
    transform: scale(1.1);
    filter: sepia(30%) contrast(120%) brightness(120%) saturate(110%);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.7) 0%, 
        rgba(212, 175, 55, 0.1) 50%, 
        rgba(0, 0, 0, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition: all 0.4s ease;
}

.process-card:hover .image-overlay {
    opacity: 0.6;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.5) 0%, 
        rgba(212, 175, 55, 0.2) 50%, 
        rgba(0, 0, 0, 0.6) 100%);
}

.process-number {
    font-family: 'Cinzel', serif;
    font-size: 6rem;
    font-weight: 900;
    color: var(--gold);
    text-shadow: 
        0 0 30px rgba(212, 175, 55, 0.8),
        0 0 60px rgba(212, 175, 55, 0.4),
        2px 2px 4px rgba(0, 0, 0, 0.8);
    animation: numberPulse 3s ease-in-out infinite alternate;
    transition: all 0.4s ease;
}

.process-card:hover .process-number {
    transform: scale(1.2);
    text-shadow: 
        0 0 50px rgba(212, 175, 55, 1),
        0 0 100px rgba(212, 175, 55, 0.6),
        3px 3px 6px rgba(0, 0, 0, 0.9);
}

@keyframes numberPulse {
    0% { opacity: 0.8; }
    100% { opacity: 1; }
}

.process-content {
    padding: 3rem;
    position: relative;
    z-index: 2;
}

.process-title {
    font-family: 'Cinzel', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 1.5rem;
    text-align: center;
    letter-spacing: 1px;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    position: relative;
}

.golden-separator {
    width: 80px;
    height: 3px;
    background: var(--gradient-gold);
    margin: 0 auto 2rem auto;
    border-radius: 2px;
    position: relative;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
}

.golden-separator::before,
.golden-separator::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.8);
}

.golden-separator::before {
    left: -15px;
}

.golden-separator::after {
    right: -15px;
}

.process-description {
    color: var(--desert-beige);
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: justify;
    letter-spacing: 0.5px;
    margin-bottom: 2rem;
    font-weight: 400;
}

.process-ornament {
    text-align: center;
    font-size: 2.5rem;
    color: var(--gold);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
    animation: ornamentFloat 4s ease-in-out infinite alternate;
}

@keyframes ornamentFloat {
    0% { transform: translateY(0px) scale(1); }
    100% { transform: translateY(-5px) scale(1.05); }
}

/* Special hover effects for each card type */
.process-card.setup:hover {
    box-shadow: 
        0 30px 80px rgba(255, 215, 0, 0.25),
        0 0 100px rgba(255, 215, 0, 0.15);
}

.process-card.management:hover {
    box-shadow: 
        0 30px 80px rgba(212, 175, 55, 0.3),
        0 0 100px rgba(212, 175, 55, 0.2);
}

.process-card.marketing:hover {
    box-shadow: 
        0 30px 80px rgba(184, 134, 11, 0.25),
        0 0 100px rgba(184, 134, 11, 0.15);
}

/* Enhanced mobile responsiveness */
@media (max-width: 768px) {
    .process-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        margin-top: 3rem;
    }

    .process-card {
        margin: 0 10px;
    }

    .process-content {
        padding: 2rem;
    }

    .process-title {
        font-size: 1.8rem;
    }

    .process-number {
        font-size: 4rem;
    }

    .process-image-container {
        height: 220px;
    }
}

@media (max-width: 480px) {
    .process-content {
        padding: 1.5rem;
    }

    .process-description {
        text-align: left;
        font-size: 1rem;
    }
}



/* About Us Section */
.about-us {
    background: 
        radial-gradient(circle at 25% 25%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(75, 0, 130, 0.08) 0%, transparent 60%),
        linear-gradient(135deg, var(--deep-black) 0%, #0a0a0a 50%, var(--black) 100%);
    position: relative;
    overflow: hidden;
    padding: 8rem 0;
}

.about-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="150" height="150" viewBox="0 0 150 150"><text x="25" y="50" font-size="20" fill="%23D4AF37" opacity="0.02">𓋞</text><text x="90" y="110" font-size="18" fill="%23D4AF37" opacity="0.03">𓂀</text></svg>');
    animation: float 35s linear infinite;
    opacity: 0.4;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: start;
    margin-top: 4rem;
}

.about-text {
    position: relative;
    z-index: 2;
}

.about-highlight {
    background: linear-gradient(145deg, 
        rgba(212, 175, 55, 0.1) 0%, 
        rgba(0, 0, 0, 0.9) 100%);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.about-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(212, 175, 55, 0.15), 
        transparent);
    transition: left 0.8s ease;
}

.about-highlight:hover::before {
    left: 100%;
}

.about-highlight h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.about-highlight p {
    color: var(--desert-beige);
    font-size: 1.2rem;
    line-height: 1.7;
    letter-spacing: 0.5px;
}

.about-info {
    space-y: 2rem;
}

.about-info p {
    color: var(--sand);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    letter-spacing: 0.5px;
    position: relative;
    padding-left: 2rem;
}

.about-info p::before {
    content: '𓋹';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 1.5rem;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
}

.progress-stages {
    background: linear-gradient(145deg, 
        rgba(0, 0, 0, 0.8) 0%, 
        rgba(212, 175, 55, 0.05) 50%, 
        rgba(0, 0, 0, 0.9) 100%);
    border: 3px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(212, 175, 55, 0.2);
}

.stages-title {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    color: var(--gold);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
    text-shadow: 0 0 25px rgba(212, 175, 55, 0.6);
}

.stages-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.stage-item {
    background: linear-gradient(145deg, 
        rgba(212, 175, 55, 0.08) 0%, 
        rgba(0, 0, 0, 0.95) 100%);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    position: relative;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
    overflow: hidden;
}

.stage-item::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        var(--gold), 
        transparent, 
        var(--gold));
    border-radius: 15px;
    z-index: -1;
    animation: borderRotate 3s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stage-item:hover::before,
.stage-item.active::before {
    opacity: 0.6;
}

@keyframes borderRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.stage-item:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: var(--gold);
    box-shadow: 
        0 25px 50px rgba(212, 175, 55, 0.3),
        0 0 80px rgba(212, 175, 55, 0.2);
}

.stage-item.active {
    border-color: var(--rich-gold);
    background: linear-gradient(145deg, 
        rgba(212, 175, 55, 0.15) 0%, 
        rgba(0, 0, 0, 0.9) 100%);
    transform: scale(1.05);
    box-shadow: 
        0 20px 40px rgba(212, 175, 55, 0.4),
        0 0 100px rgba(212, 175, 55, 0.3);
}

.progress-bar {
    position: relative;
    width: 100%;
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, 
        #00BFFF 0%, 
        #0080FF 25%, 
        #0040FF  50%, 
        #0020FF 75%, 
        #0010FF 100%);
    border-radius: 6px;
    width: 0%;
    transition: width 2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 
        0 0 20px rgba(0, 191, 255, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    animation: progressGlow 3s ease-in-out infinite alternate;
}

@keyframes progressGlow {
    0% { box-shadow: 0 0 20px rgba(0, 191, 255, 0.5); }
    100% { box-shadow: 0 0 30px rgba(0, 191, 255, 0.8); }
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.3), 
        transparent);
    animation: progressShimmer 2s ease-in-out infinite;
}

@keyframes progressShimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.progress-percentage {
    position: absolute;
    top: -30px;
    right: 0;
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #00BFFF;
    text-shadow: 0 0 15px rgba(0, 191, 255, 0.8);
}

.stage-icon {
    margin-bottom: 1rem;
}

.icon-symbol {
    font-size: 3rem;
    color: var(--gold);
    text-shadow: 0 0 25px rgba(212, 175, 55, 0.8);
    animation: iconFloat 4s ease-in-out infinite alternate;
    display: inline-block;
    transition: all 0.3s ease;
}

.stage-item:hover .icon-symbol {
    transform: scale(1.2) rotate(10deg);
    text-shadow: 0 0 35px rgba(212, 175, 55, 1);
}

@keyframes iconFloat {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-5px); }
}

.stage-info h4 {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.stage-info p {
    color: var(--desert-beige);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.stage-description {
    background: linear-gradient(135deg, 
        rgba(212, 175, 55, 0.1) 0%, 
        rgba(0, 0, 0, 0.8) 100%);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.description-content {
    transition: all 0.5s ease;
}

.description-content h4 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
    font-weight: 700;
}

.description-content p {
    color: var(--desert-beige);
    font-size: 1.1rem;
    line-height: 1.6;
    letter-spacing: 0.5px;
}

/* Responsive design for About Us */
@media (max-width: 1200px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

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

@media (max-width: 768px) {
    .about-us {
        padding: 6rem 0;
    }

    .stages-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .progress-stages {
        padding: 2rem;
    }

    .about-highlight {
        padding: 2rem;
    }

    .about-info p {
        padding-left: 1.5rem;
    }
}

@media (max-width: 480px) {
    .stages-title {
        font-size: 1.6rem;
    }

    .stage-item {
        padding: 1.5rem;
    }

    .icon-symbol {
        font-size: 2.5rem;
    }

    .about-highlight h3 {
        font-size: 1.5rem;
    }
}



/* FAQ Section Styling */
.faq-section {
    background: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(75, 0, 130, 0.02) 0%, transparent 60%),
        linear-gradient(135deg, #000000 0%, #000000 50%, #000000 100%);
    position: relative;
    overflow: hidden;
    padding: 8rem 0;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="120" height="120" viewBox="0 0 120 120"><text x="20" y="40" font-size="16" fill="%23D4AF37" opacity="0.02">𓁹</text><text x="70" y="80" font-size="18" fill="%23D4AF37" opacity="0.03">𓂀</text><text x="30" y="100" font-size="14" fill="%23D4AF37" opacity="0.02">𓋹</text></svg>');
    animation: float 40s linear infinite;
    opacity: 0.3;
}

.faq-container {
    max-width: 1200px;
    margin: 4rem auto 0;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

/* Mobile layout for FAQ */
@media (max-width: 768px) {
    .faq-container {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
        max-width: 900px;
    }
}

.faq-ornament-left,
.faq-ornament-right {
    position: absolute;
    font-size: 8rem;
    color: var(--gold);
    opacity: 0.05;
    z-index: 1;
    animation: ornamentFloat 6s ease-in-out infinite alternate;
}

.faq-ornament-left {
    top: 10%;
    left: -100px;
    animation-delay: 0s;
}

.faq-ornament-right {
    bottom: 10%;
    right: -100px;
    animation-delay: 3s;
}

.faq-item {
    background: linear-gradient(145deg, 
        rgba(212, 175, 55, 0.05) 0%, 
        rgba(0, 0, 0, 0.95) 30%, 
        rgba(0, 0, 0, 0.98) 100%);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    margin-bottom: 2rem;
    overflow: hidden;
    position: relative;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    backdrop-filter: blur(5px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(212, 175, 55, 0.1), 
        transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.faq-item:hover::before {
    left: 100%;
}

.faq-item:hover {
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 
        0 15px 40px rgba(212, 175, 55, 0.15),
        0 0 50px rgba(212, 175, 55, 0.08);
    transform: translateY(-5px);
}

.faq-item.active {
    border-color: var(--gold);
    box-shadow: 
        0 20px 50px rgba(212, 175, 55, 0.2),
        0 0 80px rgba(212, 175, 55, 0.1);
    background: linear-gradient(145deg, 
        rgba(212, 175, 55, 0.08) 0%, 
        rgba(0, 0, 0, 0.95) 30%, 
        rgba(0, 0, 0, 0.98) 100%);
}

.faq-question {
    display: flex;
    align-items: center;
    padding: 2rem 2.5rem;
    cursor: pointer;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(90deg, 
        rgba(212, 175, 55, 0.05) 0%, 
        transparent 100%);
}

.question-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-right: 2rem;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
    animation: questionIconPulse 4s ease-in-out infinite alternate;
    transition: all 0.3s ease;
}

.faq-item:hover .question-icon {
    transform: scale(1.1) rotate(10deg);
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.8);
}

@keyframes questionIconPulse {
    0% { opacity: 0.8; }
    100% { opacity: 1; }
}

.faq-question h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--gold);
    flex: 1;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.faq-item:hover .faq-question h3 {
    color: var(--rich-gold);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.expand-icon {
    font-size: 2rem;
    color: var(--gold);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
    margin-left: 1rem;
}

.faq-item.active .expand-icon {
    transform: rotate(180deg) scale(1.2);
    color: var(--rich-gold);
    text-shadow: 0 0 25px rgba(212, 175, 55, 0.8);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, 
        rgba(212, 175, 55, 0.02) 0%, 
        rgba(0, 0, 0, 0.8) 100%);
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.answer-content {
    padding: 2.5rem;
    position: relative;
    animation: fadeInAnswer 0.6s ease-out;
}

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

.answer-content p {
    color: var(--desert-beige);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
    font-weight: 400;
}

.answer-content p:last-child {
    margin-bottom: 0;
}

.royal-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.royal-list li {
    color: var(--sand);
    padding: 0.8rem 0;
    position: relative;
    padding-left: 2.5rem;
    font-size: 1.05rem;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.royal-list li::before {
    content: '𓋹';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 1.3rem;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
    animation: listIconGlow 3s ease-in-out infinite alternate;
}

.royal-list li:hover {
    color: var(--desert-beige);
    transform: translateX(10px);
}

.royal-list li:hover::before {
    transform: scale(1.2);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.8);
}

@keyframes listIconGlow {
    0% { opacity: 0.7; }
    100% { opacity: 1; }
}

/* Special effects for FAQ items */
.faq-item:nth-child(even) {
    animation: slideInLeft 0.8s ease-out;
}

.faq-item:nth-child(odd) {
    animation: slideInRight 0.8s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Mobile responsiveness for FAQ */
@media (max-width: 768px) {
    .faq-section {
        padding: 6rem 0;
    }

    .faq-container {
        margin-top: 3rem;
    }

    .faq-ornament-left,
    .faq-ornament-right {
        display: none;
    }

    .faq-question {
        padding: 1.5rem;
    }

    .question-icon {
        font-size: 2rem;
        margin-right: 1rem;
    }

    .faq-question h3 {
        font-size: 1.2rem;
    }

    .answer-content {
        padding: 1.5rem;
    }

    .royal-list li {
        padding-left: 2rem;
    }
}

@media (max-width: 480px) {
    .faq-question {
        padding: 1.2rem;
    }

    .question-icon {
        font-size: 1.8rem;
        margin-right: 0.8rem;
    }

    .faq-question h3 {
        font-size: 1.1rem;
    }

    .expand-icon {
        font-size: 1.6rem;
    }

    .answer-content {
        padding: 1.2rem;
    }

    .answer-content p {
        font-size: 1rem;
    }
}

/* Hero Buttons Layout */
.hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
    width: 100%;
    gap: 0;
}

@media (min-width: 1024px) {
    .hero-buttons {
        margin-top: 4rem;
    }
}

@media (max-width: 768px) {
    .hero-buttons {
        justify-content: center;
        align-items: center;
        margin-top: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        margin-top: 2rem;
    }
}

/* Model Recruitment Section */
.model-recruitment {
    background: 
        radial-gradient(circle at 30% 30%, rgba(212, 175, 55, 0.1) 0%, transparent 60%),
        radial-gradient(circle at 70% 70%, rgba(75, 0, 130, 0.08) 0%, transparent 50%),
        linear-gradient(135deg, var(--deep-black) 0%, #0a0a0a 50%, var(--black) 100%);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.model-recruitment::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><text x="20" y="40" font-size="20" fill="%23D4AF37" opacity="0.03">👑</text><text x="60" y="70" font-size="18" fill="%23D4AF37" opacity="0.02">💎</text></svg>');
    animation: float 30s linear infinite;
    opacity: 0.3;
}

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

.recruitment-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--gold);
    margin-bottom: 1rem;
    text-shadow: 
        0 0 30px rgba(212, 175, 55, 0.8),
        0 0 60px rgba(212, 175, 55, 0.4);
    letter-spacing: 2px;
}

.recruitment-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--desert-beige);
    margin-bottom: 4rem;
    font-style: italic;
    letter-spacing: 1px;
}

.recruitment-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 1200px) {
    .recruitment-buttons {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .recruitment-buttons {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 400px;
    }

    .model-recruitment {
        padding: 6rem 0;
    }
}

.recruitment-btn {
    display: flex;
    align-items: center;
    padding: 2.5rem 2rem;
    background: linear-gradient(145deg, 
        rgba(212, 175, 55, 0.1) 0%, 
        rgba(0, 0, 0, 0.95) 30%, 
        rgba(0, 0, 0, 0.98) 100%);
    border: 3px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    text-decoration: none;
    color: var(--luxurious-white);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(212, 175, 55, 0.2);
}

.recruitment-btn::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        var(--gold), 
        transparent, 
        var(--gold), 
        transparent, 
        var(--gold));
    border-radius: 20px;
    z-index: -1;
    animation: borderGlow 4s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.recruitment-btn:hover::before {
    opacity: 0.6;
}

.recruitment-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(212, 175, 55, 0.2), 
        transparent);
    transition: left 0.8s ease;
    z-index: 1;
}

.recruitment-btn:hover::after {
    left: 100%;
}

.recruitment-btn:hover {
    transform: translateY(-10px) scale(1.03);
    border-color: var(--gold);
    box-shadow: 
        0 25px 60px rgba(212, 175, 55, 0.3),
        0 0 80px rgba(212, 175, 55, 0.2),
        inset 0 1px 0 rgba(212, 175, 55, 0.4);
}

.recruitment-btn .btn-icon {
    font-size: 3rem;
    margin-right: 1.5rem;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
    animation: iconFloat 3s ease-in-out infinite alternate;
    position: relative;
    z-index: 2;
}

.recruitment-btn:hover .btn-icon {
    transform: scale(1.2) rotate(10deg);
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.8);
}

.recruitment-btn .btn-content {
    flex: 1;
    text-align: left;
    position: relative;
    z-index: 2;
}

.recruitment-btn .btn-content h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.6rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.recruitment-btn .btn-content p {
    color: var(--desert-beige);
    font-size: 1rem;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

.recruitment-btn .btn-arrow {
    font-size: 2rem;
    color: var(--gold);
    margin-left: 1rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.recruitment-btn:hover .btn-arrow {
    transform: translateX(10px) scale(1.2);
    color: var(--rich-gold);
}

@media (max-width: 480px) {
    .recruitment-btn {
        padding: 2rem 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .recruitment-btn .btn-content {
        text-align: center;
    }

    .recruitment-btn .btn-icon {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }

    .recruitment-btn .btn-arrow {
        margin-left: 0;
        transform: rotate(90deg);
    }

    .recruitment-btn:hover .btn-arrow {
        transform: rotate(90deg) translateY(10px) scale(1.2);
    }
}

/* Elite Circle Section */
.elite-circle {
    background: 
        radial-gradient(circle at 40% 40%, rgba(212, 175, 55, 0.1) 0%, transparent 60%),
        radial-gradient(circle at 60% 60%, rgba(75, 0, 130, 0.08) 0%, transparent 50%),
        linear-gradient(135deg, var(--deep-black) 0%, #0a0a0a 50%, var(--black) 100%);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.elite-circle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><text x="20" y="40" font-size="20" fill="%23D4AF37" opacity="0.03">👑</text><text x="60" y="70" font-size="18" fill="%23D4AF37" opacity="0.02">💎</text></svg>');
    animation: float 30s linear infinite;
    opacity: 0.3;
}

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

.elite-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--gold);
    margin-bottom: 1rem;
    text-shadow: 
        0 0 30px rgba(212, 175, 55, 0.8),
        0 0 60px rgba(212, 175, 55, 0.4);
    letter-spacing: 2px;
}

.elite-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--desert-beige);
    margin-bottom: 4rem;
    font-style: italic;
    letter-spacing: 1px;
}

.elite-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 1200px) {
    .elite-buttons {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .elite-buttons {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 400px;
    }

    .elite-circle {
        padding: 6rem 0;
    }
}

.elite-btn {
    display: flex;
    align-items: center;
    padding: 2.5rem 2rem;
    background: linear-gradient(145deg, 
        rgba(212, 175, 55, 0.1) 0%, 
        rgba(0, 0, 0, 0.95) 30%, 
        rgba(0, 0, 0, 0.98) 100%);
    border: 3px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    text-decoration: none;
    color: var(--luxurious-white);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(212, 175, 55, 0.2);
}

.elite-btn::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        var(--gold), 
        transparent, 
        var(--gold), 
        transparent, 
        var(--gold));
    border-radius: 20px;
    z-index: -1;
    animation: borderGlow 4s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.elite-btn:hover::before {
    opacity: 0.6;
}

.elite-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(212, 175, 55, 0.2), 
        transparent);
    transition: left 0.8s ease;
    z-index: 1;
}

.elite-btn:hover::after {
    left: 100%;
}

.elite-btn:hover {
    transform: translateY(-10px) scale(1.03);
    border-color: var(--gold);
    box-shadow: 
        0 25px 60px rgba(212, 175, 55, 0.3),
        0 0 80px rgba(212, 175, 55, 0.2),
        inset 0 1px 0 rgba(212, 175, 55, 0.4);
}

.elite-btn .btn-icon {
    font-size: 3rem;
    margin-right: 1.5rem;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
    animation: iconFloat 3s ease-in-out infinite alternate;
    position: relative;
    z-index: 2;
}

.elite-btn:hover .btn-icon {
    transform: scale(1.2) rotate(10deg);
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.8);
}

.elite-btn .btn-content {
    flex: 1;
    text-align: left;
    position: relative;
    z-index: 2;
}

.elite-btn .btn-content h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.6rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.elite-btn .btn-content p {
    color: var(--desert-beige);
    font-size: 1rem;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

.elite-btn .btn-arrow {
    font-size: 2rem;
    color: var(--gold);
    margin-left: 1rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.elite-btn:hover .btn-arrow {
    transform: translateX(10px) scale(1.2);
    color: var(--rich-gold);
}

@media (max-width: 480px) {
    .elite-btn {
        padding: 2rem 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .elite-btn .btn-content {
        text-align: center;
    }

    .elite-btn .btn-icon {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }

    .elite-btn .btn-arrow {
        margin-left: 0;
        transform: rotate(90deg);
    }

    .elite-btn:hover .btn-arrow {
        transform: rotate(90deg) translateY(10px) scale(1.2);
    }
}

/* Enhanced CTA Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px 40px;
    background: var(--gradient-gold);
    color: var(--black);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    letter-spacing: 1.5px;
    position: relative;
    overflow: hidden;
    border: 3px solid var(--gold);
    text-transform: uppercase;
    font-family: 'Cinzel', serif;
    box-shadow: 
        0 20px 40px rgba(212, 175, 55, 0.4),
        0 0 60px rgba(212, 175, 55, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    margin: 0;
    text-align: center;
    white-space: nowrap;
    line-height: 1.2;
    min-height: 65px;
    width: auto;
    min-width: 300px;
    backdrop-filter: blur(10px);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 
        0 30px 60px rgba(212, 175, 55, 0.6),
        0 0 80px rgba(212, 175, 55, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
    border-color: var(--rich-gold);
}

/* Desktop specific improvements */
@media (min-width: 1024px) {
    .cta-button {
        font-size: 1.3rem;
        padding: 25px 50px;
        min-width: 400px;
        border-radius: 20px;
        letter-spacing: 2px;
        min-height: 75px;
    }
}

@media (min-width: 1440px) {
    .cta-button {
        font-size: 1.5rem;
        padding: 30px 60px;
        min-width: 450px;
        min-height: 85px;
    }
}

@media (max-width: 1023px) {
    .cta-button {
        font-size: 1.1rem;
        padding: 20px 35px;
        min-width: 280px;
        border-radius: 15px;
    }
}

@media (max-width: 768px) {
    .cta-button {
        padding: 18px 30px;
        font-size: 1rem;
        letter-spacing: 1px;
        border-radius: 12px;
        min-width: 250px;
        min-height: 60px;
    }
}

@media (max-width: 480px) {
    .cta-button {
        padding: 16px 25px;
        font-size: 0.9rem;
        letter-spacing: 0.8px;
        border-width: 2px;
        border-radius: 10px;
        min-width: 220px;
        min-height: 55px;
    }
}

.cta-button.primary {
    background: var(--gradient-gold);
    border: 3px solid var(--gold);
    color: var(--black);
    box-shadow: 
        0 25px 50px rgba(212, 175, 55, 0.5),
        0 0 80px rgba(212, 175, 55, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.2);
}

.cta-button.primary:hover {
    transform: translateY(-10px) scale(1.08);
    box-shadow: 
        0 35px 70px rgba(212, 175, 55, 0.7),
        0 0 100px rgba(212, 175, 55, 0.5),
        inset 0 3px 0 rgba(255, 255, 255, 0.3);
}

.cta-button.secondary {
    background: linear-gradient(135deg, 
        rgba(212, 175, 55, 0.15) 0%, 
        rgba(0, 0, 0, 0.8) 100%);
    border: 3px solid rgba(212, 175, 55, 0.6);
    color: var(--gold);
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
    backdrop-filter: blur(15px);
}

.cta-button.secondary:hover {
    background: var(--gradient-gold);
    color: var(--black);
    text-shadow: none;
    transform: translateY(-8px) scale(1.05);
    border-color: var(--rich-gold);
}

.cta-button.final {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Desktop specific for final CTA */
@media (min-width: 1024px) {
    .cta-button.final {
        font-size: 1.6rem;
        padding: 30px 70px;
        min-width: 500px;
        min-height: 90px;
    }
}

/* Final CTA Section */
.final-cta {
    background: 
        radial-gradient(circle at 50% 50%, rgba(75, 0, 130, 0.3) 0%, transparent 70%),
        linear-gradient(135deg, var(--black) 0%, var(--deep-black) 100%);
    text-align: center;
    padding: 8rem 0;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-ornaments {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin: 3rem 0;
}

.cta-ornaments .ornament {
    font-size: 3rem;
    color: var(--gold);
    text-shadow: var(--shadow-gold);
    animation: pulse 3s ease-in-out infinite alternate;
}

.cta-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--gold);
    margin-bottom: 2rem;
    text-shadow: var(--shadow-gold);
}

.cta-text {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 300;
    color: var(--desert-beige);
    margin: 2rem 0;
    letter-spacing: 1px;
    font-style: italic;
}

.cta-subtext {
    font-size: 1.3rem;
    color: var(--sand);
    margin-bottom: 3rem;
    letter-spacing: 1px;
}

.contact-info {
    margin-top: 3rem;
    text-align: center;
}

.contact-email {
    color: var(--gold);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    font-family: 'Cinzel', serif;
    text-align: center;
}

.contact-tagline {
    color: var(--desert-beige);
    font-style: italic;
    font-size: 1.1rem;
    text-align: center;
}

.social-links {
    margin: 2rem 0;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, 
        rgba(212, 175, 55, 0.1) 0%, 
        rgba(0, 0, 0, 0.8) 100%);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    padding: 15px 30px;
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'Cinzel', serif;
    letter-spacing: 1px;
}

.social-link:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.3);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
}

.social-icon {
    font-size: 1.5rem;
}

/* Responsive Design Enhanced */
@media (max-width: 1200px) {
    .dynasty-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .dynasty-text {
        padding-right: 0;
    }

    .dynasty-stats {
        order: 2;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        display: grid;
        gap: 2rem;
        justify-items: center;
    }

    .dynasty-image {
        order: 3;
        min-height: 400px;
    }

    .dynasty-queen-image {
        max-width: 500px;
        max-height: 400px;
    }
}

@media (max-width: 768px) {
    .dynasty-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .dynasty-image {
        min-height: 350px;
    }

    .dynasty-queen-image {
        max-width: 350px;
        max-height: 350px;
    }
}

    /* Breakpoint pro tablet a menší desktop */
@media (max-width: 1200px) {
    .nav-content {
        gap: 1.5rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .nav-links a {
        font-size: 0.85rem;
        padding: 6px 12px;
    }
}

@media (max-width: 992px) {
    .nav-content {
        gap: 1rem;
    }

    .nav-links {
        gap: 0.8rem;
    }

    .nav-links a {
        font-size: 0.8rem;
        padding: 6px 10px;
    }

    .logo {
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .navigation {
        padding: 1rem 0;
    }

    .logo {
        font-size: 1.3rem;
    }

    .nav-links {
        display: none !important;
    }

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

    .nav-content {
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
    }

    /* Ensure mobile menu overlay displays properly */
    .mobile-menu-overlay {
        display: none;
    }

    .mobile-menu-overlay.active {
        display: flex !important;
    }
}

    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .vs-divider {
        order: 2;
    }

    .comparison-side.pharaoh {
        order: 3;
    }



    .pyramid-decoration {
        display: none;
    }

    .floating-hieroglyph {
        display: none;
    }


}

@media (max-width: 480px) {
    section {
        padding: 4rem 0;
    }

    .service-card {
        padding: 2rem;
    }


}

/* Advanced Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection styling */
::selection {
    background: var(--gold);
    color: var(--black);
}

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

/* Loader Styles */
.container-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--black);
    display: flex;
    flex-wrap: wrap;
    place-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.container-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    position: relative;
    width: 200px;
    height: 200px;
    transform-style: preserve-3d;
    transform: perspective(400px) rotateX(60deg);
}

@media (max-width: 1111px) {
    .loader {
        transform: perspective(400px) rotateX(60deg) scale(0.6);
    }
}

.aro {
    position: absolute;
    inset: calc(var(--s) * 10px);
    border: 2px solid var(--gold);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.3), rgba(255, 215, 0, 0.2));
    clip-path: polygon(0 100%, 50% 0, 100% 100%);
    animation: up_and_down 3s infinite ease-in-out both;
    animation-delay: calc(var(--s) * -0.1s);
    box-shadow: 
        0 0 20px rgba(212, 175, 55, 0.4),
        inset 0 0 10px rgba(255, 215, 0, 0.2);
}

@keyframes up_and_down {
    0%, 100% {
        transform: translateZ(-100px);
        border-color: var(--gold);
        box-shadow: 
            0 0 20px rgba(212, 175, 55, 0.4),
            inset 0 0 10px rgba(255, 215, 0, 0.2);
    }
    50% {
        transform: translateZ(100px);
        border-color: var(--rich-gold);
        box-shadow: 
            0 0 40px rgba(212, 175, 55, 0.8),
            inset 0 0 20px rgba(255, 215, 0, 0.4);
    }
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--black);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-gold);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}


/*replacing the list style emoji*/
.comparison-content li::before {
    content: '𓋹';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 1.5rem;
}
/* All emojis replaced with Egyptian hieroglyphs */

.hero-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 2rem;
}

.cta-button.secondary {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 105, 180, 0.1));
    border: 2px solid rgba(255, 215, 0, 0.5);
    color: var(--gold);
}

/* Integrated Form Section within Final CTA */
.integrated-form-section {
    margin: 4rem 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.form-section-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    margin-bottom: 2.5rem;
    color: var(--gold);
    text-align: center;
    line-height: 1.5;
    letter-spacing: 1px;
    font-weight: 600;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, 
        rgba(212, 175, 55, 0.08) 0%, 
        rgba(0, 0, 0, 0.6) 100%);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        0 0 50px rgba(212, 175, 55, 0.1),
        inset 0 1px 0 rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
}

.form-section-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(212, 175, 55, 0.1), 
        transparent);
    transition: left 0.8s ease;
}

.form-section-title:hover::before {
    left: 100%;
}

.form-section-title:hover {
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.4),
        0 0 70px rgba(212, 175, 55, 0.2),
        inset 0 1px 0 rgba(212, 175, 55, 0.3);
}

.integrated-form-section .application-form {
    background: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        linear-gradient(135deg, rgba(15, 15, 35, 0.7) 0%, rgba(26, 26, 46, 0.6) 100%);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid rgba(212, 175, 55, 0.2);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 0 100px rgba(212, 175, 55, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    text-align: left;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.integrated-form-section .application-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60" viewBox="0 0 60 60"><text x="10" y="20" font-size="8" fill="%23D4AF37" opacity="0.02">𓁹</text><text x="35" y="45" font-size="6" fill="%23D4AF37" opacity="0.015">𓊖</text></svg>');
    pointer-events: none;
}

.integrated-form-section .form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.integrated-form-section .form-group {
    display: flex;
    flex-direction: column;
}

.integrated-form-section .form-group.full-width {
    grid-column: 1 / -1;
}

.integrated-form-section .form-group label {
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.integrated-form-section .form-group input,
.integrated-form-section .form-group select {
    background: rgba(15, 15, 35, 0.8);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    padding: 15px;
    color: var(--white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.integrated-form-section .form-group input:focus,
.integrated-form-section .form-group select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    outline: none;
}

.integrated-form-section .form-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.integrated-form-section .submit-btn {
    background: linear-gradient(135deg, 
        var(--gold) 0%, 
        var(--rich-gold) 35%, 
        var(--dark-gold) 100%);
    color: var(--black);
    padding: 25px 60px;
    border: 3px solid var(--gold);
    border-radius: 20px;
    font-size: 1.4rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Cinzel', serif;
    margin: 3rem auto 0;
    display: block;
    position: relative;
    overflow: hidden;
    min-width: 280px;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 20px 50px rgba(212, 175, 55, 0.4),
        0 0 80px rgba(212, 175, 55, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.3),
        inset 0 -2px 0 rgba(0, 0, 0, 0.2);
    text-shadow: 
        0 1px 2px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(255, 255, 255, 0.2);
}

.integrated-form-section .submit-btn::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        var(--rich-gold), 
        transparent, 
        var(--gold), 
        transparent, 
        var(--rich-gold));
    border-radius: 22px;
    z-index: -1;
    animation: borderGlow 3s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.integrated-form-section .submit-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.4), 
        transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.integrated-form-section .submit-btn:hover::before {
    opacity: 0.8;
}

.integrated-form-section .submit-btn:hover {
    transform: translateY(-8px) scale(1.08);
    border-color: var(--rich-gold);
    background: linear-gradient(135deg, 
        var(--rich-gold) 0%, 
        #FFE55C 35%, 
        var(--gold) 100%);
    box-shadow: 
        0 30px 70px rgba(212, 175, 55, 0.6),
        0 0 120px rgba(212, 175, 55, 0.5),
        inset 0 3px 0 rgba(255, 255, 255, 0.4),
        inset 0 -3px 0 rgba(0, 0, 0, 0.3);
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(255, 255, 255, 0.3);
}

.integrated-form-section .submit-btn:hover::after {
    left: 100%;
}

.integrated-form-section .submit-btn:active {
    transform: translateY(-5px) scale(1.05);
    transition: all 0.15s ease;
}

@keyframes borderGlow {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 200%; }
}

@media (max-width: 768px) {
    .integrated-form-section .form-grid {
        grid-template-columns: 1fr;
    }

    .integrated-form-section .application-form {
        padding: 2rem 1.5rem;
    }

    .integrated-form-section .submit-btn {
        padding: 18px 40px;
        font-size: 1.1rem;
    }

    .form-section-title {
        font-size: clamp(1.5rem, 4vw, 2rem);
    }

    .form-section-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
}

/* Final CTA Section */
.final-cta {
    background: 
        radial-gradient(circle at 50% 50%, rgba(75, 0, 130, 0.3) 0%, transparent 70%),
        linear-gradient(135deg, var(--black) 0%, var(--deep-black) 100%);
    text-align: center;
    padding: 8rem 0;
}