/* =========================================================================
   'N' UNIQUE BEAUTY HUB - CUSTOM CSS (PREMIUM DARK/GOLD THEME)
   ========================================================================= */

   :root {
    /* Color Palette */
    --primary-color: #D4AF37;       /* Metallic Gold */
    --primary-light: #F3E5AB;       /* Light Gold/Cream */
    --primary-dark: #AA8C2C;        /* Darker Gold */
    
    --bg-dark: #0A0A0A;             /* Very Dark Grey / Almost Black */
    --bg-darker: #050505;           /* True Black */
    --bg-card: #141414;             /* Card Dark Grey */
    
    --text-main: #E0E0E0;           /* Off-white for general text */
    --text-muted: #A0A0A0;          /* Muted grey */
    --white: #FFFFFF;
    
    /* Typography */
    --font-heading: 'Marcellus', serif;     /* Elegant serif for headings */
    --font-body: 'Outfit', sans-serif;      /* Modern, clean sans-serif */
    
    /* Variables */
    --transition: all 0.3s ease-in-out;
    --border-radius: 8px;
    --container-width: 1200px;
}

/* =========================================================================
   BASE RESET & TYPOGRAPHY
   ========================================================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    color: var(--white);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
}

.section {
    padding: 100px 0;
}

.bg-darker {
    background-color: var(--bg-darker);
}

.text-center { text-align: center; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

/* =========================================================================
   BUTTONS
   ========================================================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: var(--font-body);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--border-radius);
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    font-size: 0.9rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--bg-darker);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--bg-darker);
    transform: translateY(-2px);
}

.btn-dark {
    background-color: var(--bg-darker);
    color: var(--primary-color);
    border-color: var(--bg-darker);
}

.btn-dark:hover {
    background-color: transparent;
    border-color: var(--bg-darker);
    color: var(--bg-darker);
}

.btn-lg {
    padding: 15px 35px;
    font-size: 1rem;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.8rem;
}

/* =========================================================================
   HEADER / NAVIGATION
   ========================================================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background-color: transparent;
}

.header.scrolled {
    background-color: rgba(5, 5, 5, 0.95);
    padding: 15px 0;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.5);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--white);
    line-height: 1;
    letter-spacing: 2px;
}

.logo-accent {
    color: var(--primary-color);
    font-size: 1.8rem;
}

.logo small {
    font-family: var(--font-body);
    font-size: 0.7rem;
    letter-spacing: 4px;
    color: var(--text-muted);
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--text-main);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-color);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* =========================================================================
   HERO SECTION
   ========================================================================= */
.hero {
    height: 100vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
}

.hero-content {
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    padding: 6px 15px;
    background-color: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 30px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    opacity: 0;
    transform: translateY(20px);
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 20px;
    color: var(--white);
    opacity: 0;
    transform: translateY(20px);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-main);
    margin-bottom: 40px;
    max-width: 600px;
    opacity: 0;
    transform: translateY(20px);
}

.hero-cta {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(20px);
}

.hero-features {
    display: flex;
    gap: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    opacity: 0;
    transform: translateY(20px);
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.feature i {
    color: var(--primary-color);
}

/* =========================================================================
   ABOUT SECTION
   ========================================================================= */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    opacity: 0;
    transform: translateX(-30px);
}

.about-image {
    width: 100%;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.about-image-wrapper:hover .about-image {
    transform: scale(1.05);
}

.experience-card {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: var(--primary-color);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    color: var(--bg-darker);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.experience-card .number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1;
}

.experience-card .text {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
}

.about-content {
    opacity: 0;
    transform: translateX(30px);
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.section-subtitle {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 20px;
}

.about-content p {
    margin-bottom: 20px;
    color: var(--text-muted);
}

.about-list {
    margin: 30px 0;
}

.about-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-main);
}

.about-list i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* =========================================================================
   SERVICES SECTION
   ========================================================================= */
.section-header {
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(20px);
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background-color: var(--bg-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.05);
    opacity: 0;
    transform: translateY(30px);
}

.service-card:hover {
    transform: translateY(-10px) !important; /* Override JS animation state */
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

.service-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.service-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-img-wrapper img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-content {
    padding: 30px;
    text-align: center;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--white);
}

.service-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* =========================================================================
   LEAD GEN BANNER
   ========================================================================= */
.lead-gen-banner {
    padding: 80px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.lead-gen-banner h2 {
    color: var(--bg-darker);
    font-size: 2.5rem;
    font-weight: 600;
}

.lead-gen-banner p {
    color: var(--bg-dark);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 10px auto 0;
}

/* =========================================================================
   GALLERY SECTION
   ========================================================================= */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    aspect-ratio: 1/1;
    cursor: pointer;
    opacity: 0;
    transform: scale(0.9);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(212, 175, 55, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-overlay i {
    color: var(--bg-darker);
    font-size: 2rem;
    transform: translateY(20px);
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay i {
    transform: translateY(0);
}

/* =========================================================================
   TESTIMONIALS SECTION
   ========================================================================= */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.stars {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.review-text {
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviewer img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    margin-bottom: 2px;
}

.reviewer span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* =========================================================================
   CONTACT SECTION
   ========================================================================= */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

.info-card {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    background: var(--bg-card);
    padding: 25px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
}

.info-card:hover {
    border-color: var(--primary-color);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.info-details h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.info-details p {
    color: var(--text-muted);
}

.contact-map {
    border-radius: var(--border-radius);
    overflow: hidden;
    min-height: 400px;
    border: 1px solid rgba(255,255,255,0.1);
}

/* =========================================================================
   FOOTER
   ========================================================================= */
.footer {
    background-color: var(--bg-darker);
    padding: 80px 0 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: var(--text-muted);
    margin: 20px 0;
    max-width: 350px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.05);
    color: var(--white);
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: var(--bg-darker);
    transform: translateY(-3px);
}

.footer-links h3 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links ul li {
    margin-bottom: 15px;
}

.footer-links ul li a {
    color: var(--text-muted);
}

.footer-links ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 20px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* =========================================================================
   FLOATING CTA
   ========================================================================= */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

.phone-btn {
    background-color: #007bff;
}

.whatsapp-btn {
    background-color: #25D366;
}

/* =========================================================================
   RESPONSIVE DESIGN
   ========================================================================= */
@media (max-width: 1024px) {
    .hero-title { font-size: 3.5rem; }
    .about-container { gap: 40px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-wrapper { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-list {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--bg-darker);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.4s ease-in-out;
        box-shadow: -5px 0 20px rgba(0,0,0,0.5);
    }

    .nav-list.active {
        right: 0;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .nav-actions .btn-primary { display: none; }

    .hero-title { font-size: 2.8rem; }
    .hero-cta { flex-direction: column; }
    .hero-features { flex-direction: column; gap: 15px; }
    
    .about-container { grid-template-columns: 1fr; }
    .about-image-wrapper { order: 2; margin-top: 40px; }
    .about-content { order: 1; }
    
    .services-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    
    .footer-container { grid-template-columns: 1fr; gap: 40px; }
    
    .section { padding: 60px 0; }
}
