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

:root {
    --primary: #00abba;
    --secondary: #333333;
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --light-primary: #00c4d6;
    --dark-gray: #333333;
    --text-gray: #555555;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --primary-gradient: linear-gradient(135deg, #00abba, #00c4d6);
    --secondary-gradient: linear-gradient(135deg, #333333, #2C2C2C);
}

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


/* Social Sidebar */

.social-sidebar {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 20px 10px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.social-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 20px;
    color: var(--dark-gray);
}

.social-icon:hover {
    transform: scale(1.15);
    box-shadow: 0 5px 15px rgba(0, 171, 186, 0.3);
}

.social-icon.instagram {
    color: #E4405F;
}

.social-icon.instagram:hover {
    background: rgba(228, 64, 95, 0.1);
}

.social-icon.facebook {
    color: #1877F2;
}

.social-icon.facebook:hover {
    background: rgba(24, 119, 242, 0.1);
}

.social-icon.google {
    color: #4285F4;
}

.social-icon.google:hover {
    background: rgba(66, 133, 244, 0.1);
}

.social-icon.whatsapp {
    color: #25D366;
}

.social-icon.whatsapp:hover {
    background: rgba(37, 211, 102, 0.1);
}

@media (max-width: 768px) {
    .social-sidebar {
        left: 10px;
        gap: 10px;
        padding: 15px 8px;
    }
    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--secondary);
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h2 {
    color: var(--primary);
    font-size: 28px;
}

.nav-logo img {
    height: 48px;
    width: auto;
    display: block;
    background: transparent;
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.btn-primary {
    background: var(--primary);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Mobile Menu Toggle */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

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

/* Hero Section */
.hair-hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, rgba(212, 175, 55, 0.1) 100%);
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 30px;
    color: var(--navy);
    animation: fadeDown 1s ease;
}

.gold-underline {
    width: 80px;
    height: 4px;
    background: var(--primary);
    margin-bottom: 30px;
    animation: expandWidth 1.5s ease 0.5s both;
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 40px;
    color: var(--text-gray);
    line-height: 1.7;
    animation: fadeUp 1s ease 0.4s both;
}

.hero-ctas {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    animation: fadeUp 1s ease 0.6s both;
}

.btn-gold {
    background: var(--primary);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(26, 188, 156, 0.3);
    background: #16A085;
}

.btn-navy {
    background: var(--secondary);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--primary);
    transition: all 0.3s ease;
    display: inline-block;
}

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

.hero-image {
    position: relative;
    animation: fadeInRight 1s ease 0.5s both;
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.hair-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%23D4AF37" opacity="0.3"><animate attributeName="opacity" values="0.3;1;0.3" dur="3s" repeatCount="indefinite"/></circle><circle cx="80" cy="40" r="1.5" fill="%23D4AF37" opacity="0.5"><animate attributeName="opacity" values="0.5;1;0.5" dur="2s" repeatCount="indefinite"/></circle></svg>') no-repeat;
    background-size: cover;
    pointer-events: none;
}

/* Video Education Section */
.video-education-section {
    padding: 100px 0;
    background: linear-gradient(rgba(51, 51, 51, 0.85), rgba(44, 44, 44, 0.85)), url('images/hero1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    text-align: center;
    position: relative;
}

.video-education-section h2 {
    color: var(--primary);
    font-size: 36px;
    margin-bottom: 40px;
}

.video-container {
    max-width: 800px;
    margin: 0 auto 30px;
    border: 8px solid var(--primary);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(26, 188, 156, 0.3);
    transition: all 0.3s ease;
}

.video-container:hover {
    box-shadow: 0 25px 50px rgba(26, 188, 156, 0.4);
    transform: scale(1.02);
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
}

.video-description {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Service Sections */
.fue-section, .dhi-section, .beard-section, .eyebrow-section, .female-hair-section {
    padding: 100px 0;
}

.fue-section {
    background: linear-gradient(rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.88)), url('images/background1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.dhi-section {
    background: linear-gradient(rgba(248, 249, 250, 0.85), rgba(248, 249, 250, 0.85)), url('images/dhi\ hair\ 2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.beard-section {
    background: linear-gradient(rgba(255, 255, 255, 0.87), rgba(255, 255, 255, 0.87)), url('images/background2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.eyebrow-section {
    background: linear-gradient(rgba(250, 248, 242, 0.86), rgba(248, 246, 240, 0.86)), url('images/eyebro.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.female-hair-section {
    background: linear-gradient(rgba(249, 247, 244, 0.88), rgba(246, 244, 241, 0.88)), url('images/background3.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-grid.reverse {
    direction: rtl;
}

.service-grid.reverse > * {
    direction: ltr;
}

.service-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

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

.service-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--secondary);
}

.gold-divider {
    width: 60px;
    height: 4px;
    background: var(--primary);
    margin-bottom: 30px;
}

.service-content h3 {
    font-size: 24px;
    margin: 30px 0 15px 0;
    color: var(--secondary);
}

.service-content p {
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-content ul {
    margin: 20px 0;
    padding-left: 0;
    list-style: none;
}

.service-content li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.benefits-list li {
    color: var(--primary);
    font-weight: 500;
}

.explore-btn {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 150px;
}

.explore-btn:hover {
    background: var(--secondary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(51, 51, 51, 0.3);
}

.explore-btn-center {
    display: block;
    text-align: center;
    background: var(--primary);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    margin: 40px auto 0;
    max-width: 200px;
    transition: all 0.3s ease;
}

.explore-btn-center:hover {
    background: var(--secondary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(51, 51, 51, 0.3);
}

/* Hairline Design Section */
.hairline-design-section {
    padding: 100px 0;
    background: linear-gradient(rgba(255, 255, 255, 0.89), rgba(255, 255, 255, 0.89)), url('images/background4.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    position: relative;
}

.section-header h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--secondary);
    text-align: center;
}

.section-header .gold-underline {
    margin: 0 auto 30px;
}

.section-header p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.7;
}

.hairline-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.hairline-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--primary);
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease;
}

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

.card-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.hairline-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--secondary);
}

.hairline-card p {
    line-height: 1.6;
}

/* Mini Services Section */
.mini-services-section {
    padding: 100px 0;
    background: linear-gradient(rgba(248, 249, 250, 0.87), rgba(248, 249, 250, 0.87)), url('images/hero4.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.mini-services-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.mini-services-section .section-header h2 {
    font-size: 42px;
    color: var(--secondary);
}

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

.mini-service-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 520px;
    display: flex;
    flex-direction: column;
}

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

.mini-service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.card-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
    position: relative;
}

.card-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--secondary);
}

.card-content p {
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.card-content .explore-btn {
    margin-top: auto;
    align-self: center;
}

/* Treatment Cards */
.treatments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.treatment-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.treatment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.treatment-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.treatment-card h3 {
    font-size: 24px;
    padding: 20px 25px 10px;
    color: var(--secondary);
    text-align: center;
}

.treatment-card p {
    padding: 0 25px 20px;
    line-height: 1.6;
    text-align: center;
}

.treatment-card .explore-btn {
    display: block;
    margin: 0 auto 25px;
    width: fit-content;
}

/* Non-Surgical Section */
.non-surgical-section {
    padding: 100px 0;
    background: linear-gradient(rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.88)), url('images/background1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.non-surgical-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.non-surgical-section .section-header h2 {
    text-align: center;
}

.prp-video-section {
    margin-top: 60px;
    text-align: center;
}

.prp-video-section .video-container {
    border: 6px solid var(--primary);
}

.video-caption {
    margin-top: 15px;
    font-style: italic;
    color: var(--text-gray);
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background: linear-gradient(rgba(51, 51, 51, 0.88), rgba(44, 44, 44, 0.88)), url('images/fui\ hair\ 2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    text-align: center;
    position: relative;
}

.process-section .section-header h2 {
    color: var(--primary);
    font-size: 42px;
    margin-bottom: 60px;
}

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

.timeline-step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 20px;
}

.timeline-step h3 {
    color: var(--white);
    font-size: 20px;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: linear-gradient(rgba(248, 249, 250, 0.89), rgba(248, 249, 250, 0.89)), url('images/background2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.faq-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-section .section-header h2 {
    font-size: 42px;
    color: var(--secondary);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.faq-question {
    padding: 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--secondary);
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--light-primary);
}

.faq-icon {
    font-size: 24px;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
    padding: 0 25px 25px;
    max-height: 200px;
}

.faq-answer p {
    line-height: 1.7;
}

/* Final CTA Section */
.final-cta-section {
    padding: 100px 0;
    background: linear-gradient(rgba(26, 188, 156, 0.85), rgba(72, 201, 176, 0.85)), url('images/hero4.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    color: var(--white);
    position: relative;
}

.final-cta-section h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.final-cta-section p {
    font-size: 20px;
    margin-bottom: 40px;
}

.btn-consultation {
    background: var(--secondary);
    color: var(--white);
    padding: 18px 40px;
    border-radius: 35px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-consultation:hover {
    background: var(--white);
    color: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
    background: var(--secondary);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    color: var(--primary);
    font-size: 24px;
    margin-bottom: 20px;
}

.footer-column p {
    line-height: 1.6;
    margin-bottom: 10px;
}

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

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(26, 188, 156, 0.3);
}

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

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

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes expandWidth {
    from {
        width: 0;
    }
    to {
        width: 80px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 15px 0;
    }
    
    .nav-cta {
        display: none;
    }
    
    .hair-hero-section {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 20px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .service-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-grid.reverse {
        direction: ltr;
    }
    
    .hero-ctas {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .btn-gold,
    .btn-navy {
        width: 100%;
        max-width: 300px;
    }
    
    .mini-services-grid {
        grid-template-columns: 1fr;
    }
    
    .mini-service-card {
        height: auto;
    }
    
    .mini-service-card img {
        height: 220px;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .service-content h2 {
        font-size: 28px;
    }
}

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

@media (max-width: 768px) {
    .mini-services-grid {
        grid-template-columns: 1fr;
    }
    
    .treatments-grid {
        grid-template-columns: 1fr;
    }
    
    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 26px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .final-cta-section h2 {
        font-size: 32px;
    }
    
    .service-content h2 {
        font-size: 24px;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
    }
    
    .hairline-cards {
        grid-template-columns: 1fr;
    }
    
    .fue-section,
    .dhi-section,
    .beard-section,
    .eyebrow-section,
    .female-hair-section,
    .video-education-section,
    .hairline-design-section,
    .mini-services-section,
    .non-surgical-section,
    .process-section,
    .faq-section,
    .final-cta-section {
        padding: 60px 0;
    }
}