/* Hero Section */
.hero-section {
    margin-top: 80px;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(139, 69, 19, 0.1) 100%);
    border-bottom: 2px solid var(--border-color);
    text-align: center;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-subtitle {
    color: var(--orange);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--orange), var(--brown));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-description {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.price-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 107, 53, 0.1);
    border: 2px solid var(--orange);
    border-radius: 50px;
    padding: 1rem 2rem;
    margin: 1rem 0;
    gap: 1rem;
}

@media(max-width: 768px) {
    .price-badge {
        padding: 1rem 1rem;
    }
}

.price-badge .price {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--orange);
}

.price-badge .duration {
    font-size: 1rem;
    color: var(--text-gray);
}

/* Section Styles */
.hd-haircut-section {
    padding: 5rem 2rem;
    max-width: 100vw;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--orange), var(--brown));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Service Overview */
.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.overview-card {
    background: rgba(255, 107, 53, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.overview-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
    border-color: var(--orange);
}

.overview-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--orange), var(--brown));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.overview-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--orange);
}

.overview-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Process Steps */
.process-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    background: rgba(255, 107, 53, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.3s;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
    border-color: var(--orange);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--orange), var(--brown));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.process-step h3 {
    font-size: 1.4rem;
    margin: 1.5rem 0 1rem;
    color: var(--orange);
    text-align: center;
}

.process-step p {
    color: var(--text-gray);
    text-align: center;
}

/* Why Choose Us */
.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.reason-card {
    background: rgba(255, 107, 53, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
}

.reason-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
    border-color: var(--orange);
}

.reason-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.reason-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--orange);
}

.reason-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* FAQ Section */
.faq-container {
    max-width: 900px;
    margin: 3rem auto 0;
}

.faq-item {
    background: rgba(255, 107, 53, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: var(--orange);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-light);
}

.faq-question i {
    color: var(--orange);
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 2rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.5rem;
}

.faq-answer p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* Related Services */
.related-services {
    background: rgba(255, 107, 53, 0.05);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto 2rem;
}

.related-card {
    background: var(--black);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
}

.related-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    border-color: var(--orange);
}

.related-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--orange);
}

.related-info {
    display: flex;
    justify-content: space-around;
    margin: 1.5rem 0;
    color: var(--text-gray);
}

.related-card .cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--orange), var(--brown));
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.related-card .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
}

.explore-more-btn {
    display: block;
    text-align: center;
    margin-top: 2rem;
}

.explore-more-btn a {
    display: inline-block;
    background: transparent;
    border: 2px solid var(--orange);
    color: var(--orange);
    padding: 1rem 3rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
}

@media (max-width: 768px) {
    .explore-more-btn a {
        background: linear-gradient(135deg, var(--orange), var(--brown));
        color: #ffffff;
    }
}

.explore-more-btn a:hover {
    background: var(--orange);
    color: white;
    transform: translateY(-3px);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, rgba(139, 69, 19, 0.15) 100%);
    padding: 5rem 2rem;
    text-align: center;
    border-top: 2px solid var(--border-color);
    border-bottom: 2px solid var(--border-color);
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--orange), var(--brown));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
}

.cta-button-large {
    display: inline-block;
    background: linear-gradient(135deg, var(--orange), var(--brown));
    color: white;
    padding: 1.25rem 4rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.cta-button-large:hover {
    transform: translateY(-5px) scale(1.05);
}

/* Footer */
.footer {
    background: var(--black);
    padding: 3rem 2rem 1.5rem;
    border-top: 2px solid var(--border-color);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--orange);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section a:hover {
    color: var(--orange);
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-icons a:hover {
    background: var(--orange);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-gray);
}

/* Responsive */
@media (max-width: 768px) {
    /* .nav-menu {
        display: none;
    } */

    .hamburger {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .price-badge .price {
        font-size: 1rem;
    }

    .overview-grid,
    .process-container,
    .reasons-grid,
    .related-grid {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-button-large {
        padding: 1rem 2.5rem;
        font-size: 1.1rem;
    }
}

/* Hero Section Styles */
.hd-haircut-page.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(../images/webp/hascut_img9.webp);
    background-size: cover;
    background-position: center;
    width: 100vw;
    height: 100%;
    padding: 6rem 2rem 4rem;
}

.hd-haircut-section.hd-process,
.hd-haircut-section.hd-choose-us {
    padding: 3rem 2rem;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
        url('../images/webp/hascut_img4.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    text-align: center;
}

.hd-haircut-cta {
    padding: 2rem 2rem;
    max-width: 100%;
    margin: 0 auto;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(../images/webp/hascut_img3.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: calc(100vh - 80px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-attachment: fixed;
}

/* What's Included Section Styles */
.hd-haircut-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
}

.hd-haircut-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hd-haircut-section .section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ff6b35, #8b4513);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.hd-haircut-section .section-subtitle {
    text-align: center;
    color: #b0b0b0;
    font-size: 1.2rem;
    margin-bottom: 4rem;
}

.overview-slider .overview-card {
    background: rgba(42, 42, 42, 0.5);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    margin: 0 15px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid rgba(255, 107, 53, 0.1);
    height: 350px;
    display: flex !important;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.overview-slider .overview-card:hover {
    transform: translateY(-10px);
    border-color: #ff6b35;
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3);
    background: rgba(42, 42, 42, 0.8);
}

.overview-icon {
    font-size: 3.5rem;
    color: #ff6b35;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.overview-card:hover .overview-icon {
    transform: scale(1.1) rotate(5deg);
}

.overview-card h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 1rem;
}

.overview-card p {
    color: #b0b0b0;
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .hd-haircut-section {
        padding: 3rem;
    }

    .hd-haircut-section .section-title {
        font-size: 2rem;
        font-weight: 800;
    }

    .hd-haircut-section .section-subtitle {
        font-size: 1rem;
    }

    .overview-slider .overview-card {
        height: 320px;
        padding: 2rem 1.5rem;
    }

    .overview-icon {
        font-size: 3rem;
    }

    .overview-card h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hd-haircut-section .section-title {
        font-size: 1.6rem;
    }

    .overview-slider .overview-card {
        height: 300px;
    }
}

@media (max-width: 768px) {
    section.hd-haircut-section.\.hd-what-included {
        padding: 3rem 0 !important;
    }

    .hd-process {
        padding-bottom: 0 !important;
    }

    .hd-choose-us {
        padding-top: 48px !important;
    }

    .hd-whats-included {
        padding: 3rem 0 !important;
    }
}


/* ========================================
   ANIMATIONS
   ======================================== */

/* 1. Navbar SlideDown Animation */
.navbar {
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* 2. Hero Section Fade In */
.hero-section {
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 3. Section Headers Fade Down */
.section-title,
.section-subtitle {
    animation: fadeInDown 0.8s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 4. Cards Staggered Animation (already in your code, but enhanced) */
.overview-card,
.process-step,
.reason-card,
.related-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUpCard 0.6s ease forwards;
}

@keyframes fadeInUpCard {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Add delay for staggered effect */
.overview-card:nth-child(1) {
    animation-delay: 0.1s;
}

.overview-card:nth-child(2) {
    animation-delay: 0.2s;
}

.overview-card:nth-child(3) {
    animation-delay: 0.3s;
}

.overview-card:nth-child(4) {
    animation-delay: 0.4s;
}

.overview-card:nth-child(5) {
    animation-delay: 0.5s;
}

.overview-card:nth-child(6) {
    animation-delay: 0.6s;
}

.process-step:nth-child(1) {
    animation-delay: 0.1s;
}

.process-step:nth-child(2) {
    animation-delay: 0.2s;
}

.process-step:nth-child(3) {
    animation-delay: 0.3s;
}

.process-step:nth-child(4) {
    animation-delay: 0.4s;
}

.reason-card:nth-child(1) {
    animation-delay: 0.1s;
}

.reason-card:nth-child(2) {
    animation-delay: 0.2s;
}

.reason-card:nth-child(3) {
    animation-delay: 0.3s;
}

.reason-card:nth-child(4) {
    animation-delay: 0.4s;
}

/* 5. Price Badge Animation */
.price-badge {
    animation: scaleIn 0.5s ease 0.5s backwards;
}

@keyframes scaleIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* 6. FAQ Items Slide In */
.faq-item {
    animation: slideInLeft 0.5s ease forwards;
    opacity: 0;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.faq-item:nth-child(1) {
    animation-delay: 0.1s;
}

.faq-item:nth-child(2) {
    animation-delay: 0.2s;
}

.faq-item:nth-child(3) {
    animation-delay: 0.3s;
}

.faq-item:nth-child(4) {
    animation-delay: 0.4s;
}

.faq-item:nth-child(5) {
    animation-delay: 0.5s;
}

/* 7. CTA Button Pulse (subtle attention grabber) */
.cta-button-large {
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
    }

    50% {
        box-shadow: 0 10px 40px rgba(255, 107, 53, 0.6);
    }
}

/* 8. Footer Fade In */
.hd-footer {
    animation: fadeIn 1s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* OPTIONAL: Disable animations on mobile for performance */
@media (max-width: 768px) {

    .navbar,
    .hero-section,
    .section-title,
    .section-subtitle,
    .price-badge,
    .overview-card,
    .process-step,
    .reason-card,
    .related-card,
    .faq-item,
    .cta-button-large,
    .hd-footer {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

.hd-haircut-section .slick-dots li button:before {
    font-size: 12px;
    color: #ff6b35;
}

.hd-haircut-section .slick-dots li.slick-active button:before {
    color: #ff6b35;
}

.hd-haircut-section .slick-list {
    padding-bottom: 30px;
}