/* ===================================
   HERO SECTION - REFINED & ELEGANT
   =================================== */

.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(165deg, #1a1a1a 0%, var(--primary-dark-grey) 50%, #1f1f1f 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow: hidden;
}

/* ===================================
   BACKGROUND IMAGE SLIDER
   =================================== */

.hero-bg-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1);
    transition: opacity 2s ease-in-out, transform 20s ease-out;
    will-change: opacity, transform;
}

.hero-bg-slide.active {
    opacity: 1;
    transform: scale(1.15);
    animation: kenBurnsZoom 20s ease-out forwards;
}

@keyframes kenBurnsZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.15);
    }
}

/* Fade transition for outgoing slides */
.hero-bg-slide.fade-out {
    opacity: 0;
    transform: scale(1.15);
}

/* Sophisticated gradient mesh background - overlay on images */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 15% 20%, rgba(217, 180, 95, 0.08) 0%, transparent 45%),
        radial-gradient(ellipse at 85% 80%, rgba(217, 180, 95, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(217, 180, 95, 0.03) 0%, transparent 60%);
    z-index: 1;
    animation: pulseGlow 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.8;
    }
    50% {
        opacity: 1;
    }
}

/* Elegant grid overlay */
.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(217, 180, 95, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(217, 180, 95, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.3;
    z-index: 1;
    pointer-events: none;
}

/* Premium vignette overlay - enhanced for images */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at center, transparent 0%, rgba(26, 26, 26, 0.5) 60%, rgba(26, 26, 26, 0.85) 100%),
        linear-gradient(180deg, rgba(26, 26, 26, 0.4) 0%, transparent 40%, transparent 60%, rgba(26, 26, 26, 0.5) 100%);
    z-index: 2;
    pointer-events: none;
}

/* ===================================
   DECORATIVE GEOMETRIC ELEMENTS
   =================================== */

/* Elegant corner accents */
.hero-section .corner-accent {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 1px solid rgba(217, 180, 95, 0.2);
    z-index: 3;
    pointer-events: none;
}

.hero-section .corner-accent:nth-of-type(1) {
    top: 60px;
    left: 60px;
    border-right: none;
    border-bottom: none;
    animation: fadeInTopLeft 1.5s ease forwards;
}

.hero-section .corner-accent:nth-of-type(2) {
    bottom: 60px;
    right: 60px;
    border-left: none;
    border-top: none;
    animation: fadeInBottomRight 1.5s ease forwards;
}

@keyframes fadeInTopLeft {
    from {
        opacity: 0;
        transform: translate(-20px, -20px);
    }
    to {
        opacity: 1;
        transform: translate(0, 0);
    }
}

@keyframes fadeInBottomRight {
    from {
        opacity: 0;
        transform: translate(20px, 20px);
    }
    to {
        opacity: 1;
        transform: translate(0, 0);
    }
}

/* Floating subtle particles */
.hero-section .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-gold);
    border-radius: 50%;
    opacity: 0;
    z-index: 3;
    animation: particleRise 15s ease-in-out infinite;
}

.hero-section .particle:nth-child(1) { left: 20%; animation-delay: 0s; }
.hero-section .particle:nth-child(2) { left: 40%; animation-delay: 3s; }
.hero-section .particle:nth-child(3) { left: 60%; animation-delay: 6s; }
.hero-section .particle:nth-child(4) { left: 80%; animation-delay: 9s; }

@keyframes particleRise {
    0% {
        bottom: 0;
        opacity: 0;
        transform: translateX(0) scale(0);
    }
    10% {
        opacity: 0.8;
        transform: translateX(20px) scale(1);
    }
    90% {
        opacity: 0.8;
        transform: translateX(-20px) scale(1);
    }
    100% {
        bottom: 100%;
        opacity: 0;
        transform: translateX(0) scale(0);
    }
}

/* ===================================
   HERO CONTENT - REFINED TYPOGRAPHY
   =================================== */

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 950px;
    padding: 0 var(--spacing-lg);
    animation: heroContentReveal 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.hero-content::before,
.hero-content::after {
    display: none; /* Hidden by default, shown on mobile */
}

@keyframes heroContentReveal {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Premium headline with sophisticated spacing */
.hero-title {
    font-size: clamp(2.8rem, 7vw, 5.2rem);
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: var(--spacing-lg);
    letter-spacing: -1.5px;
    line-height: 1.05;
    text-shadow: 
        0 2px 10px rgba(0, 0, 0, 0.3),
        0 4px 25px rgba(0, 0, 0, 0.2);
    animation: heroTitleReveal 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards 0.2s;
    opacity: 0;
    position: relative;
}

/* Elegant gold gradient accent */
.hero-title::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gold-gradient);
    border-radius: 2px;
    opacity: 0;
    animation: accentLineReveal 0.8s ease forwards 0.8s;
}

@keyframes accentLineReveal {
    from {
        opacity: 0;
        width: 0;
    }
    to {
        opacity: 1;
        width: 60px;
    }
}

@keyframes heroTitleReveal {
    from {
        opacity: 0;
        transform: translateY(30px);
        letter-spacing: -3px;
    }
    to {
        opacity: 1;
        transform: translateY(0);
        letter-spacing: -1.5px;
    }
}

/* Refined subtitle with elegant spacing */
.hero-subtitle {
    font-size: clamp(1.15rem, 2.8vw, 1.75rem);
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: var(--spacing-xl);
    font-weight: 300;
    letter-spacing: 0.8px;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
    line-height: 1.7;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    animation: heroSubtitleReveal 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards 0.4s;
    opacity: 0;
}

@keyframes heroSubtitleReveal {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   PREMIUM CTA BUTTON
   =================================== */

.hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--gold-gradient);
    color: var(--text-white);
    padding: 22px 50px;
    border-radius: var(--radius-full);
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: capitalize;
    box-shadow: 
        0 10px 40px rgba(217, 180, 95, 0.35),
        0 4px 15px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    animation: heroCTAReveal 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards 0.6s;
    opacity: 0;
    cursor: pointer;
}

/* Sophisticated shine effect */
.hero-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.3) 50%, 
        transparent 100%
    );
    transition: left 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Arrow icon */
.hero-cta::after {
    content: '→';
    font-size: 1.3rem;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
}

@keyframes heroCTAReveal {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-cta:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 
        0 15px 50px rgba(217, 180, 95, 0.45),
        0 6px 20px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.25);
    letter-spacing: 1px;
}

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

.hero-cta:hover::after {
    transform: translateX(5px);
}

.hero-cta:active {
    transform: translateY(-3px) scale(1.01);
}

/* ===================================
   HERO SLIDER NAVIGATION DOTS
   =================================== */

.hero-slider-nav {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
    animation: fadeIn 0.8s ease forwards 1s;
    opacity: 0;
}

.hero-nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(217, 180, 95, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    padding: 0;
}

.hero-nav-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 6px;
    height: 6px;
    background: var(--primary-gold);
    border-radius: 50%;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hero-nav-dot.active {
    border-color: var(--primary-gold);
    transform: scale(1.2);
    box-shadow: 0 0 15px rgba(217, 180, 95, 0.4);
}

.hero-nav-dot.active::before {
    transform: translate(-50%, -50%) scale(1);
}

.hero-nav-dot:hover {
    border-color: var(--primary-gold);
    transform: scale(1.3);
    box-shadow: 0 0 20px rgba(217, 180, 95, 0.5);
}

/* Progress indicator on active dot */
.hero-nav-dot.active::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: var(--primary-gold);
    animation: dotProgress 8s linear;
}

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

/* ===================================
   ELEGANT SCROLL INDICATOR
   =================================== */

.scroll-indicator {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: scrollIndicatorReveal 0.8s ease forwards 1.2s, scrollBounce 2.5s ease-in-out infinite 2s;
    opacity: 0;
    cursor: pointer;
}

@keyframes scrollIndicatorReveal {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.scroll-indicator span {
    display: block;
    width: 32px;
    height: 52px;
    border: 2px solid rgba(217, 180, 95, 0.5);
    border-radius: 26px;
    position: relative;
    transition: all var(--transition-normal);
}

.scroll-indicator:hover span {
    border-color: rgba(217, 180, 95, 0.8);
    box-shadow: 0 0 20px rgba(217, 180, 95, 0.3);
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--primary-gold);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(217, 180, 95, 0.6);
    animation: scrollDot 2.5s ease-in-out infinite;
}

@keyframes scrollDot {
    0% {
        top: 10px;
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        top: 32px;
        opacity: 0;
    }
}

@keyframes scrollBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-12px);
    }
    60% {
        transform: translateX(-50%) translateY(-6px);
    }
}

/* Optional scroll text */
.scroll-indicator::after {
    content: 'Scroll';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 12px;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(217, 180, 95, 0.6);
    font-weight: 500;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.scroll-indicator:hover::after {
    opacity: 1;
}

/* ===================================
   FLOATING DECORATIVE SHAPES
   =================================== */

.hero-section .floating-shape {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(
        circle at 30% 30%,
        rgba(217, 180, 95, 0.15) 0%,
        rgba(217, 180, 95, 0.05) 50%,
        transparent 100%
    );
    filter: blur(40px);
    z-index: 2;
    pointer-events: none;
}

.hero-section .floating-shape:nth-child(1) {
    width: 400px;
    height: 400px;
    top: -100px;
    left: -100px;
    animation: floatShape1 25s ease-in-out infinite;
}

.hero-section .floating-shape:nth-child(2) {
    width: 350px;
    height: 350px;
    bottom: -80px;
    right: -80px;
    animation: floatShape2 30s ease-in-out infinite;
}

.hero-section .floating-shape:nth-child(3) {
    width: 250px;
    height: 250px;
    top: 50%;
    right: 5%;
    animation: floatShape3 20s ease-in-out infinite;
}

@keyframes floatShape1 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.8;
    }
    33% {
        transform: translate(50px, -30px) scale(1.1);
        opacity: 1;
    }
    66% {
        transform: translate(-30px, 40px) scale(0.9);
        opacity: 0.6;
    }
}

@keyframes floatShape2 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.7;
    }
    33% {
        transform: translate(-40px, 30px) scale(1.15);
        opacity: 0.9;
    }
    66% {
        transform: translate(30px, -40px) scale(0.85);
        opacity: 0.5;
    }
}

@keyframes floatShape3 {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
        opacity: 0.6;
    }
    50% {
        transform: translate(20px, 20px) scale(1.2) rotate(180deg);
        opacity: 0.8;
    }
}

/* ===================================
   RESPONSIVE REFINEMENTS
   =================================== */

@media (max-width: 1200px) {
    .hero-section {
        min-height: 650px;
    }
    
    .hero-content {
        max-width: 850px;
        padding: 0 var(--spacing-md);
    }
    
    .hero-section .corner-accent {
        width: 150px;
        height: 150px;
    }
    
    .hero-section .corner-accent:nth-of-type(1) {
        top: 40px;
        left: 40px;
    }
    
    .hero-section .corner-accent:nth-of-type(2) {
        bottom: 40px;
        right: 40px;
    }
}

@media (max-width: 1024px) {
    .hero-section {
        min-height: 600px;
    }
    
    .hero-title {
        margin-bottom: var(--spacing-md);
    }
    
    .hero-subtitle {
        margin-bottom: var(--spacing-lg);
    }
    
    .hero-cta {
        padding: 20px 45px;
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 100vh;
        min-height: 650px;
    }
    
    /* Enhanced mobile background with more depth */
    .hero-section::before {
        background: 
            radial-gradient(ellipse at 20% 30%, rgba(217, 180, 95, 0.18) 0%, transparent 50%),
            radial-gradient(ellipse at 80% 70%, rgba(217, 180, 95, 0.12) 0%, transparent 50%),
            radial-gradient(circle at 50% 50%, rgba(217, 180, 95, 0.08) 0%, transparent 60%);
    }
    
    /* Refined grid for mobile */
    .hero-section::after {
        background-image: 
            linear-gradient(rgba(217, 180, 95, 0.04) 1px, transparent 1px),
            linear-gradient(90deg, rgba(217, 180, 95, 0.04) 1px, transparent 1px);
        background-size: 40px 40px;
        opacity: 0.5;
    }
    
    /* Premium mobile overlay */
    .hero-overlay {
        background: 
            radial-gradient(ellipse at center, transparent 0%, rgba(26, 26, 26, 0.3) 50%, rgba(26, 26, 26, 0.75) 100%),
            linear-gradient(180deg, rgba(26, 26, 26, 0.15) 0%, transparent 35%, transparent 65%, rgba(26, 26, 26, 0.25) 100%);
    }
    
    .hero-content {
        padding: 0 var(--spacing-md);
        max-width: 100%;
    }
    
    /* Enhanced mobile typography */
    .hero-title {
        font-size: clamp(2.2rem, 9vw, 3.5rem);
        letter-spacing: -1px;
        margin-bottom: var(--spacing-md);
        line-height: 1.1;
        text-shadow: 
            0 3px 15px rgba(0, 0, 0, 0.4),
            0 6px 30px rgba(0, 0, 0, 0.3);
    }
    
    .hero-title::before {
        top: -18px;
        width: 50px;
        height: 3px;
    }
    
    .hero-subtitle {
        font-size: clamp(1rem, 4vw, 1.35rem);
        margin-bottom: var(--spacing-lg);
        letter-spacing: 0.5px;
        line-height: 1.6;
        max-width: 90%;
        text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    }
    
    /* Premium mobile CTA */
    .hero-cta {
        padding: 18px 40px;
        font-size: 1.05rem;
        box-shadow: 
            0 12px 45px rgba(217, 180, 95, 0.4),
            0 5px 20px rgba(0, 0, 0, 0.35),
            inset 0 1px 0 rgba(255, 255, 255, 0.25);
        letter-spacing: 0.6px;
    }
    
    .hero-cta::after {
        font-size: 1.2rem;
    }
    
    /* Refined scroll indicator */
    /* Slider navigation adjustments */
    .hero-slider-nav {
        bottom: 90px;
        gap: 10px;
    }
    
    .hero-nav-dot {
        width: 10px;
        height: 10px;
    }
    
    .hero-nav-dot::before {
        width: 5px;
        height: 5px;
    }
    
    .scroll-indicator {
        bottom: 40px;
    }
    
    .scroll-indicator span {
        width: 30px;
        height: 50px;
        border-width: 2.5px;
        border-color: rgba(217, 180, 95, 0.6);
    }
    
    .scroll-indicator span::before {
        width: 6px;
        height: 6px;
        top: 10px;
    }
    
    .scroll-indicator::after {
        font-size: 0.7rem;
        margin-top: 14px;
    }
    
    /* Keep corner accents on mobile for premium feel */
    .hero-section .corner-accent {
        width: 120px;
        height: 120px;
        border-width: 1.5px;
        border-color: rgba(217, 180, 95, 0.25);
    }
    
    .hero-section .corner-accent:nth-of-type(1) {
        top: 80px;
        left: 20px;
    }
    
    .hero-section .corner-accent:nth-of-type(2) {
        bottom: 80px;
        right: 20px;
    }
    
    /* Show floating shapes on mobile with adjusted sizes */
    .hero-section .floating-shape {
        display: block;
    }
    
    .hero-section .floating-shape:nth-child(1) {
        width: 280px;
        height: 280px;
        top: -80px;
        left: -80px;
        filter: blur(50px);
    }
    
    .hero-section .floating-shape:nth-child(2) {
        width: 250px;
        height: 250px;
        bottom: -60px;
        right: -60px;
        filter: blur(45px);
    }
    
    .hero-section .floating-shape:nth-child(3) {
        width: 180px;
        height: 180px;
        top: 40%;
        right: -40px;
        filter: blur(40px);
    }
    
    /* Keep particles visible on mobile */
    .hero-section .particle {
        width: 3px;
        height: 3px;
    }
    
    /* Mobile-specific decorative side lines */
    .hero-content::before,
    .hero-content::after {
        display: block;
        content: '';
        position: absolute;
        width: 1px;
        height: 120px;
        background: linear-gradient(
            to bottom,
            transparent 0%,
            rgba(217, 180, 95, 0.5) 50%,
            transparent 100%
        );
        top: 50%;
        transform: translateY(-50%);
        opacity: 0.6;
        animation: fadeIn 1s ease forwards 1s;
    }
    
    .hero-content::before {
        left: 10px;
    }
    
    .hero-content::after {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        height: 100vh;
        min-height: 600px;
    }
    
    /* Enhanced small mobile background */
    .hero-section::before {
        background: 
            radial-gradient(ellipse at 25% 25%, rgba(217, 180, 95, 0.2) 0%, transparent 55%),
            radial-gradient(ellipse at 75% 75%, rgba(217, 180, 95, 0.15) 0%, transparent 55%),
            radial-gradient(circle at 50% 50%, rgba(217, 180, 95, 0.1) 0%, transparent 65%);
    }
    
    .hero-content {
        padding: 0 var(--spacing-sm);
    }
    
    /* Optimized typography for small screens */
    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
        letter-spacing: -0.8px;
        margin-bottom: 20px;
    }
    
    .hero-title::before {
        top: -15px;
        width: 45px;
        height: 2.5px;
    }
    
    .hero-subtitle {
        font-size: clamp(0.95rem, 3.8vw, 1.2rem);
        margin-bottom: var(--spacing-md);
        letter-spacing: 0.4px;
        max-width: 95%;
    }
    
    /* Optimized CTA for small screens */
    .hero-cta {
        padding: 16px 36px;
        font-size: 1rem;
        box-shadow: 
            0 10px 40px rgba(217, 180, 95, 0.38),
            0 4px 18px rgba(0, 0, 0, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
    
    .hero-cta::after {
        font-size: 1.15rem;
    }
    
    /* Slider navigation for small screens */
    .hero-slider-nav {
        bottom: 80px;
        gap: 8px;
    }
    
    .hero-nav-dot {
        width: 9px;
        height: 9px;
        border-width: 1.5px;
    }
    
    .hero-nav-dot::before {
        width: 4.5px;
        height: 4.5px;
    }
    
    .hero-nav-dot.active::after {
        top: -2.5px;
        left: -2.5px;
        right: -2.5px;
        bottom: -2.5px;
        border-width: 1.5px;
    }
    
    /* Refined scroll indicator for small screens */
    .scroll-indicator {
        bottom: 35px;
    }
    
    .scroll-indicator span {
        width: 28px;
        height: 46px;
        border-width: 2px;
    }
    
    .scroll-indicator span::before {
        width: 5px;
        height: 5px;
        top: 9px;
    }
    
    .scroll-indicator::after {
        font-size: 0.65rem;
        letter-spacing: 1.5px;
    }
    
    /* Simplified but elegant corner accents for small screens */
    .hero-section .corner-accent {
        width: 100px;
        height: 100px;
        border-width: 1.5px;
        border-color: rgba(217, 180, 95, 0.3);
    }
    
    .hero-section .corner-accent:nth-of-type(1) {
        top: 70px;
        left: 15px;
    }
    
    .hero-section .corner-accent:nth-of-type(2) {
        bottom: 70px;
        right: 15px;
    }
    
    /* Optimized floating shapes for small screens */
    .hero-section .floating-shape:nth-child(1) {
        width: 220px;
        height: 220px;
        top: -60px;
        left: -60px;
        filter: blur(45px);
    }
    
    .hero-section .floating-shape:nth-child(2) {
        width: 200px;
        height: 200px;
        bottom: -50px;
        right: -50px;
        filter: blur(40px);
    }
    
    .hero-section .floating-shape:nth-child(3) {
        width: 150px;
        height: 150px;
        top: 45%;
        right: -30px;
        filter: blur(35px);
    }
    
    /* Adjust decorative lines for smaller screens */
    .hero-content::before,
    .hero-content::after {
        height: 100px;
        left: 8px;
    }
    
    .hero-content::before {
        left: 8px;
    }
    
    .hero-content::after {
        right: 8px;
    }
}

/* ===================================
   ACCESSIBILITY & REDUCED MOTION
   =================================== */

@media (prefers-reduced-motion: reduce) {
    .hero-section::before,
    .hero-section .particle,
    .hero-section .floating-shape,
    .scroll-indicator,
    .scroll-indicator span::before,
    .hero-cta::before {
        animation: none !important;
    }
    
    .hero-content,
    .hero-title,
    .hero-subtitle,
    .hero-cta {
        animation: none !important;
        opacity: 1 !important;
    }
    
    .hero-cta:hover {
        transform: translateY(-2px) scale(1.01);
    }
}

/* ===================================
   PERFORMANCE OPTIMIZATIONS
   =================================== */

.hero-section,
.hero-section::before,
.hero-section::after,
.hero-overlay,
.hero-content,
.floating-shape {
    will-change: auto;
}

.hero-cta {
    will-change: transform;
}

/* Force GPU acceleration for smooth animations */
.hero-section .floating-shape,
.hero-content,
.hero-cta,
.scroll-indicator {
    transform: translateZ(0);
    backface-visibility: hidden;
}
