/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #D4AF37;
    --dark-gold: #B8860B;
    --light-gold: #F7E7A0;
    --cream: #FFF8E7;
    --ivory: #FFFFF0;
    --champagne: #F7E7CE;
    --bronze: #CD7F32;
    --rich-black: #1C1C1C;
    --warm-black: #2C2C2C;
    --soft-shadow: rgba(212, 175, 55, 0.3);
    --deep-shadow: rgba(184, 134, 11, 0.4);
    --heading-font: 'Merriweather', serif;
    --body-font: 'Source Sans Pro', sans-serif;
}

body {
    font-family: var(--body-font);
    line-height: 1.6;
    color: var(--rich-black);
    overflow-x: hidden;
    background: var(--ivory);
}

html { scroll-behavior: smooth; }

/* Custom Scrollbar */
::-webkit-scrollbar { width: 12px; }
::-webkit-scrollbar-track { background: var(--champagne); }
::-webkit-scrollbar-thumb { 
    background: linear-gradient(180deg, var(--gold), var(--dark-gold)); 
    border-radius: 10px;
    border: 2px solid var(--champagne);
}

/* Loading Screen */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading.fade-out {
    opacity: 0;
}

.loading-content {
    text-align: center;
}

.loading-logo {
    font-family: var(--heading-font);
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--gold), var(--bronze), var(--dark-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 2rem;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid var(--champagne);
    border-top: 4px solid var(--gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 248, 231, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gold);
    box-shadow: 0 4px 30px var(--soft-shadow);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
    opacity: 1;
}

.navbar.scrolled {
    background: rgba(255, 248, 231, 0.98);
    box-shadow: 0 8px 40px var(--deep-shadow);
}

.navbar.hidden {
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--heading-font);
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--gold), var(--bronze), var(--dark-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px var(--soft-shadow);
    position: relative;
}

.logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.logo::after {
    content: '✦';
    position: absolute;
    top: -10px;
    right: -25px;
    font-size: 1.2rem;
    color: var(--gold);
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.2); }
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-links a {
    color: var(--rich-black);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--bronze));
    transition: width 0.3s ease;
}

.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--dark-gold); }

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 30px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--bronze));
    margin: 4px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--ivory) 0%, var(--champagne) 50%, var(--cream) 100%);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px; /* Add padding to account for fixed navbar */
}

.hero::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" viewBox="0 0 1000 1000"><defs><radialGradient id="gold1" cx="30%" cy="30%" r="40%"><stop offset="0%" style="stop-color:rgba(212,175,55,0.1);stop-opacity:1" /><stop offset="100%" style="stop-color:rgba(212,175,55,0);stop-opacity:0" /></radialGradient><radialGradient id="gold2" cx="70%" cy="20%" r="35%"><stop offset="0%" style="stop-color:rgba(247,231,160,0.15);stop-opacity:1" /><stop offset="100%" style="stop-color:rgba(247,231,160,0);stop-opacity:0" /></radialGradient></defs><circle cx="300" cy="300" r="400" fill="url(%23gold1)"/><circle cx="700" cy="200" r="350" fill="url(%23gold2)"/><circle cx="200" cy="800" r="300" fill="url(%23gold1)"/></svg>');
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-family: var(--heading-font);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--rich-black);
    margin-bottom: 1.2rem;
    line-height: 1.1;
}

.hero-content .highlight {
    background: linear-gradient(135deg, var(--gold), var(--bronze), var(--dark-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.hero-content .highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--bronze));
    opacity: 0.6;
}

.hero-content p {
    font-size: 1rem;
    color: var(--warm-black);
    margin-bottom: 2rem;
    line-height: 1.6;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    margin-bottom: 4rem;
}

.btn-luxury {
    background: linear-gradient(135deg, var(--gold), var(--bronze));
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 60px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 12px 40px var(--soft-shadow);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-luxury::before {
    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;
}

.btn-luxury:hover::before { left: 100%; }
.btn-luxury:hover { 
    transform: translateY(-4px); 
    box-shadow: 0 20px 60px var(--deep-shadow);
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border: 3px solid var(--gold);
    padding: 1rem 2.5rem;
    border-radius: 60px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-outline:hover {
    background: var(--gold);
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 20px 60px var(--soft-shadow);
}

.hero-stats {
    display: flex;
    gap: 3rem;
}

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

.stat-item::after {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--bronze));
}

.stat-number {
    display: block;
    font-family: var(--heading-font);
    font-size: 2.2rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--gold), var(--bronze));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--warm-black);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.hero-visual {
    position: relative;
    height: 700px;
}

.luxury-card {
    position: absolute;
    background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(247,231,206,0.8));
    backdrop-filter: blur(20px);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 30px;
    padding: 2.5rem;
    color: var(--rich-black);
    text-align: center;
    animation: luxuryFloat 8s ease-in-out infinite;
    box-shadow: 0 25px 50px var(--soft-shadow);
}

.luxury-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--bronze), var(--gold));
    border-radius: 30px 30px 0 0;
}

.luxury-card i {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--gold), var(--bronze));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    display: block;
}

.luxury-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--rich-black);
    margin-bottom: 0.5rem;
}

.luxury-card p {
    font-size: 0.9rem;
    color: var(--warm-black);
    opacity: 0.8;
}

.card-1 { top: 5%; right: 15%; animation-delay: 0s; }
.card-2 { top: 40%; right: 35%; animation-delay: 2.5s; }
.card-3 { bottom: 15%; right: 5%; animation-delay: 5s; }

@keyframes luxuryFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-15px) rotate(1deg); }
    50% { transform: translateY(-25px) rotate(0deg); }
    75% { transform: translateY(-10px) rotate(-1deg); }
}

/* Animation Classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

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

    .hero-visual {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--cream);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        box-shadow: 0 10px 30px var(--soft-shadow);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        justify-content: center;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .luxury-card {
        padding: 1.5rem;
    }

    .btn-luxury, .btn-outline {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* About Section */
.about {
    padding: 10rem 0;
    background: var(--cream);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

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

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

.section-header h2 {
    font-family: var(--heading-font);
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--rich-black);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-header .highlight {
    background: linear-gradient(135deg, var(--gold), var(--bronze));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header p {
    font-size: 1rem;
    color: var(--warm-black);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    margin-bottom: 6rem;
}

.about-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--rich-black);
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1rem;
    color: var(--warm-black);
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

.about-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image {
    height: 400px;
    background: linear-gradient(135deg, var(--gold), var(--bronze));
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
    box-shadow: 0 20px 40px var(--soft-shadow);
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.luxury-feature {
    background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(247,231,206,0.6));
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 20px 40px var(--soft-shadow);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.luxury-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--bronze), var(--gold));
}

.luxury-feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px var(--deep-shadow);
}

.luxury-feature i {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--gold), var(--bronze));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}

.luxury-feature h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--rich-black);
    margin-bottom: 1rem;
}

.luxury-feature p {
    color: var(--warm-black);
    line-height: 1.6;
}

/* Services Section */
.services {
    padding: 10rem 0;
    background: var(--ivory);
    position: relative;
}

.services::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" viewBox="0 0 1000 1000"><defs><pattern id="luxury-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="2" fill="rgba(212,175,55,0.1)"/><circle cx="75" cy="75" r="2" fill="rgba(184,134,11,0.1)"/><circle cx="50" cy="10" r="1" fill="rgba(212,175,55,0.1)"/><circle cx="10" cy="60" r="1" fill="rgba(184,134,11,0.1)"/><circle cx="90" cy="40" r="1" fill="rgba(212,175,55,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23luxury-pattern)"/></svg>');
    opacity: 0.5;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 4rem;
}

.service-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(255,248,231,0.9));
    backdrop-filter: blur(20px);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 30px;
    padding: 4rem;
    text-align: center;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--gold), var(--bronze), var(--dark-gold), var(--gold));
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 40px 80px var(--deep-shadow);
    border-color: var(--gold);
}

.service-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--gold), var(--bronze));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 3rem;
    color: white;
    box-shadow: 0 15px 40px var(--soft-shadow);
    position: relative;
}

.service-icon::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid var(--light-gold);
    border-radius: 50%;
    opacity: 0.6;
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--rich-black);
    margin-bottom: 1.5rem;
}

.service-card p {
    color: var(--warm-black);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

.service-features {
    list-style: none;
    text-align: left;
}

.service-features li {
    color: var(--warm-black);
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    font-weight: 500;
}

.service-features li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Testimonials Section */
.testimonials {
    padding: 10rem 0;
    background: linear-gradient(135deg, var(--champagne) 0%, var(--cream) 100%);
    position: relative;
}

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

.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(255,255,255,0.9), rgba(255,248,231,0.8));
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 20px 50px var(--soft-shadow);
    border: 1px solid rgba(212, 175, 55, 0.3);
    position: relative;
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 70px var(--deep-shadow);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 30px;
    font-size: 6rem;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    opacity: 0.3;
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--rich-black);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold), var(--bronze));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.5rem;
}

.author-info h5 {
    font-weight: 700;
    color: var(--rich-black);
    margin-bottom: 0.25rem;
}

.author-info span {
    color: var(--warm-black);
    font-size: 0.9rem;
}

/* CTA Section */
.cta {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--gold) 0%, var(--bronze) 50%, var(--dark-gold) 100%);
    position: relative;
    overflow: hidden;
}

.cta::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" viewBox="0 0 100 100"><defs><pattern id="luxury-dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1.5" fill="rgba(255,255,255,0.2)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23luxury-dots)"/></svg>');
}

.cta-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.cta p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-white {
    background: white;
    color: var(--gold);
    border: none;
    padding: 1.2rem 3rem;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

.btn-white:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.btn-transparent {
    background: transparent;
    color: white;
    border: 3px solid rgba(255,255,255,0.3);
    padding: 1.2rem 3rem;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-transparent:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-4px);
}

/* Footer */
.footer {
    background: var(--rich-black);
    color: var(--cream);
    padding: 6rem 0 2rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

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

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

.footer-brand h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--gold), var(--bronze));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}

.footer-brand p {
    color: rgba(255, 248, 231, 0.8);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold), var(--bronze));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transition: all 0.4s ease;
    text-decoration: none;
}

.social-links a:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 30px var(--soft-shadow);
}

.footer-section h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--gold);
}

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

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: rgba(255, 248, 231, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

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

.contact-info {
    color: rgba(255, 248, 231, 0.8);
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1rem;
    font-weight: 500;
}

.contact-info i {
    color: var(--gold);
    width: 20px;
    font-size: 1.2rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    color: rgba(255, 248, 231, 0.6);
    font-size: 1rem;
}

.footer-bottom i {
    color: var(--gold);
    margin: 0 8px;
}

/* Employee Portal Styles */
.hidden {
    display: none !important;
}

/* Login Section */
.login-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--ivory) 0%, var(--champagne) 50%, var(--cream) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.login-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" viewBox="0 0 1000 1000"><defs><pattern id="luxury-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="2" fill="rgba(212,175,55,0.1)"/><circle cx="75" cy="75" r="2" fill="rgba(184,134,11,0.1)"/><circle cx="50" cy="10" r="1" fill="rgba(212,175,55,0.1)"/><circle cx="10" cy="60" r="1" fill="rgba(184,134,11,0.1)"/><circle cx="90" cy="40" r="1" fill="rgba(212,175,55,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23luxury-pattern)"/></svg>');
    opacity: 0.5;
}

.login-container {
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(247,231,206,0.9));
    backdrop-filter: blur(20px);
    border: 2px solid rgba(212, 175, 55, 0.3);
    padding: 3.5rem;
    border-radius: 30px;
    box-shadow: 0 25px 50px var(--soft-shadow);
    width: 100%;
    max-width: 500px;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.login-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 35px 70px var(--deep-shadow);
    border-color: var(--gold);
}

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

.login-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    font-family: var(--heading-font);
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--gold), var(--bronze));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.login-logo i {
    margin-right: 15px;
    font-size: 3rem;
    background: linear-gradient(135deg, var(--gold), var(--bronze));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 4px rgba(212, 175, 55, 0.3));
}

.login-header h2 {
    font-family: var(--heading-font);
    font-size: 2rem;
    font-weight: 700;
    color: var(--rich-black);
    margin-bottom: 1rem;
    text-align: center;
}

.login-header p {
    color: var(--warm-black);
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 2rem;
}

.login-form .form-group {
    margin-bottom: 2rem;
}

.login-form label {
    display: block;
    margin-bottom: 1rem;
    color: var(--rich-black);
    font-weight: 700;
    font-size: 1.1rem;
    font-family: var(--heading-font);
}

.login-form input {
    width: 100%;
    padding: 1.2rem;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    font-size: 1.1rem;
    background: rgba(255,255,255,0.9);
    transition: all 0.3s ease;
    font-family: var(--body-font);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.1);
}

.login-form input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
    background: rgba(255,255,255,0.95);
}

.login-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--gold), var(--bronze));
    color: white;
    border: none;
    padding: 1.2rem 2rem;
    border-radius: 60px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 12px 40px var(--soft-shadow);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    margin-top: 1rem;
}

.login-btn::before {
    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;
}

.login-btn:hover::before {
    left: 100%;
}

.login-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px var(--deep-shadow);
}

.login-footer {
    text-align: center;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(212, 175, 55, 0.2);
    color: var(--warm-black);
    font-size: 1rem;
    line-height: 1.6;
}

.login-footer p {
    margin-bottom: 0.5rem;
}

.login-footer p:last-child {
    margin-bottom: 0;
    font-weight: 600;
}

/* Dashboard Section */
.dashboard-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--ivory) 0%, var(--champagne) 50%, var(--cream) 100%);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.dashboard-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" viewBox="0 0 1000 1000"><defs><pattern id="luxury-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="2" fill="rgba(212,175,55,0.1)"/><circle cx="75" cy="75" r="2" fill="rgba(184,134,11,0.1)"/><circle cx="50" cy="10" r="1" fill="rgba(212,175,55,0.1)"/><circle cx="10" cy="60" r="1" fill="rgba(184,134,11,0.1)"/><circle cx="90" cy="40" r="1" fill="rgba(212,175,55,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23luxury-pattern)"/></svg>');
    opacity: 0.3;
}

.dashboard-header {
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(247,231,206,0.9));
    backdrop-filter: blur(20px);
    border: 2px solid rgba(212, 175, 55, 0.3);
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 0 20px 40px var(--soft-shadow);
    margin-bottom: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.dashboard-header:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px var(--deep-shadow);
    border-color: var(--gold);
}

.user-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-avatar {
    background: linear-gradient(135deg, var(--gold), var(--bronze));
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 8px 25px var(--soft-shadow);
    border: 3px solid rgba(255,255,255,0.3);
    transition: all 0.4s ease;
}

.user-avatar:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px var(--deep-shadow);
}

.user-details h3 {
    font-family: var(--heading-font);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--rich-black);
    margin-bottom: 0.5rem;
}

.user-details p {
    color: var(--warm-black);
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
}

.status-control {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.status-label {
    color: var(--rich-black);
    font-weight: 600;
    font-size: 0.9rem;
}

.status-toggle {
    position: relative;
    display: inline-block;
}

.status-checkbox {
    display: none;
}

.status-slider {
    display: flex;
    align-items: center;
    width: 120px;
    height: 40px;
    background: #e0e0e0;
    border-radius: 25px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.status-slider::before {
    content: '';
    position: absolute;
    width: 36px;
    height: 36px;
    background: white;
    border-radius: 50%;
    top: 2px;
    left: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.status-checkbox:checked + .status-slider {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.status-checkbox:checked + .status-slider::before {
    transform: translateX(80px);
}

.status-text {
    position: absolute;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.status-text.active {
    left: 15px;
    color: #666;
}

.status-text.inactive {
    right: 15px;
    color: white;
}

.status-checkbox:checked ~ .status-text.active {
    color: white;
}

.status-checkbox:checked ~ .status-text.inactive {
    color: #666;
}

.logout-btn {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.logout-btn::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;
}

.logout-btn:hover::before {
    left: 100%;
}

.logout-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(220, 53, 69, 0.4);
}

/* Productivity Overview */
.productivity-overview {
    margin-bottom: 3rem;
}

.productivity-overview h2 {
    color: var(--rich-black);
    margin-bottom: 2rem;
    text-shadow: 0 2px 4px rgba(212, 175, 55, 0.1);
}

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

.productivity-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(247,231,206,0.9));
    backdrop-filter: blur(20px);
    border: 2px solid rgba(212, 175, 55, 0.3);
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 0 20px 40px var(--soft-shadow);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.productivity-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px var(--deep-shadow);
    border-color: var(--gold);
}

.card-icon {
    background: linear-gradient(135deg, var(--gold), var(--bronze));
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 8px 25px var(--soft-shadow);
    border: 3px solid rgba(255,255,255,0.3);
    transition: all 0.4s ease;
}

.card-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px var(--deep-shadow);
}

.card-content h3 {
    font-family: var(--heading-font);
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--rich-black);
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--gold), var(--bronze));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.card-content p {
    color: var(--warm-black);
    font-weight: 600;
    font-size: 1rem;
}

/* Candidate Section */
.candidate-section {
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(247,231,206,0.9));
    backdrop-filter: blur(20px);
    border: 2px solid rgba(212, 175, 55, 0.3);
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 0 20px 40px var(--soft-shadow);
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.candidate-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px var(--deep-shadow);
    border-color: var(--gold);
}

.candidate-section .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.candidate-section .section-header h2 {
    color: var(--rich-black);
    margin: 0;
}

.add-candidate-btn {
    background: linear-gradient(135deg, var(--gold), var(--bronze));
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 25px var(--soft-shadow);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.add-candidate-btn::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;
}

.add-candidate-btn:hover::before {
    left: 100%;
}

.add-candidate-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px var(--deep-shadow);
}

.candidate-filters {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.search-input, .filter-select {
    padding: 1rem;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    font-size: 1rem;
    background: rgba(255,255,255,0.8);
    transition: all 0.3s ease;
    font-family: var(--body-font);
}

.search-input {
    flex: 1;
    min-width: 200px;
}

.search-input:focus, .filter-select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
    background: rgba(255,255,255,0.95);
}

.candidates-table-container {
    overflow-x: auto;
}

.candidates-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.candidates-table th,
.candidates-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.candidates-table th {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(184, 134, 11, 0.1));
    font-weight: 700;
    color: var(--rich-black);
    font-family: var(--heading-font);
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

.candidates-table tr:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), rgba(184, 134, 11, 0.05));
    transform: scale(1.01);
    transition: all 0.3s ease;
}

.status-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: capitalize;
}

.status-badge.contacted {
    background: #fff3cd;
    color: #856404;
}

.status-badge.shortlisted {
    background: #d1ecf1;
    color: #0c5460;
}

.status-badge.interviewed {
    background: #d4edda;
    color: #155724;
}

.status-badge.placed {
    background: #c3e6cb;
    color: #155724;
}

.action-buttons {
    display: flex;
    gap: 8px;
}

.btn-edit, .btn-delete {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn-edit {
    background: linear-gradient(135deg, #28a745, #218838);
    color: white;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.btn-delete {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.btn-edit::before, .btn-delete::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;
}

.btn-edit:hover::before, .btn-delete:hover::before {
    left: 100%;
}

.btn-edit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
}

.btn-delete:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
}

/* Activity Section */
.activity-section {
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(247,231,206,0.9));
    backdrop-filter: blur(20px);
    border: 2px solid rgba(212, 175, 55, 0.3);
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 0 20px 40px var(--soft-shadow);
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.activity-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px var(--deep-shadow);
    border-color: var(--gold);
}

.activity-section h2 {
    color: var(--rich-black);
    margin-bottom: 2rem;
    text-shadow: 0 2px 4px rgba(212, 175, 55, 0.1);
}

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

.activity-input textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    font-size: 1rem;
    resize: vertical;
    background: rgba(255,255,255,0.8);
    transition: all 0.3s ease;
    font-family: var(--body-font);
}

.activity-input textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
    background: rgba(255,255,255,0.95);
}

.add-activity-btn {
    background: linear-gradient(135deg, var(--gold), var(--bronze));
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 1rem;
    box-shadow: 0 8px 25px var(--soft-shadow);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.add-activity-btn::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;
}

.add-activity-btn:hover::before {
    left: 100%;
}

.add-activity-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px var(--deep-shadow);
}

.activity-list {
    max-height: 400px;
    overflow-y: auto;
}

.activity-item {
    background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(247,231,206,0.8));
    backdrop-filter: blur(10px);
    border: 2px solid rgba(212, 175, 55, 0.2);
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 1rem;
    border-left: 4px solid var(--gold);
    transition: all 0.3s ease;
}

.activity-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px var(--soft-shadow);
    border-color: var(--gold);
}

.activity-item .activity-time {
    color: #666;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.activity-item .activity-text {
    color: var(--rich-black);
    line-height: 1.5;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
    backdrop-filter: blur(15px);
    animation: modalFadeIn 0.4s ease;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: linear-gradient(135deg, rgba(255,255,255,0.98), rgba(247,231,206,0.95));
    backdrop-filter: blur(25px);
    margin: 2% auto;
    padding: 3rem;
    border: 3px solid rgba(212, 175, 55, 0.4);
    border-radius: 25px;
    width: 90%;
    max-width: 700px;
    position: relative;
    animation: modalSlideIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 30px 80px var(--deep-shadow);
    max-height: 90vh;
    overflow-y: auto;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 2rem;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: var(--gold);
}

.modal h2 {
    margin-bottom: 2rem;
    color: var(--rich-black);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--rich-black);
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 18px;
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    color: var(--rich-black);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 1rem 2rem;
    border-radius: 10px;
    color: white;
    font-weight: 600;
    z-index: 3000;
    animation: slideIn 0.3s ease;
    max-width: 400px;
}

.notification.success {
    background: linear-gradient(135deg, #28a745, #20c997);
}

.notification.error {
    background: linear-gradient(135deg, #dc3545, #c82333);
}

.notification.warning {
    background: linear-gradient(135deg, #ffc107, #e0a800);
}

.notification.info {
    background: linear-gradient(135deg, #17a2b8, #138496);
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Additional Responsive Styles */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta h2 {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .activity-container {
        grid-template-columns: 1fr;
    }
    
    .dashboard-header {
        flex-direction: column;
        text-align: center;
    }
    
    .candidate-filters {
        flex-direction: column;
    }
    
    .search-input {
        min-width: auto;
    }
}

/* Particle Effects */
.particle {
    position: absolute;
    background: linear-gradient(135deg, var(--gold), var(--bronze));
    border-radius: 50%;
    pointer-events: none;
    animation: particleFloat linear infinite;
    opacity: 0.6;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

#particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

/* Jobs Page Styles */
.jobs-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--ivory) 0%, var(--champagne) 50%, var(--cream) 100%);
    position: relative;
    overflow: hidden;
}

.jobs-hero::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" viewBox="0 0 1000 1000"><defs><radialGradient id="gold1" cx="30%" cy="30%" r="40%"><stop offset="0%" style="stop-color:rgba(212,175,55,0.1);stop-opacity:1" /><stop offset="100%" style="stop-color:rgba(212,175,55,0);stop-opacity:0" /></radialGradient></defs><circle cx="300" cy="300" r="400" fill="url(%23gold1)"/><circle cx="700" cy="200" r="350" fill="url(%23gold1)"/></svg>');
}

.jobs-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

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

.jobs-hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 900;
    color: var(--rich-black);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.jobs-hero-content p {
    font-size: 1.3rem;
    color: var(--warm-black);
    margin-bottom: 3rem;
    line-height: 1.7;
}

.jobs-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.jobs-section {
    padding: 6rem 0;
    background: var(--cream);
}

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

.jobs-filters {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.jobs-filters .search-input {
    min-width: 300px;
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.job-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(255,248,231,0.9));
    backdrop-filter: blur(20px);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.job-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--bronze), var(--gold));
}

.job-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px var(--deep-shadow);
    border-color: var(--gold);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.job-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--rich-black);
    margin-bottom: 0.5rem;
}

.job-department {
    background: linear-gradient(135deg, var(--gold), var(--bronze));
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.job-details {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.job-detail {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--warm-black);
    font-size: 0.9rem;
}

.job-detail i {
    color: var(--gold);
    font-size: 1rem;
}

.job-description {
    color: var(--warm-black);
    line-height: 1.6;
    margin-bottom: 2rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.job-requirements {
    margin-bottom: 2rem;
}

.job-requirements h4 {
    color: var(--rich-black);
    font-weight: 600;
    margin-bottom: 1rem;
}

.job-requirements ul {
    list-style: none;
    padding: 0;
}

.job-requirements li {
    color: var(--warm-black);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.job-requirements li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

.job-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.apply-btn {
    background: linear-gradient(135deg, var(--gold), var(--bronze));
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.apply-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.view-jd-btn {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.view-jd-btn:hover {
    background: var(--gold);
    color: white;
    transform: translateY(-2px);
}

.job-type-badge {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

/* About Us Page Styles */
.about-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--ivory) 0%, var(--champagne) 50%, var(--cream) 100%);
    position: relative;
    overflow: hidden;
}

.about-hero::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" viewBox="0 0 1000 1000"><defs><radialGradient id="gold1" cx="30%" cy="30%" r="40%"><stop offset="0%" style="stop-color:rgba(212,175,55,0.1);stop-opacity:1" /><stop offset="100%" style="stop-color:rgba(212,175,55,0);stop-opacity:0" /></radialGradient></defs><circle cx="300" cy="300" r="400" fill="url(%23gold1)"/><circle cx="700" cy="200" r="350" fill="url(%23gold1)"/></svg>');
}

.about-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

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

.about-hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--rich-black);
    margin-bottom: 1.2rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--warm-black);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.about-section {
    padding: 6rem 0;
    background: var(--cream);
}

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

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

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--rich-black);
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1rem;
    color: var(--warm-black);
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

.about-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.about-badge i {
    font-size: 1.5rem;
    color: var(--gold);
}

.about-badge span {
    font-weight: 600;
    color: var(--rich-black);
}

.about-visual {
    position: relative;
    height: 500px;
}

.floating-card {
    position: absolute;
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(247,231,206,0.9));
    backdrop-filter: blur(20px);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 20px 40px var(--soft-shadow);
    animation: float 6s ease-in-out infinite;
}

.floating-card i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.floating-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--rich-black);
    margin-bottom: 0.5rem;
}

.floating-card p {
    color: var(--warm-black);
    font-size: 0.9rem;
}

.card-1 { top: 10%; right: 10%; animation-delay: 0s; }
.card-2 { top: 50%; right: 30%; animation-delay: 2s; }
.card-3 { bottom: 10%; right: 5%; animation-delay: 4s; }

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

.services-overview {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--ivory) 0%, var(--champagne) 50%, var(--cream) 100%);
}

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

.clients-section {
    padding: 6rem 0;
    background: var(--cream);
}

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

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

.client-category {
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(247,231,206,0.9));
    backdrop-filter: blur(20px);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s ease;
}

.client-category:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px var(--deep-shadow);
    border-color: var(--gold);
}

.client-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold), var(--bronze));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.client-icon i {
    font-size: 2rem;
    color: white;
}

.client-category h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--rich-black);
}

.why-choose-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--ivory) 0%, var(--champagne) 50%, var(--cream) 100%);
}

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

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

.feature-item {
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(247,231,206,0.9));
    backdrop-filter: blur(20px);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px var(--deep-shadow);
    border-color: var(--gold);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gold), var(--bronze));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 1.8rem;
    color: white;
}

.feature-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--rich-black);
    margin-bottom: 1rem;
}

.feature-item p {
    color: var(--warm-black);
    line-height: 1.6;
}

.presence-section {
    padding: 6rem 0;
    background: var(--cream);
}

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

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.city-item {
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(247,231,206,0.9));
    backdrop-filter: blur(20px);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.city-item:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 15px 30px var(--soft-shadow);
}

.city-item i {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.city-item span {
    font-weight: 600;
    color: var(--rich-black);
}

.hiring-models {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.model-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(247,231,206,0.9));
    backdrop-filter: blur(20px);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
}

.model-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px var(--deep-shadow);
    border-color: var(--gold);
}

.model-card i {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.model-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--rich-black);
    margin-bottom: 1rem;
}

.model-card p {
    color: var(--warm-black);
    line-height: 1.6;
}

.ethos-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--ivory) 0%, var(--champagne) 50%, var(--cream) 100%);
}

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

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

.ethos-item {
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(247,231,206,0.9));
    backdrop-filter: blur(20px);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
}

.ethos-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px var(--deep-shadow);
    border-color: var(--gold);
}

.ethos-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gold), var(--bronze));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.ethos-icon i {
    font-size: 1.8rem;
    color: white;
}

.ethos-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--rich-black);
    margin-bottom: 1rem;
}

.ethos-item p {
    color: var(--warm-black);
    line-height: 1.6;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(247,231,206,0.9));
    backdrop-filter: blur(20px);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 15px 30px var(--soft-shadow);
}

.contact-item i {
    font-size: 2rem;
    color: var(--gold);
}

.contact-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--rich-black);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--warm-black);
    font-size: 1.1rem;
}

/* Services Page Styles */
.services-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--ivory) 0%, var(--champagne) 50%, var(--cream) 100%);
    position: relative;
    overflow: hidden;
}

.services-hero::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" viewBox="0 0 1000 1000"><defs><radialGradient id="gold1" cx="30%" cy="30%" r="40%"><stop offset="0%" style="stop-color:rgba(212,175,55,0.1);stop-opacity:1" /><stop offset="100%" style="stop-color:rgba(212,175,55,0);stop-opacity:0" /></radialGradient></defs><circle cx="300" cy="300" r="400" fill="url(%23gold1)"/><circle cx="700" cy="200" r="350" fill="url(%23gold1)"/></svg>');
}

.services-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

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

.services-hero-content h1 {
    font-family: var(--heading-font);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--rich-black);
    margin-bottom: 1.2rem;
    line-height: 1.1;
}

.core-services {
    padding: 6rem 0;
    background: var(--cream);
}

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

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

.core-service-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(247,231,206,0.9));
    backdrop-filter: blur(20px);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 25px;
    padding: 3rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.core-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--bronze), var(--gold));
}

.core-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px var(--deep-shadow);
    border-color: var(--gold);
}

.core-service-card .service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold), var(--bronze));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    color: white;
}

.core-service-card h3 {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--rich-black);
    margin-bottom: 1rem;
    text-align: center;
}

.core-service-card p {
    color: var(--warm-black);
    line-height: 1.6;
    margin-bottom: 2rem;
    text-align: center;
}

.core-service-card .service-features {
    list-style: none;
    padding: 0;
}

.core-service-card .service-features li {
    padding: 0.5rem 0;
    color: var(--warm-black);
    position: relative;
    padding-left: 1.5rem;
}

.core-service-card .service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

.additional-services {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--ivory) 0%, var(--champagne) 50%, var(--cream) 100%);
}

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

.additional-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.additional-service-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(247,231,206,0.9));
    backdrop-filter: blur(20px);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
}

.additional-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px var(--deep-shadow);
    border-color: var(--gold);
}

.additional-service-card .service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gold), var(--bronze));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: white;
}

.additional-service-card h3 {
    font-family: var(--heading-font);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--rich-black);
    margin-bottom: 1rem;
}

.additional-service-card p {
    color: var(--warm-black);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-link {
    margin-top: 1rem;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--gold), var(--bronze));
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px var(--soft-shadow);
}

.quick-links {
    padding: 6rem 0;
    background: var(--cream);
}

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

.social-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.social-link-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(247,231,206,0.9));
    backdrop-filter: blur(20px);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s ease;
    text-decoration: none;
    color: inherit;
}

.social-link-card:hover:not(.disabled) {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px var(--deep-shadow);
    border-color: var(--gold);
}

.social-link-card.disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.social-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold), var(--bronze));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
}

.social-link-card h4 {
    font-family: var(--heading-font);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--rich-black);
    margin-bottom: 0.5rem;
}

.social-link-card p {
    color: var(--warm-black);
    font-size: 0.9rem;
}

/* Contact Page Styles */
.contact-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--ivory) 0%, var(--champagne) 50%, var(--cream) 100%);
    position: relative;
    overflow: hidden;
}

.contact-hero::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" viewBox="0 0 1000 1000"><defs><radialGradient id="gold1" cx="30%" cy="30%" r="40%"><stop offset="0%" style="stop-color:rgba(212,175,55,0.1);stop-opacity:1" /><stop offset="100%" style="stop-color:rgba(212,175,55,0);stop-opacity:0" /></radialGradient></defs><circle cx="300" cy="300" r="400" fill="url(%23gold1)"/><circle cx="700" cy="200" r="350" fill="url(%23gold1)"/></svg>');
}

.contact-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

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

.contact-hero-content h1 {
    font-family: var(--heading-font);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--rich-black);
    margin-bottom: 1.2rem;
    line-height: 1.1;
}

.contact-info-section {
    padding: 6rem 0;
    background: var(--cream);
}

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

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-info-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(247,231,206,0.9));
    backdrop-filter: blur(20px);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s ease;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px var(--deep-shadow);
    border-color: var(--gold);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gold), var(--bronze));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: white;
}

.contact-info-card h3 {
    font-family: var(--heading-font);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--rich-black);
    margin-bottom: 1rem;
}

.contact-info-card p {
    color: var(--warm-black);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-note {
    color: var(--warm-black);
    font-size: 0.9rem;
    opacity: 0.8;
}

.map-application-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--ivory) 0%, var(--champagne) 50%, var(--cream) 100%);
}

.map-application-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.map-section h2 {
    font-family: var(--heading-font);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--rich-black);
    margin-bottom: 2rem;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px var(--soft-shadow);
}

.application-section h2 {
    font-family: var(--heading-font);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--rich-black);
    margin-bottom: 1rem;
}

.application-section p {
    color: var(--warm-black);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.application-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.tab-btn {
    background: rgba(255,255,255,0.8);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 25px;
    padding: 1rem 2rem;
    font-weight: 600;
    color: var(--warm-black);
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active {
    background: linear-gradient(135deg, var(--gold), var(--bronze));
    color: white;
    border-color: var(--gold);
}

.tab-btn:hover {
    border-color: var(--gold);
}

.application-form {
    display: none;
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(247,231,206,0.9));
    backdrop-filter: blur(20px);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
}

.application-form.active {
    display: block;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--rich-black);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    background: rgba(255,255,255,0.8);
    font-family: var(--body-font);
    transition: all 0.3s ease;
}

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

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--gold), var(--bronze));
    color: white;
    border: none;
    border-radius: 25px;
    padding: 1rem 2rem;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px var(--soft-shadow);
}

.faq-section {
    padding: 6rem 0;
    background: var(--cream);
}

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

.faq-grid {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(247,231,206,0.9));
    backdrop-filter: blur(20px);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    padding: 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(212, 175, 55, 0.05);
}

.faq-question h4 {
    font-family: var(--heading-font);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--rich-black);
    margin: 0;
}

.faq-question i {
    color: var(--gold);
    transition: transform 0.3s ease;
}

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

.faq-answer p {
    padding: 0 2rem 2rem;
    color: var(--warm-black);
    line-height: 1.6;
    margin: 0;
}

/* Transformation Modal Styles */
.transformation-modal {
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
}

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

.modal-header h2 {
    font-family: var(--heading-font);
    font-size: 2rem;
    font-weight: 700;
    color: var(--rich-black);
    margin-bottom: 0.5rem;
}

.modal-header p {
    color: var(--warm-black);
    font-size: 1rem;
}

.user-type-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.user-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.8);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 100px;
}

.user-tab.active {
    background: linear-gradient(135deg, var(--gold), var(--bronze));
    color: white;
    border-color: var(--gold);
}

.user-tab:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
}

.user-tab i {
    font-size: 1.5rem;
}

.user-tab span {
    font-weight: 600;
    font-size: 0.9rem;
}

.transformation-form {
    display: none;
}

.transformation-form.active {
    display: block;
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }
    
    .section-header h2 {
        font-size: 3rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
    
    .core-services-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
}

@media (max-width: 768px) {
    /* Navigation */
    .nav-container {
        padding: 0 0.8rem;
        height: 45px;
    }
    
    .logo {
        font-size: 1rem;
    }
    
    .logo-img {
        width: 20px;
        height: 20px;
    }
    
    .nav-links {
        position: fixed;
        top: 45px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 45px);
        background: rgba(255, 248, 231, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 1.2rem;
        gap: 1rem;
        transition: left 0.3s ease;
        z-index: 999;
        font-size: 0.7rem;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
        transform: scale(0.7);
    }
    
    /* Hero Section */
    .hero-content h1 {
        font-size: 0.9rem !important;
        line-height: 1.1;
        margin-bottom: 0.8rem;
        font-weight: 700;
    }
    
    .hero-content p {
        font-size: 0.65rem;
        line-height: 1.3;
        margin-bottom: 0.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.5rem;
        margin-bottom: 1rem;
    }
    
    .btn-luxury, .btn-outline {
        width: 100%;
        padding: 0.5rem 1rem;
        font-size: 0.65rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 0.6rem;
        margin-top: 0.8rem;
    }
    
    .stat-item {
        text-align: center;
    }
    
    .stat-number {
        font-size: 1rem;
    }
    
    .stat-label {
        font-size: 0.55rem;
    }
    
    /* Hero Visual */
    .hero-visual {
        display: none;
    }
    
    /* Section Headers */
    .section-header h2 {
        font-size: 1rem;
        line-height: 1.1;
        margin-bottom: 0.4rem;
    }
    
    .section-header p {
        font-size: 0.65rem;
        line-height: 1.3;
    }
    
    /* About Section */
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-text h3 {
        font-size: 1.5rem;
    }
    
    .about-text p {
        font-size: 0.85rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .luxury-feature {
        padding: 1.5rem;
    }
    
    .luxury-feature h4 {
        font-size: 1.2rem;
    }
    
    .luxury-feature p {
        font-size: 0.8rem;
    }
    
    /* Services Section */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
    
    .service-card p {
        font-size: 0.8rem;
    }
    
    .service-features li {
        font-size: 0.75rem;
    }
    
    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-text {
        font-size: 0.85rem;
    }
    
    .author-info h5 {
        font-size: 0.9rem;
    }
    
    .author-info span {
        font-size: 0.75rem;
    }
    
    /* CTA Section */
    .cta h2 {
        font-size: 1.8rem;
    }
    
    .cta p {
        font-size: 0.85rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .btn-white, .btn-transparent {
        width: 100%;
        padding: 0.8rem 1.5rem;
        font-size: 0.85rem;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    /* Jobs Page */
    .jobs-hero-content h1 {
        font-size: 1.8rem;
    }
    
    .jobs-filters {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .jobs-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .job-card {
        padding: 1rem;
    }
    
    .job-title {
        font-size: 1.1rem;
    }
    
    .job-description {
        font-size: 0.8rem;
    }
    
    /* About Page */
    .about-hero-content h1 {
        font-size: 0.9rem !important;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-text h2 {
        font-size: 1.5rem;
    }
    
    .about-text p {
        font-size: 0.85rem;
    }
    
    .clients-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
    
    .client-category h4 {
        font-size: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .feature-item h4 {
        font-size: 1.1rem;
    }
    
    .feature-item p {
        font-size: 0.8rem;
    }
    
    .cities-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    }
    
    .city-item span {
        font-size: 0.8rem;
    }
    
    .ethos-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .ethos-item h4 {
        font-size: 1.1rem;
    }
    
    .ethos-item p {
        font-size: 0.8rem;
    }
    
    /* Services Page */
    .services-hero-content h1 {
        font-size: 0.9rem !important;
    }
    
    .core-services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .core-service-card {
        padding: 1.5rem;
    }
    
    .core-service-card h3 {
        font-size: 1.2rem;
    }
    
    .core-service-card p {
        font-size: 0.8rem;
    }
    
    .additional-services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .additional-service-card h3 {
        font-size: 1.1rem;
    }
    
    .additional-service-card p {
        font-size: 0.8rem;
    }
    
    .social-links-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .social-link-card h4 {
        font-size: 1rem;
    }
    
    .social-link-card p {
        font-size: 0.75rem;
    }
    
    /* Contact Page */
    .contact-hero-content h1 {
        font-size: 0.9rem !important;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-info-card h3 {
        font-size: 1rem;
    }
    
    .contact-info-card p {
        font-size: 0.85rem;
    }
    
    .map-application-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .map-section h2 {
        font-size: 1.5rem;
    }
    
    .application-section h2 {
        font-size: 1.5rem;
    }
    
    .application-section p {
        font-size: 0.85rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .application-tabs {
        flex-direction: column;
    }
    
    .user-type-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .user-tab {
        width: 100%;
        max-width: 150px;
    }
    
    /* Modal */
    .transformation-modal {
        margin: 1rem;
        max-width: calc(100vw - 2rem);
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
    
    .modal-header p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 0.5rem;
        height: 40px;
    }
    
    .logo {
        font-size: 0.8rem;
    }
    
    .logo-img {
        width: 18px;
        height: 18px;
    }
    
    .hero-content h1 {
        font-size: 0.8rem !important;
        margin-bottom: 0.4rem;
        line-height: 1.1;
        font-weight: 700;
    }
    
    .hero-content p {
        font-size: 0.55rem;
        margin-bottom: 0.6rem;
        line-height: 1.2;
    }
    
    .section-header h2 {
        font-size: 0.9rem;
        margin-bottom: 0.3rem;
        line-height: 1.1;
    }
    
    .section-header p {
        font-size: 0.55rem;
        line-height: 1.2;
    }
    
    .stat-number {
        font-size: 0.9rem;
    }
    
    .stat-label {
        font-size: 0.5rem;
    }
    
    .service-card, .testimonial-card, .luxury-feature {
        padding: 0.8rem;
        gap: 0.5rem;
    }
    
    .btn-luxury, .btn-outline, .btn-white, .btn-transparent {
        padding: 0.5rem 1rem;
        font-size: 0.7rem;
    }
    
    .about-hero-content h1,
    .services-hero-content h1,
    .contact-hero-content h1 {
        font-size: 0.8rem !important;
    }
    
    .about-text h2 {
        font-size: 1.1rem;
    }
    
    .about-text h3 {
        font-size: 1rem;
    }
    
    .about-text p {
        font-size: 0.65rem;
        line-height: 1.3;
    }
    
    .core-service-card,
    .additional-service-card {
        padding: 0.8rem;
        gap: 0.5rem;
    }
    
    .core-service-card h3 {
        font-size: 0.9rem;
    }
    
    .core-service-card p {
        font-size: 0.65rem;
        line-height: 1.3;
    }
    
    .contact-info-card {
        padding: 0.8rem;
    }
    
    .contact-info-card h3 {
        font-size: 0.8rem;
    }
    
    .contact-info-card p {
        font-size: 0.65rem;
    }
    
    .application-form {
        padding: 0.8rem;
    }
    
    .transformation-modal {
        margin: 0.4rem;
        max-width: calc(100vw - 0.8rem);
    }
    
    .modal-header h2 {
        font-size: 1.1rem;
    }
    
    .modal-header p {
        font-size: 0.65rem;
    }
    
    .user-tab {
        padding: 0.5rem;
        min-width: 60px;
    }
    
    .user-tab i {
        font-size: 0.9rem;
    }
    
    .user-tab span {
        font-size: 0.6rem;
    }
    
    .form-group label {
        font-size: 0.7rem;
        margin-bottom: 0.3rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 0.7rem;
        padding: 0.6rem;
    }
    
    .submit-btn {
        font-size: 0.7rem;
        padding: 0.6rem 1.2rem;
    }
    
    /* Additional size reductions */
    .service-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .feature-icon,
    .contact-icon,
    .social-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .service-features li {
        font-size: 0.65rem;
        padding: 0.3rem 0;
        padding-left: 1rem;
    }
    
    .service-features li::before {
        font-size: 0.7rem;
    }
    
    .testimonial-text {
        font-size: 0.65rem;
        line-height: 1.3;
    }
    
    .author-info h5 {
        font-size: 0.7rem;
    }
    
    .author-info span {
        font-size: 0.6rem;
    }
    
    .footer-brand h3 {
        font-size: 1.1rem;
    }
    
    .footer-brand p {
        font-size: 0.65rem;
        line-height: 1.3;
    }
    
    .footer-section h4 {
        font-size: 0.8rem;
    }
    
    .footer-section ul li a {
        font-size: 0.65rem;
    }
    
    .footer-bottom p {
        font-size: 0.6rem;
    }
    
    /* Admin Dashboard Styles */
.admin-layout {
    display: flex !important;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--ivory) 0%, var(--champagne) 50%, var(--cream) 100%);
    position: relative;
    z-index: 1;
}

/* Sidebar Styles */
.admin-sidebar {
    width: 280px;
    background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(247,231,206,0.9));
    backdrop-filter: blur(20px);
    border-right: 2px solid rgba(212, 175, 55, 0.3);
    display: flex;
    flex-direction: column;
    box-shadow: 5px 0 20px rgba(0,0,0,0.1);
}

.sidebar-header {
    padding: 2rem 1.5rem;
    border-bottom: 2px solid rgba(212, 175, 55, 0.2);
}

.admin-profile {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.admin-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold), var(--bronze));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.admin-info h3 {
    font-family: var(--heading-font);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.2rem;
}

.admin-info p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.sidebar-nav {
    flex: 1;
    padding: 1.5rem 0;
}

.nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-item {
    margin-bottom: 0.5rem;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 0 25px 25px 0;
    margin-right: 1rem;
}

.nav-link:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    transform: translateX(5px);
}

.nav-item.active .nav-link {
    background: linear-gradient(135deg, var(--gold), var(--bronze));
    color: white;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.nav-link i {
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.sidebar-footer {
    padding: 1.5rem;
    border-top: 2px solid rgba(212, 175, 55, 0.2);
}

.logout-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, #f44336, #d32f2f);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.logout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(244, 67, 54, 0.3);
}

/* Main Content Styles */
.admin-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.admin-header {
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(247,231,206,0.9));
    backdrop-filter: blur(20px);
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.header-left h1 {
    font-family: var(--heading-font);
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--gold), var(--bronze));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.header-left p {
    color: var(--text-secondary);
    font-size: 1rem;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.btn-notification {
    position: relative;
    background: transparent;
    border: none;
    font-size: 1.2rem;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-notification:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
}

.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #f44336;
    color: white;
    font-size: 0.7rem;
    padding: 0.2rem 0.4rem;
    border-radius: 10px;
    font-weight: 600;
}

.date-time {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.date-time span:first-child {
    font-weight: 600;
    color: var(--text-primary);
}

/* Content Sections */
.content-section {
    display: none;
    flex: 1;
    padding: 2rem;
    overflow-y: auto;
}

.content-section.active {
    display: block;
}

/* Dashboard Grid */
.dashboard-grid {
    display: grid;
    gap: 2rem;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.stat-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(247,231,206,0.9));
    backdrop-filter: blur(20px);
    border: 2px solid rgba(212, 175, 55, 0.3);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px var(--soft-shadow);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--gold), var(--bronze));
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px var(--soft-shadow);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold), var(--bronze));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.stat-content h3 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-content p {
    color: var(--text-secondary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.stat-change {
    font-size: 0.8rem;
    font-weight: 600;
}

.stat-change.positive {
    color: #4caf50;
}

.stat-change.negative {
    color: #f44336;
}

/* Quick Actions */
.quick-actions {
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(247,231,206,0.9));
    backdrop-filter: blur(20px);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 35px var(--soft-shadow);
}

.quick-actions h2 {
    font-family: var(--heading-font);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.action-card {
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.action-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px var(--soft-shadow);
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.95);
}

.action-card i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.action-card h3 {
    font-family: var(--heading-font);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.action-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Recent Activity */
.recent-activity {
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(247,231,206,0.9));
    backdrop-filter: blur(20px);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 35px var(--soft-shadow);
}

.recent-activity h2 {
    font-family: var(--heading-font);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.activity-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.activity-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--gold), var(--bronze));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
}

.activity-content p {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.2rem;
}

.activity-time {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Section Headers */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(212, 175, 55, 0.2);
}

.header-content h2 {
    font-family: var(--heading-font);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.header-content p {
    color: var(--text-secondary);
    font-size: 1rem;
}

.header-actions {
    display: flex;
    gap: 1rem;
}

/* Content Cards */
.content-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(247,231,206,0.9));
    backdrop-filter: blur(20px);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    box-shadow: 0 15px 35px var(--soft-shadow);
    overflow: hidden;
}

.card-header {
    padding: 1.5rem 2rem;
    border-bottom: 2px solid rgba(212, 175, 55, 0.2);
    background: rgba(255, 255, 255, 0.5);
}

/* Filters */
.filters {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.search-box {
    position: relative;
    flex: 1;
    min-width: 250px;
}

.search-box i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
}

.search-box input {
    width: 100%;
    padding: 0.8rem 1rem 0.8rem 2.5rem;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-box input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.filter-select {
    padding: 0.8rem 1rem;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    transition: all 0.3s ease;
    min-width: 150px;
}

.filter-select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

/* Table Styles */
.table-container {
    overflow-x: auto;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.95);
}

.data-table th {
    background: linear-gradient(135deg, var(--gold), var(--bronze));
    color: white;
    padding: 1.2rem 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.data-table td {
    padding: 1.2rem 1rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    color: var(--text-primary);
    vertical-align: middle;
}

.data-table tr:hover {
    background: rgba(212, 175, 55, 0.05);
}

.employee-info {
    display: flex;
    flex-direction: column;
}

.employee-name {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.2rem;
}

.employee-email {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.employee-id {
    font-weight: 600;
    color: var(--gold);
    font-family: 'Courier New', monospace;
}

.department-badge {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-badge {
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.active {
    background: rgba(76, 175, 80, 0.1);
    color: #4caf50;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.status-badge.inactive {
    background: rgba(244, 67, 54, 0.1);
    color: #f44336;
    border: 1px solid rgba(244, 67, 54, 0.3);
}

.action-buttons {
    display: flex;
    gap: 0.5rem;
}

.btn-icon {
    background: transparent;
    border: none;
    padding: 0.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-secondary);
}

.btn-icon:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    transform: scale(1.1);
}

/* Department Grid */
.departments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
}

.department-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(247,231,206,0.9));
    backdrop-filter: blur(20px);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px var(--soft-shadow);
}

.department-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px var(--soft-shadow);
    border-color: var(--gold);
}

.department-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.department-info h3 {
    font-family: var(--heading-font);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.employee-count {
    background: linear-gradient(135deg, var(--gold), var(--bronze));
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
}

.department-actions {
    display: flex;
    gap: 0.5rem;
}

.department-content {
    margin-bottom: 1rem;
}

.department-content p {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.department-content strong {
    color: var(--text-primary);
}

.department-footer {
    display: flex;
    justify-content: flex-end;
}

/* Reports Grid */
.reports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
}

.report-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(247,231,206,0.9));
    backdrop-filter: blur(20px);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 10px 25px var(--soft-shadow);
}

.report-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.report-header h3 {
    font-family: var(--heading-font);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
}

.report-header i {
    font-size: 1.5rem;
    color: var(--gold);
}

.chart-placeholder {
    height: 200px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    border: 2px dashed rgba(212, 175, 55, 0.3);
}

.chart-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--gold);
    opacity: 0.5;
}

/* Settings Grid */
.settings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.settings-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(247,231,206,0.9));
    backdrop-filter: blur(20px);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 10px 25px var(--soft-shadow);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(212, 175, 55, 0.2);
}

.card-header h3 {
    font-family: var(--heading-font);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
}

.card-header i {
    font-size: 1.5rem;
    color: var(--gold);
}

.settings-form .form-group {
    margin-bottom: 1.5rem;
}

.settings-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

.form-input {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(212, 175, 55, 0.2);
}

/* Toggle Switch */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-switch label {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 24px;
}

.toggle-switch label:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

.toggle-switch input:checked + label {
    background: linear-gradient(135deg, var(--gold), var(--bronze));
}

.toggle-switch input:checked + label:before {
    transform: translateX(26px);
}

/* Empty State Styles */
.empty-state {
    text-align: center;
    padding: 3rem 2rem;
    color: var(--text-secondary);
}

.empty-state i {
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 1rem;
    opacity: 0.5;
}

.empty-state h3 {
    font-family: var(--heading-font);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.empty-state p {
    font-size: 1rem;
    margin-bottom: 2rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.empty-state-cell {
    text-align: center;
    padding: 3rem 2rem !important;
}

.empty-state-cell .empty-state {
    padding: 0;
}

/* Admin Dashboard Mobile Styles */
@media (max-width: 1024px) {
    .admin-sidebar {
        width: 250px;
    }
    
    .nav-link {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
    
    .nav-link i {
        font-size: 1rem;
    }
    
    .stats-row {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .actions-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .departments-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .reports-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .settings-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .admin-layout {
        flex-direction: column;
    }
    
    .admin-sidebar {
        width: 100%;
        height: auto;
        border-right: none;
        border-bottom: 2px solid rgba(212, 175, 55, 0.3);
    }
    
    .sidebar-header {
        padding: 1rem;
    }
    
    .sidebar-nav {
        padding: 0;
    }
    
    .nav-menu {
        display: flex;
        overflow-x: auto;
        padding: 0 1rem;
        gap: 0.5rem;
    }
    
    .nav-item {
        margin-bottom: 0;
        flex-shrink: 0;
    }
    
    .nav-link {
        flex-direction: column;
        padding: 0.8rem;
        border-radius: 12px;
        margin-right: 0;
        text-align: center;
        min-width: 80px;
    }
    
    .nav-link span {
        font-size: 0.7rem;
        margin-top: 0.3rem;
    }
    
    .sidebar-footer {
        padding: 1rem;
    }
    
    .admin-header {
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .header-left h1 {
        font-size: 1.5rem;
    }
    
    .header-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .content-section {
        padding: 1rem;
    }
    
    .stats-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-card {
        padding: 1.5rem;
    }
    
    .stat-content h3 {
        font-size: 2rem;
    }
    
    .actions-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .header-content h2 {
        font-size: 1.5rem;
    }
    
    .filters {
        flex-direction: column;
        gap: 1rem;
    }
    
    .search-box {
        min-width: auto;
    }
    
    .filter-select {
        min-width: auto;
    }
    
    .data-table {
        font-size: 0.8rem;
    }
    
    .data-table th,
    .data-table td {
        padding: 0.8rem 0.5rem;
    }
    
    .departments-grid {
        grid-template-columns: 1fr;
    }
    
    .reports-grid {
        grid-template-columns: 1fr;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-actions {
        flex-direction: column;
    }
    
    .department-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .department-actions {
        align-self: flex-end;
    }
}

@media (max-width: 480px) {
    .admin-sidebar {
        padding: 0.5rem;
    }
    
    .nav-menu {
        padding: 0 0.5rem;
    }
    
    .nav-link {
        padding: 0.6rem;
        min-width: 70px;
    }
    
    .nav-link i {
        font-size: 0.9rem;
    }
    
    .nav-link span {
        font-size: 0.6rem;
    }
    
    .admin-header {
        padding: 0.8rem;
    }
    
    .header-left h1 {
        font-size: 1.3rem;
    }
    
    .content-section {
        padding: 0.8rem;
    }
    
    .stat-card {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .stat-content h3 {
        font-size: 1.8rem;
    }
    
    .quick-actions,
    .recent-activity {
        padding: 1rem;
    }
    
    .action-card {
        padding: 1rem;
    }
    
    .action-card i {
        font-size: 1.5rem;
    }
    
    .action-card h3 {
        font-size: 1rem;
    }
    
    .data-table {
        font-size: 0.7rem;
    }
    
    .data-table th,
    .data-table td {
        padding: 0.6rem 0.3rem;
    }
    
    .employee-info {
        min-width: 120px;
    }
    
    .action-buttons {
        flex-direction: column;
        gap: 0.3rem;
    }
    
    .btn-icon {
        padding: 0.3rem;
        font-size: 0.8rem;
    }
}


/* Employee Portal Mobile Styles */
    .login-container {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .login-logo {
        font-size: 2rem;
    }
    
    .login-logo i {
        font-size: 2.5rem;
    }
    
    .login-header h2 {
        font-size: 1.6rem;
    }
    
    .login-header p {
        font-size: 1rem;
    }
    
    .login-form input {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .login-btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}

/* Attendance Tabs Styles */
.tab-container {
    margin-top: 20px;
}

.tab-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--champagne);
    padding-bottom: 10px;
}

.tab-btn {
    padding: 12px 24px;
    background: var(--ivory);
    border: 2px solid var(--champagne);
    border-radius: 8px 8px 0 0;
    color: var(--warm-black);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tab-btn:hover {
    background: var(--light-gold);
    border-color: var(--gold);
    color: var(--dark-gold);
}

.tab-btn.active {
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    border-color: var(--gold);
    color: var(--ivory);
    box-shadow: 0 4px 15px var(--soft-shadow);
}

.tab-btn i {
    font-size: 1.1rem;
}

.tab-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.tab-content.active {
    display: block;
}

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