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

:root {
    --primary-color: #d4a574;
    --secondary-color: #2c2c2c;
    --text-color: #333;
    --light-bg: #f9f9f9;
    --white: #ffffff;
    --accent-pink: #ffb6c1;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 1rem 0;
}

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

.nav-brand {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--secondary-color);
    letter-spacing: 1px;
}

.nav-address {
    font-size: 0.75rem;
    font-family: 'Montserrat', sans-serif;
    color: #666;
    margin-top: 0.25rem;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.brand-esti {
    font-family: 'Century Gothic', sans-serif;
}

.brand-q {
    font-family: 'Cinzel Decorative', serif;
    color: #CC8C69;
}



.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown .dropbtn {
    cursor: pointer;
    display: inline-block;
}

.arrow-down {
    font-size: 0.7rem;
    margin-left: 0.3rem;
    transition: transform 0.3s ease;
    display: inline-block;
}

.dropdown:hover .arrow-down {
    transform: rotate(180deg);
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    min-width: 180px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
    z-index: 1001;
    border-radius: 8px;
    margin-top: 0.5rem;
    padding: 0.5rem 0;
}

.dropdown-content a {
    color: var(--text-color);
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    display: block;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.dropdown-content a:hover {
    background-color: var(--light-bg);
    color: var(--primary-color);
    padding-left: 2rem;
}

.dropdown-content a.active {
    color: var(--primary-color);
    font-weight: 600;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--secondary-color);
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), 
                url('https://i.postimg.cc/hGSYLHHx/IMG-3660.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
}

.hero-overlay {
    width: 100%;
}

.hero-content {
    text-align: center;
    color: var(--white);
}

.hero-title {
    font-size: 5rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease;
}

.announcement-box {
    background: rgba(255, 255, 255, 0.95);
    color: var(--secondary-color);
    padding: 3rem 2rem;
    max-width: 600px;
    margin: 0 auto;
    border-radius: 10px;
    animation: fadeInUp 1s ease 0.3s backwards;
}

.announcement-box h2 {
    font-size: 2.5rem;
    margin: 0.5rem 0;
    color: var(--primary-color);
}

.announcement-box h3 {
    font-size: 1.2rem;
    margin: 0.5rem 0;
    font-weight: 400;
}

.location-tag {
    font-size: 2rem;
    font-weight: 600;
    margin: 1rem 0;
}

.contact-info {
    margin-top: 1.5rem;
    font-size: 0.9rem;
}

.contact-info a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: var(--white);
}

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

.about-video iframe {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
    font-weight: 400;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.8;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: var(--light-bg);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--secondary-color);
}

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

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.service-number {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.service-card p {
    color: #666;
    line-height: 1.8;
}

.cta-button {
    text-align: center;
}

.btn {
    display: inline-block;
    padding: 1rem 3rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s;
}

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

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

.btn-outline {
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.btn-outline:hover {
    background: var(--secondary-color);
    color: var(--white);
}

/* Featured Section */
.featured {
    padding: 4rem 0;
    background: var(--white);
}

.featured-logos {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    align-items: center;
}

.featured-item {
    text-align: center;
}

.featured-placeholder {
    padding: 2rem 1rem;
    background: var(--light-bg);
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--secondary-color);
    letter-spacing: 1px;
}

/* Gallery Section */
.gallery {
    padding: 6rem 0;
    background: var(--light-bg);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.social-btn {
    padding: 0.8rem 2rem;
    background: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
}

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

.gallery-segment {
    margin-bottom: 4rem;
}

.gallery-segment-title {
    font-size: 1.8rem;
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    font-family: 'Playfair Display', serif;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.eyelash-gallery {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
    margin: 0 auto;
}

.eyebrow-gallery {
    display: flex;
    justify-content: center;
    max-width: 400px;
    margin: 0 auto;
}

.eyebrow-gallery .gallery-item {
    max-width: 300px;
}

.facial-gallery {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
    margin: 0 auto;
}

.headspa-gallery {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
    margin: 0 auto;
}

.gallery-item {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
}

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

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

/* Locations Section */
.locations {
    padding: 6rem 0;
    background: var(--white);
}

.locations-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 600px;
    margin: 0 auto;
}

.location-card {
    text-align: center;
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 10px;
    transition: transform 0.3s;
}

.location-card:hover {
    transform: translateY(-5px);
}

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

.shop-image, .location-map {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.location-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
    font-weight: 400;
}

.location-subtitle {
    font-weight: 600;
    margin-bottom: 1rem;
}

.location-address {
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.8;
}

/* Contact Section */
.contact {
    padding: 4rem 0;
    background: var(--secondary-color);
    color: var(--white);
}

.contact-cta {
    text-align: center;
}

.contact-cta h2 {
    font-size: 2rem;
}

.contact-cta a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
}

.contact-cta a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 3rem 0 2rem;
}

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

.footer-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-info p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.footer-info a {
    color: var(--primary-color);
    text-decoration: none;
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
    background: white;
    padding: 5px;
}

.whatsapp-icon:hover {
    transform: scale(1.1);
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
        align-items: stretch;
    }

    .nav-menu.active {
        left: 0;
    }

    /* Mobile Dropdown Styles */
    .dropdown {
        width: 100%;
    }

    .dropdown .dropbtn {
        display: block;
        width: 100%;
        padding: 1rem 0;
    }

    .dropdown-content {
        position: static;
        display: none;
        box-shadow: none;
        background-color: var(--light-bg);
        margin: 0;
        padding: 0;
        border-radius: 0;
    }

    .dropdown-content a {
        padding: 0.8rem 2rem;
        font-size: 0.85rem;
    }

    .dropdown-content a:hover {
        padding-left: 2.5rem;
    }

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

    .dropdown.active .arrow-down {
        transform: rotate(180deg);
    }

    .hero-title {
        font-size: 3rem;
    }

    .announcement-box h2 {
        font-size: 1.8rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

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

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

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

    .eyebrow-gallery,
    .headspa-gallery {
        grid-template-columns: 1fr;
    }

    .locations-grid {
        grid-template-columns: 1fr;
    }

    .location-images {
        grid-template-columns: 1fr;
    }

    .contact-cta h2 {
        font-size: 1.3rem;
    }
}

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

    .announcement-box {
        padding: 2rem 1rem;
    }

    .gallery-grid,
    .eyelash-gallery,
    .eyebrow-gallery,
    .facial-gallery,
    .headspa-gallery {
        grid-template-columns: 1fr;
    }
}
/* Service Page Specific Styles */
.service-hero {
    min-height: 50vh;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 70px;
    position: relative;
}

.service-hero .hero-overlay {
    width: 100%;
    text-align: center;
    padding: 4rem 0;
}

.service-hero .hero-title {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.service-hero .hero-subtitle {
    font-size: 1.3rem;
    color: var(--white);
    opacity: 0.9;
}

.service-details {
    padding: 5rem 0;
    background: var(--white);
}

.service-content {
    display: grid;
    gap: 3rem;
}

.service-image-main {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-image-main img {
    width: 100%;
    height: auto;
    display: block;
}

.service-description h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.service-description h3 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin: 2rem 0 1rem;
}

.service-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.service-list,
.benefits-list,
.care-tips {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.service-list li,
.benefits-list li,
.care-tips li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-color);
}

.service-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.benefits-list li {
    padding-left: 0;
}

.care-tips li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #d4a574 100%);
    padding: 3rem;
    border-radius: 10px;
    text-align: center;
    margin-top: 3rem;
}

.cta-section h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-section p {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--white);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.related-services {
    padding: 5rem 0;
    background: var(--light-bg);
}

.related-services .services-grid {
    margin-top: 3rem;
}

.related-services .service-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.related-services .service-card:hover {
    transform: translateY(-10px);
}

.nav-menu a.active {
    color: var(--primary-color);
    font-weight: 600;
}

@media (max-width: 768px) {
    .service-hero .hero-title {
        font-size: 2.5rem;
    }

    .service-hero .hero-subtitle {
        font-size: 1.1rem;
    }

    .service-description h2 {
        font-size: 2rem;
    }

    .service-description h3 {
        font-size: 1.5rem;
    }

    .cta-section {
        padding: 2rem;
    }

    .cta-section h3 {
        font-size: 1.6rem;
    }
}
