/* ========================================
   MONYRATNA JEWELLERY - MAIN STYLESHEET
   Modern, Elegant & Luxurious Design
   ======================================== */

/* Import Google Fonts - Elegant Typography for Jewellery */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800;900&family=Montserrat:wght@300;400;500;600;700&family=Cormorant+Garamond:wght@300;400;500;600;700&display=swap');

/* ========================================
   ROOT VARIABLES - Monyratna Brand Colors
   ======================================== */
:root {
    /* Primary Brand Colors */
    --primary-cyan: #00D4FF;
    --secondary-cyan: #00B8E6;
    --accent-gold: #C9A961;
    --bright-gold: #D4AF37;
    --light-gold: #E6C875;
    
    /* Background Colors */
    --bg-dark: #0A192F;
    --bg-darker: #050B16;
    --bg-card: #1A2332;
    --bg-light: #F5F5F5;
    --bg-white: #FFFFFF;
    
    /* Text Colors */
    --text-dark: #0A192F;
    --text-light: #E0F4FF;
    --text-gold: #C9A961;
    --text-muted: #8B9CB5;
    --text-white: #FFFFFF;
    
    /* Border & Effects */
    --border-cyan: rgba(0, 212, 255, 0.3);
    --border-gold: rgba(201, 169, 97, 0.3);
    
    /* Fonts */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --font-elegant: 'Cormorant Garamond', serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-max: 1400px;
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.3s ease;
}

/* ========================================
   RESET & BASE STYLES
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--bg-white);
    overflow-x: hidden;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-dark);
    margin-bottom: 20px;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.8rem; }
h3 { font-size: 2.2rem; }
h4 { font-size: 1.8rem; }
h5 { font-size: 1.4rem; }
h6 { font-size: 1.1rem; }

p {
    margin-bottom: 15px;
    color: var(--text-muted);
}

a {
    text-decoration: none;
    color: var(--primary-cyan);
    transition: var(--transition-fast);
}

a:hover {
    color: var(--accent-gold);
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: var(--section-padding);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 3rem;
    color: var(--text-dark);
    position: relative;
    display: inline-block;
    padding-bottom: 20px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-cyan), var(--accent-gold));
}

.section-title p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 20px auto 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 35px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--accent-gold), var(--bright-gold));
    transition: var(--transition-smooth);
    z-index: -1;
}

.btn:hover::before {
    left: 0;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-cyan), var(--secondary-cyan));
    color: var(--text-dark);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-gold), var(--bright-gold));
    color: var(--text-white);
}

.btn-gold {
    background: linear-gradient(135deg, var(--accent-gold), var(--bright-gold));
    color: var(--text-dark);
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--primary-cyan), var(--secondary-cyan));
    color: var(--text-dark);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-cyan);
    color: var(--primary-cyan);
}

.btn-outline:hover {
    background: var(--primary-cyan);
    color: var(--text-white);
    border-color: var(--primary-cyan);
}

/* ========================================
   TOP BAR
   ======================================== */
.top-bar {
    background: var(--bg-dark);
    padding: 10px 0;
    border-bottom: 1px solid var(--border-cyan);
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    gap: 25px;
    align-items: center;
}

.top-bar-left a {
    color: var(--text-light);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-left a:hover {
    color: var(--accent-gold);
}

.top-bar-right {
    display: flex;
    gap: 15px;
    align-items: center;
}

.top-bar-auth-btn {
    display: none;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 14px;
    padding: 5px 12px;
    border-radius: 20px;
    background: rgba(0, 212, 255, 0.1);
    transition: var(--transition-fast);
}

.top-bar-auth-btn:hover {
    background: var(--primary-cyan);
    color: var(--text-dark);
}

.top-bar-auth-btn i {
    font-size: 14px;
}

.top-bar-right .social-icon {
    width: 30px;
    height: 30px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-cyan);
    transition: var(--transition-fast);
}

.top-bar-right .social-icon:hover {
    background: var(--primary-cyan);
    color: var(--text-dark);
    transform: translateY(-3px);
}

/* ========================================
   HEADER / NAVIGATION
   ======================================== */
.header {
    background: var(--bg-white);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition-fast);
}

.header.scrolled {
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-menu li a {
    font-weight: 500;
    font-size: 15px;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding: 5px 0;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-cyan), var(--accent-gold));
    transition: var(--transition-fast);
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
    width: 100%;
}

/* Dropdown Menu */
.nav-menu li {
    position: relative;
}

.nav-menu li.has-dropdown > a {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-menu li.has-dropdown > a::before {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.8rem;
    margin-left: 5px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-white);
    min-width: 220px;
    padding: 15px 0;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-smooth);
    z-index: 1000;
    list-style: none;
}

.nav-menu li.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
    border: none;
}

.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    color: var(--text-dark);
    font-size: 0.95rem;
    text-transform: none;
    transition: var(--transition-fast);
}

.dropdown-menu li a::after {
    display: none;
}

.dropdown-menu li a i {
    font-size: 0.9rem;
    color: var(--accent-gold);
    width: 20px;
}

.dropdown-menu li a:hover {
    background: rgba(0, 212, 255, 0.05);
    color: var(--primary-cyan);
    padding-left: 25px;
}

.nav-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.nav-actions .btn {
    padding: 10px 25px;
    font-size: 13px;
}

/* Hide mobile nav actions in desktop */
.nav-menu .nav-actions {
    display: none;
}

/* Hide mobile menu close button on desktop */
.mobile-menu-close {
    display: none;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: var(--transition-fast);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1515562141207-7a88fb7ce338?w=1600') center/cover;
    opacity: 0.15;
    animation: zoomInOut 20s infinite alternate;
}

@keyframes zoomInOut {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 700px;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-family: var(--font-elegant);
    font-size: 1.5rem;
    color: var(--accent-gold);
    margin-bottom: 15px;
    font-style: italic;
}

.hero h1 {
    font-size: 4.5rem;
    color: var(--text-white);
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero h1 .highlight {
    background: linear-gradient(135deg, var(--primary-cyan), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Floating particles animation */
.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-cyan);
    border-radius: 50%;
    opacity: 0.4;
    animation: float 15s infinite ease-in-out;
}

@keyframes float {
    0%, 100% { transform: translateY(0) translateX(0); }
    33% { transform: translateY(-100px) translateX(50px); }
    66% { transform: translateY(-50px) translateX(-50px); }
}

/* ========================================
   HERO SLIDER
   ======================================== */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    background: var(--bg-dark);
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(10, 25, 47, 0.85) 0%,
        rgba(10, 25, 47, 0.6) 50%,
        rgba(10, 25, 47, 0.85) 100%
    );
    z-index: 1;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    z-index: 2;
    text-align: center;
    padding: 0 20px;
}

.slide-label {
    display: inline-block;
    font-family: var(--font-elegant);
    font-size: 1.2rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 400;
}

.slide-content h1 {
    font-size: 4.5rem;
    color: var(--text-white);
    margin-bottom: 25px;
    line-height: 1.2;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.slide-content p {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.slide-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Slider Navigation Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: var(--text-white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-arrow:hover {
    background: var(--primary-cyan);
    border-color: var(--primary-cyan);
    color: var(--text-dark);
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev {
    left: 30px;
}

.slider-arrow.next {
    right: 30px;
}

/* Slider Navigation Dots */
.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

.dot.active {
    background: var(--primary-cyan);
    border-color: var(--primary-cyan);
    width: 40px;
    border-radius: 10px;
}

/* Slider Animations */
.slide.active .slide-label {
    animation: fadeInUp 0.8s ease 0.2s both;
}

.slide.active h1 {
    animation: fadeInUp 0.8s ease 0.4s both;
}

.slide.active p {
    animation: fadeInUp 0.8s ease 0.6s both;
}

.slide.active .slide-buttons {
    animation: fadeInUp 0.8s ease 0.8s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
/* ========================================
   PAGE HEADER STYLES
   ======================================== */
.page-header {
    padding: 120px 0 80px;
    text-align: center;
}

.page-header-content h1 {
    color: var(--text-white);
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.page-header-content p {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

/* ========================================
   FOOTER STYLES
   ======================================== */
.footer {
    background: linear-gradient(135deg, var(--bg-dark), var(--bg-darker));
    color: var(--text-light);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.footer-col h4 {
    color: var(--text-white);
    font-size: 1.4rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-cyan), var(--accent-gold));
}

.footer-logo img {
    height: 70px;
    width: auto;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-description {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-social .social-icon {
    width: 40px;
    height: 40px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-cyan);
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.footer-social .social-icon:hover {
    background: var(--primary-cyan);
    color: var(--text-dark);
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.4);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-fast);
    font-size: 0.95rem;
}

.footer-links li a i {
    font-size: 0.75rem;
    color: var(--accent-gold);
}

.footer-links li a:hover {
    color: var(--primary-cyan);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-contact li i {
    font-size: 1.2rem;
    color: var(--accent-gold);
    margin-top: 5px;
    flex-shrink: 0;
}

.footer-contact li strong {
    color: var(--text-white);
    display: block;
    margin-bottom: 5px;
}

.footer-newsletter {
    padding: 40px 0;
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.newsletter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.newsletter-text {
    display: flex;
    align-items: center;
    gap: 20px;
}

.newsletter-text i {
    font-size: 3rem;
    color: var(--accent-gold);
}

.newsletter-text h4 {
    color: var(--text-white);
    margin-bottom: 5px;
    font-size: 1.5rem;
}

.newsletter-text p {
    color: var(--text-light);
    margin: 0;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    flex: 1;
    max-width: 500px;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-white);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-cyan);
    background: rgba(255, 255, 255, 0.1);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form .btn {
    white-space: nowrap;
    padding: 14px 30px;
}

.footer-bottom {
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom-left p {
    color: var(--text-light);
    margin: 0;
}

.footer-bottom-right {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.footer-bottom-right a {
    color: var(--text-light);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer-bottom-right a:hover {
    color: var(--primary-cyan);
}

.footer-bottom-right span {
    color: rgba(255, 255, 255, 0.3);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-cyan), var(--secondary-cyan));
    border: none;
    border-radius: 50%;
    color: var(--text-dark);
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    z-index: 999;
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.4);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.6);
    
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 992px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    
    /* Mobile Menu Overlay */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.7);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition-smooth);
                z-index: 999;
    }
    
    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
                z-index: 999;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 320px;
        height: 100vh;
        background: var(--bg-white);
        flex-direction: column;
        padding: 80px 30px 30px;
        box-shadow: 5px 0 30px rgba(0, 0, 0, 0.3);
        transition: var(--transition-smooth);
        gap: 0;
        align-items: flex-start;
        z-index: 9999;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    /* Mobile Menu Logo */
    .nav-menu::before {
        content: '';
        position: absolute;
        top: 20px;
        left: 20px;
        width: 150px;
        height: 50px;
        background: url('../../../app/monyratna.png') no-repeat left center;
        background-size: contain;
        z-index: 1;
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--border-cyan);
        padding: 15px 0;
    }
    
    .nav-menu li a {
        width: 100%;
        font-size: 1.1rem;
    }
    
    /* Mobile Dropdown - Hide completely on mobile */
    .nav-menu li.has-dropdown .dropdown-menu {
        display: none !important;
    }
    
    .nav-menu li.has-dropdown > a::before {
        display: none;
    }
    
    /* Hide mobile nav actions - login/register only in topbar */
    .nav-menu .nav-actions {
        display: none !important;
    }
    
    /* Hide desktop nav actions */
    .nav-actions-desktop {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
        z-index: 10001;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    /* Slider Responsive - Tablet */
    .hero-slider {
        height: 80vh;
        min-height: 500px;
    }
    
    .slide-content h1 {
        font-size: 3.5rem;
    }
    
    .slide-content p {
        font-size: 1.1rem;
    }
    
    .slider-arrow {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .slider-arrow.prev {
        left: 20px;
    }
    
    .slider-arrow.next {
        right: 20px;
    }
    
    /* Footer Responsive */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .newsletter-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .newsletter-form {
        width: 100%;
        max-width: 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-right {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
    
    /* Show only login/register in topbar for mobile */
    .top-bar .container {
        justify-content: center;
    }
    
    .top-bar-left {
        display: none;
    }
    
    .top-bar-right {
        display: flex;
        gap: 15px;
        justify-content: center;
    }
    
    .top-bar-right .social-icon {
        display: none;
    }
    
    .top-bar-auth-btn .auth-text {
        display: inline;
    }
    
    .top-bar-auth-btn {
        display: flex;
        width: auto;
        height: auto;
        padding: 6px 12px;
        justify-content: center;
        border-radius: 20px;
    }
    
    .top-bar-auth-btn i {
        font-size: 14px;
    }
    
    .top-bar-right {
        gap: 10px;
    }
    
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }
    
    /* Slider Responsive - Mobile */
    .hero-slider {
        height: 70vh;
        min-height: 450px;
    }
    
    .slide-content h1 {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }
    
    .slide-label {
        font-size: 0.9rem;
        letter-spacing: 2px;
        margin-bottom: 15px;
    }
    
    .slide-content p {
        font-size: 1rem;
        margin-bottom: 30px;
        padding: 0 10px;
    }
    
    .slide-buttons {
        flex-direction: column;
        gap: 12px;
        padding: 0 20px;
    }
    
    .slide-buttons .btn {
        width: 100%;
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .slider-arrow.prev {
        left: 10px;
    }
    
    .slider-arrow.next {
        right: 10px;
    }
    
    .slider-dots {
        bottom: 20px;
        gap: 10px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    .dot.active {
        width: 30px;
    }
    
    /* Footer Mobile Styles */
    .footer {
        padding: 50px 0 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding-bottom: 30px;
    }
    
    .footer-col h4 {
        font-size: 1.2rem;
    }
    
    .footer-logo img {
        height: 50px;
    }
    
    .newsletter-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }
    
    .newsletter-text {
        flex-direction: column;
        text-align: center;
        width: 100%;
    }
    
    .newsletter-text h4 {
        font-size: 1.3rem;
    }
    
    .newsletter-form {
        width: 100%;
        max-width: 100%;
        flex-direction: column;
    }
    
    .newsletter-form .btn {
        width: 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding: 20px 0;
    }
    
    .footer-bottom-right {
        justify-content: center;
        font-size: 0.85rem;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

@media (min-width: 769px) and (max-width: 992px) {
    /* Tablet Footer Styles */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
    
    .newsletter-form {
        max-width: 100%;
    }
}

/* ========================================
   ENHANCED ANIMATIONS & EFFECTS
   ======================================== */

/* Card Hover Effects with 3D Transformation */
.card-3d {
    transition: var(--transition-smooth);
    transform-style: preserve-3d;
}

.card-3d:hover {
    transform: translateY(-15px) rotateY(5deg) rotateX(5deg);
    box-shadow: 0 25px 60px rgba(0, 212, 255, 0.3);
}

/* Gradient Text Animation */
.gradient-text {
    background: linear-gradient(135deg, var(--primary-cyan), var(--accent-gold), var(--bright-gold), var(--primary-cyan));
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientMove 5s ease infinite;
}

@keyframes gradientMove {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Glowing Border Effect */
.glow-border {
    position: relative;
    border: 2px solid transparent;
}

.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, var(--primary-cyan), var(--accent-gold), var(--primary-cyan));
    background-size: 300% 300%;
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: var(--transition-smooth);
    animation: glowRotate 4s linear infinite;
}

.glow-border:hover::before {
    opacity: 1;
}

@keyframes glowRotate {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Shimmer Loading Effect */
.shimmer {
    position: relative;
    overflow: hidden;
}

.shimmer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmerMove 2s infinite;
}

@keyframes shimmerMove {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Pulse Animation for Icons */
.pulse-icon {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

/* Bounce on Scroll */
.bounce-scroll {
    animation: bounceScroll 2s ease-in-out infinite;
}

@keyframes bounceScroll {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

/* Fade In Animations with Delays */
.fade-in {
    animation: fadeIn 1s ease forwards;
    opacity: 0;
}

.fade-in-up {
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
}

.fade-in-left {
    animation: fadeInLeft 1s ease forwards;
    opacity: 0;
}

.fade-in-right {
    animation: fadeInRight 1s ease forwards;
    opacity: 0;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Staggered Animation Delays */
.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }

/* Parallax Effect Helper Class */
.parallax {
    transition: transform 0.3s ease-out;
}

/* Underline Hover Animation */
.hover-underline {
    position: relative;
    display: inline-block;
}

.hover-underline::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-cyan), var(--accent-gold));
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-underline:hover::after {
    width: 100%;
}

/* Scale on Hover */
.scale-hover {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.scale-hover:hover {
    transform: scale(1.05);
}

/* Rotate Animation */
.rotate-360 {
    transition: transform 0.6s ease;
}

.rotate-360:hover {
    transform: rotate(360deg);
}

/* Background Gradient Animation */
.animated-gradient {
    background: linear-gradient(135deg, var(--primary-cyan), var(--accent-gold), var(--bright-gold), var(--primary-cyan));
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Text Reveal Animation */
.text-reveal {
    position: relative;
    overflow: hidden;
}

.text-reveal::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-cyan);
    animation: textReveal 1.5s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

@keyframes textReveal {
    0% { left: -100%; }
    50% { left: 0; }
    100% { left: 100%; }
}

/* Floating Animation */
.float-animation {
    animation: floatUp 3s ease-in-out infinite;
}

@keyframes floatUp {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Image Zoom on Hover */
.img-zoom-container {
    overflow: hidden;
    border-radius: 8px;
}

.img-zoom {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-zoom-container:hover .img-zoom {
    transform: scale(1.15);
}

/* Button Ripple Effect */
.btn-ripple {
    position: relative;
    overflow: hidden;
}

.btn-ripple::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-ripple:hover::after {
    width: 300px;
    height: 300px;
}

/* Glow Effect on Hover */
.glow-hover {
    transition: var(--transition-smooth);
}

.glow-hover:hover {
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.6),
                0 0 60px rgba(201, 169, 97, 0.4);
}

/* Outline Button with Fill Animation */
.btn-outline-cyan {
    background: transparent;
    border: 2px solid var(--primary-cyan);
    color: var(--primary-cyan);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-outline-cyan::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--primary-cyan);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.btn-outline-cyan:hover {
    color: var(--text-dark);
}

.btn-outline-cyan:hover::before {
    width: 100%;
}

/* Loading Spinner */
.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(0, 212, 255, 0.2);
    border-top-color: var(--primary-cyan);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Skeleton Loading */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeletonLoading 1.5s ease-in-out infinite;
}

@keyframes skeletonLoading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Typewriter Effect */
.typewriter {
    overflow: hidden;
    border-right: 3px solid var(--primary-cyan);
    white-space: nowrap;
    animation: typing 3.5s steps(40, end), blink 0.75s step-end infinite;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink {
    from, to { border-color: transparent; }
    50% { border-color: var(--primary-cyan); }
}

/* Flip Card Animation */
.flip-card {
    perspective: 1000px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
}

.flip-card-back {
    transform: rotateY(180deg);
}

/* Slide In Animations */
.slide-in-bottom {
    animation: slideInBottom 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
}

@keyframes slideInBottom {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Counter Animation (for stats) */
.counter {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-cyan);
    font-family: var(--font-heading);
}

/* Enhanced Box Shadow on Hover */
.shadow-lift {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
}

.shadow-lift:hover {
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.3);
    transform: translateY(-8px);
}

/* Breadcrumb Styles */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    margin-top: 15px;
}

.breadcrumb a {
    color: var(--primary-cyan);
    display: flex;
    align-items: center;
    gap: 5px;
}

.breadcrumb span {
    color: var(--text-muted);
}

/* Smooth Page Transitions */
.page-transition {
    animation: pageSlideIn 0.5s ease;
}

@keyframes pageSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
