/* ============================================
   Global Styles & CSS Reset
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #00d4ff;
    --secondary-color: #0a0e27;
    --accent-color: #7b2cbf;
    --text-dark: #1a1d2e;
    --text-light: #6c757d;
    --white: #ffffff;
    --light-bg: #f4f6f9;
    --border-color: #e3e8ef;
    --transition: all 0.3s ease;
    --shadow-sm: 0 2px 8px rgba(0, 212, 255, 0.1);
    --shadow-md: 0 8px 24px rgba(0, 212, 255, 0.15);
    --shadow-lg: 0 16px 48px rgba(0, 212, 255, 0.2);
    --shadow-xl: 0 24px 64px rgba(0, 212, 255, 0.25);
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #00d4ff 0%, #7b2cbf 100%);
    --gradient-3: linear-gradient(135deg, #0a0e27 0%, #1e3a8a 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    position: relative;
    background: repeating-linear-gradient(
        -45deg,
        #dc143c 0px,
        #dc143c 30px,
        #ffffff 30px,
        #ffffff 60px,
        #0047ab 60px,
        #0047ab 90px
    );
    background-size: 200% 200%;
    animation: barberPoleRotate 20s linear infinite;
}

@keyframes barberPoleRotate {
    0% { background-position: 0% 0%; }
    100% { background-position: 100% 100%; }
}

/* Loading Animation */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

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

.loader-logo {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    animation: pulse 1.5s ease-in-out infinite;
}

.loader-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.2);
    border-top-color: var(--accent-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

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

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

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

ul {
    list-style: none;
}

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

/* ============================================
   Navigation Bar
   ============================================ */

.navbar {
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.95), rgba(30, 58, 138, 0.95));
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 212, 255, 0.2);
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.navbar.scrolled {
    background: linear-gradient(135deg, rgba(10, 14, 39, 1), rgba(30, 58, 138, 1));
    box-shadow: 0 4px 30px rgba(0, 212, 255, 0.4);
    padding: 0.75rem 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--white);
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
    transition: var(--transition);
}

.logo::before {
    content: '✂';
    margin-right: 0.5rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

.logo:hover::before {
    transform: rotate(180deg);
}

.logo:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-menu li a {
    color: var(--white);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: var(--transition);
    box-shadow: 0 0 10px var(--primary-color);
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
    width: 100%;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

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

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

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ============================================
   Hero Section (Homepage)
   ============================================ */

.hero {
    height: 100vh;
    min-height: 600px;
    background-image: url('../images/background.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(10, 14, 39, 0.85) 0%, 
        rgba(30, 58, 138, 0.75) 50%,
        rgba(0, 212, 255, 0.4) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: overlayPulse 8s ease-in-out infinite;
}

@keyframes overlayPulse {
    0%, 100% { 
        background: linear-gradient(135deg, 
            rgba(10, 14, 39, 0.85) 0%, 
            rgba(30, 58, 138, 0.75) 50%,
            rgba(0, 212, 255, 0.4) 100%);
    }
    50% { 
        background: linear-gradient(135deg, 
            rgba(10, 14, 39, 0.8) 0%, 
            rgba(30, 58, 138, 0.7) 50%,
            rgba(123, 44, 191, 0.5) 100%);
    }
}

.hero-content {
    text-align: center;
    color: var(--white);
    padding: 2rem;
    max-width: 900px;
    z-index: 1;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
    animation: fadeInUp 1s ease-out;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
    animation: fadeInUp 1s ease-out 0.2s both;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.6);
    letter-spacing: 1px;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    animation: fadeInUp 1s ease-out 0.4s both;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

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

/* ============================================
   Buttons
   ============================================ */

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    font-size: 0.95rem;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    border-color: var(--primary-color);
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 212, 255, 0.6), 0 0 40px rgba(123, 44, 191, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
}

.btn-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-block;
    margin-top: 0.5rem;
}

.btn-link:hover {
    color: #a00d25;
}

/* ============================================
   Quick Info Section
   ============================================ */

.quick-info {
    padding: 3rem 0;
    background: linear-gradient(rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.88)),
                repeating-linear-gradient(
                    -45deg,
                    #dc143c 0px,
                    #dc143c 30px,
                    #ffffff 30px,
                    #ffffff 60px,
                    #0047ab 60px,
                    #0047ab 90px
                );
    background-size: 100% 100%, 200% 200%;
    animation: barberPoleRotate 20s linear infinite;
    position: relative;
    z-index: 1;
}

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

.info-card {
    text-align: center;
    padding: 2.5rem;
    background: linear-gradient(135deg, #ffffff, #f4f6f9);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 212, 255, 0.15);
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.15), transparent);
    transition: left 0.6s;
}

.info-card:hover::before {
    left: 100%;
}

.info-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.25);
    border-color: var(--primary-color);
}

.info-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.info-card:hover .info-icon {
    transform: scale(1.2) rotate(5deg);
}

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

.info-card p {
    color: var(--text-light);
    line-height: 1.8;
}

.info-card a {
    color: var(--primary-color);
    font-weight: 600;
}

.info-card a:hover {
    color: #a00d25;
}

/* ============================================
   Section Titles
   ============================================ */

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3.5rem;
    color: var(--secondary-color);
    position: relative;
    padding-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, transparent, var(--primary-color), var(--accent-color), var(--primary-color), transparent);
    border-radius: 10px;
    animation: titleLineGlow 3s ease-in-out infinite;
}

@keyframes titleLineGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(0, 212, 255, 0.6); }
    50% { box-shadow: 0 0 40px rgba(123, 44, 191, 0.8); }
}

/* ============================================
   Featured Services
   ============================================ */

.featured-services {
    padding: 5rem 0;
    background: linear-gradient(rgba(244, 246, 249, 0.88), rgba(244, 246, 249, 0.88)),
                repeating-linear-gradient(
                    -45deg,
                    #dc143c 0px,
                    #dc143c 30px,
                    #ffffff 30px,
                    #ffffff 60px,
                    #0047ab 60px,
                    #0047ab 90px
                );
    background-size: 100% 100%, 200% 200%;
    animation: barberPoleRotate 20s linear infinite;
    position: relative;
    z-index: 1;
}

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

.service-card {
    background: linear-gradient(135deg, #ffffff, #f8f8f8);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.5s ease;
    box-shadow: 0 0 20px var(--primary-color);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-15px) rotateX(5deg);
    border-color: var(--primary-color);
    box-shadow: 0 20px 50px rgba(0, 212, 255, 0.3);
    background: linear-gradient(135deg, #ffffff, #ffffff);
}

.service-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: all 0.4s ease;
    filter: grayscale(0.3);
}

.service-card:hover .service-icon {
    transform: scale(1.2) rotateY(360deg);
    filter: grayscale(0);
}

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

.service-card p {
    color: var(--text-light);
    line-height: 1.8;
}

.section-cta {
    text-align: center;
    margin-top: 2rem;
}

/* ============================================
   Why Choose Us
   ============================================ */

.why-choose-us {
    padding: 5rem 0;
    background: linear-gradient(rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.88)),
                repeating-linear-gradient(
                    -45deg,
                    #dc143c 0px,
                    #dc143c 30px,
                    #ffffff 30px,
                    #ffffff 60px,
                    #0047ab 60px,
                    #0047ab 90px
                );
    background-size: 100% 100%, 200% 200%;
    animation: barberPoleRotate 20s linear infinite;
    position: relative;
    z-index: 1;
}

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

.feature {
    text-align: center;
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.feature h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.feature p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ============================================
   Testimonials
   ============================================ */

.testimonials-preview {
    padding: 5rem 0;
    background: linear-gradient(rgba(244, 246, 249, 0.88), rgba(244, 246, 249, 0.88)),
                repeating-linear-gradient(
                    -45deg,
                    #dc143c 0px,
                    #dc143c 30px,
                    #ffffff 30px,
                    #ffffff 60px,
                    #0047ab 60px,
                    #0047ab 90px
                );
    background-size: 100% 100%, 200% 200%;
    animation: barberPoleRotate 20s linear infinite;
    position: relative;
    z-index: 1;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.testimonial-card {
    background: linear-gradient(135deg, #ffffff, #fafafa);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border-left: 5px solid transparent;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 5rem;
    color: rgba(0, 212, 255, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 212, 255, 0.2);
    border-left-color: var(--primary-color);
}

.stars {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 600;
    color: var(--secondary-color);
}

/* ============================================
   Call to Action Section
   ============================================ */

.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0a0e27 0%, #1e3a8a 50%, #7b2cbf 100%);
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.2) 0%, transparent 70%);
    animation: float 8s ease-in-out infinite;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(123, 44, 191, 0.15) 0%, transparent 70%);
    animation: float 10s ease-in-out infinite reverse;
}

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

.cta-section h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-section p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* ============================================
   Footer
   ============================================ */

.footer {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 3rem 0 1rem;
}

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

.footer-section h3 {
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.footer-section p {
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

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

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-section a:hover {
    color: var(--primary-color);
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.hours-list span {
    font-weight: 600;
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   Page Header (Interior Pages)
   ============================================ */

.page-header {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

/* ============================================
   Services Detail Page
   ============================================ */

.services-detail {
    padding: 5rem 0;
    background: linear-gradient(rgba(244, 246, 249, 0.88), rgba(244, 246, 249, 0.88)),
                repeating-linear-gradient(
                    -45deg,
                    #dc143c 0px,
                    #dc143c 30px,
                    #ffffff 30px,
                    #ffffff 60px,
                    #0047ab 60px,
                    #0047ab 90px
                );
    background-size: 100% 100%, 200% 200%;
    animation: barberPoleRotate 20s linear infinite;
    position: relative;
    z-index: 1;
}

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

.service-detail-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.service-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.service-detail-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

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

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

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

.service-features {
    list-style: none;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
}

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

.service-features-section {
    padding: 5rem 0;
    background: linear-gradient(rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.88)),
                repeating-linear-gradient(
                    -45deg,
                    #dc143c 0px,
                    #dc143c 30px,
                    #ffffff 30px,
                    #ffffff 60px,
                    #0047ab 60px,
                    #0047ab 90px
                );
    background-size: 100% 100%, 200% 200%;
    animation: barberPoleRotate 20s linear infinite;
    position: relative;
    z-index: 1;
}

/* ============================================
   About Page
   ============================================ */

.about-content {
    padding: 5rem 0;
    background: linear-gradient(rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.88)),
                repeating-linear-gradient(
                    -45deg,
                    #dc143c 0px,
                    #dc143c 30px,
                    #ffffff 30px,
                    #ffffff 60px,
                    #0047ab 60px,
                    #0047ab 90px
                );
    background-size: 100% 100%, 200% 200%;
    animation: barberPoleRotate 20s linear infinite;
    position: relative;
    z-index: 1;
}

.about-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
}

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

.lead {
    font-size: 1.3rem;
    color: var(--text-light);
    line-height: 1.8;
}

.about-story {
    background-color: var(--light-bg);
    padding: 4rem 3rem;
    border-radius: 10px;
    margin-bottom: 4rem;
}

.story-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.story-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.team-section {
    margin-bottom: 4rem;
}

.team-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
}

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

.team-member {
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.team-member p {
    color: var(--text-light);
    line-height: 1.8;
}

.values-section {
    margin-bottom: 4rem;
}

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

.value-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.value-card p {
    color: var(--text-light);
    line-height: 1.8;
}

.why-different {
    background-color: var(--light-bg);
    padding: 4rem 3rem;
    border-radius: 10px;
}

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

.different-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.different-item p {
    color: var(--text-light);
    line-height: 1.8;
    font-style: italic;
}

/* ============================================
   Reviews Page
   ============================================ */

.reviews-section {
    padding: 5rem 0;
    background: linear-gradient(rgba(244, 246, 249, 0.88), rgba(244, 246, 249, 0.88)),
                repeating-linear-gradient(
                    -45deg,
                    #dc143c 0px,
                    #dc143c 30px,
                    #ffffff 30px,
                    #ffffff 60px,
                    #0047ab 60px,
                    #0047ab 90px
                );
    background-size: 100% 100%, 200% 200%;
    animation: barberPoleRotate 20s linear infinite;
    position: relative;
    z-index: 1;
}

.rating-summary {
    margin-top: 2rem;
}

.stars-large {
    font-size: 2.5rem;
    color: var(--accent-color);
}

.rating-text {
    font-size: 1.2rem;
    margin-top: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

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

.review-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.review-header {
    margin-bottom: 1.5rem;
}

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

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

.author-info h3 {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 0.25rem;
}

.review-text {
    color: var(--text-dark);
    line-height: 1.8;
    font-style: italic;
}

.review-highlights {
    padding: 5rem 0;
    background: linear-gradient(rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.88)),
                repeating-linear-gradient(
                    -45deg,
                    #dc143c 0px,
                    #dc143c 30px,
                    #ffffff 30px,
                    #ffffff 60px,
                    #0047ab 60px,
                    #0047ab 90px
                );
    background-size: 100% 100%, 200% 200%;
    animation: barberPoleRotate 20s linear infinite;
    position: relative;
    z-index: 1;
}

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

.highlight-card {
    text-align: center;
    padding: 2rem;
}

.highlight-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

.highlight-card p {
    color: var(--text-light);
    font-style: italic;
    line-height: 1.8;
}

/* ============================================
   Contact Page
   ============================================ */

.contact-section {
    padding: 5rem 0;
    background: linear-gradient(rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.88)),
                repeating-linear-gradient(
                    -45deg,
                    #dc143c 0px,
                    #dc143c 30px,
                    #ffffff 30px,
                    #ffffff 60px,
                    #0047ab 60px,
                    #0047ab 90px
                );
    background-size: 100% 100%, 200% 200%;
    animation: barberPoleRotate 20s linear infinite;
    position: relative;
    z-index: 1;
}

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

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.contact-intro {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-detail-item {
    display: flex;
    gap: 1.5rem;
}

.detail-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.detail-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.detail-content p {
    color: var(--text-light);
    line-height: 1.8;
}

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

.detail-content a:hover {
    color: #a00d25;
}

.detail-note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

.hours-list-contact {
    list-style: none;
}

.hours-list-contact li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.hours-list-contact span {
    color: var(--text-light);
}

.hours-list-contact strong {
    color: var(--secondary-color);
}

.hours-list-contact .note {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-style: italic;
}

.map-container h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.map-wrapper {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
}

.map-info {
    text-align: center;
    padding: 1rem;
    background-color: var(--light-bg);
    border-radius: 10px;
    margin-top: 1rem;
}

.map-info p {
    color: var(--text-light);
    margin: 0.5rem 0;
}

.faq-section {
    padding: 5rem 0;
    background: linear-gradient(rgba(244, 246, 249, 0.88), rgba(244, 246, 249, 0.88)),
                repeating-linear-gradient(
                    -45deg,
                    #dc143c 0px,
                    #dc143c 30px,
                    #ffffff 30px,
                    #ffffff 60px,
                    #0047ab 60px,
                    #0047ab 90px
                );
    background-size: 100% 100%, 200% 200%;
    animation: barberPoleRotate 20s linear infinite;
    position: relative;
    z-index: 1;
}

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

.faq-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.8;
}

.directions-section {
    padding: 5rem 0;
    background: linear-gradient(rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.88)),
                repeating-linear-gradient(
                    -45deg,
                    #dc143c 0px,
                    #dc143c 30px,
                    #ffffff 30px,
                    #ffffff 60px,
                    #0047ab 60px,
                    #0047ab 90px
                );
    background-size: 100% 100%, 200% 200%;
    animation: barberPoleRotate 20s linear infinite;
    position: relative;
    z-index: 1;
}

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

.direction-card {
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: 10px;
}

.direction-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.direction-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ============================================
   Responsive Design - Mobile
   ============================================ */

@media screen and (max-width: 768px) {
    /* Navigation */
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--secondary-color);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
        padding: 2rem 0;
        gap: 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    /* Hero Section */
    .hero {
        height: 500px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    /* Grid Layouts */
    .info-grid,
    .services-grid,
    .features-grid,
    .testimonials-grid,
    .services-detail-grid,
    .team-highlights,
    .values-grid,
    .different-content,
    .reviews-grid,
    .highlights-grid,
    .faq-grid,
    .directions-grid {
        grid-template-columns: 1fr;
    }
    
    /* Contact Grid */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    /* Section Titles */
    .section-title {
        font-size: 2rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    /* CTA Buttons */
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media screen and (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
    }
    
    .info-card,
    .service-card,
    .testimonial-card {
        padding: 1.5rem;
    }
}
/* ============================================
   Price Lists Section
   ============================================ */

.price-lists-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.price-lists-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 212, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(123, 44, 191, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.price-lists-section .section-title {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-size: 2.5rem;
    position: relative;
}

.price-lists-section .section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 4rem;
    position: relative;
}

.price-lists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
    position: relative;
}

.price-list-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    position: relative;
}

.price-list-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.price-list-header {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.price-list-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 255, 255, 0.05) 10px,
        rgba(255, 255, 255, 0.05) 20px
    );
    animation: barberStripes 20s linear infinite;
}

.price-list-header.women {
    background: linear-gradient(135deg, #ec4899 0%, #d946a6 100%);
}

@keyframes barberStripes {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.price-list-header h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.price-list-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

.price-list-header .phone-number-highlight {
    font-size: 1.3rem;
    font-weight: bold;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    display: inline-block;
}

.price-list-header .phone-number-highlight a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.price-list-header .phone-number-highlight a:hover {
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.price-list-image-container {
    padding: 2rem;
    background: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
}

.price-list-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.price-list-card:hover .price-list-image {
    transform: scale(1.02);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

/* Responsive Design for Price Lists */
@media screen and (max-width: 1024px) {
    .price-lists-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media screen and (max-width: 768px) {
    .price-lists-section {
        padding: 4rem 0;
    }
    
    .price-lists-section .section-title {
        font-size: 2rem;
    }
    
    .price-lists-section .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .price-list-header h3 {
        font-size: 1.5rem;
    }
    
    .price-list-header {
        padding: 1.5rem;
    }
    
    .price-list-image-container {
        padding: 1rem;
    }
}

/* ============================================
   Gallery Section
   ============================================ */

.gallery-section {
    padding: 6rem 0;
    background: var(--white);
    position: relative;
}

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

.gallery-section .section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 4rem;
}

.gallery-category {
    margin-bottom: 5rem;
}

.gallery-category:last-child {
    margin-bottom: 0;
}

.gallery-category-title {
    text-align: center;
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.gallery-category-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    transition: var(--transition);
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.9), rgba(123, 44, 191, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-icon {
    font-size: 3rem;
    transform: scale(0);
    transition: transform 0.3s ease 0.1s;
}

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

.gallery-item:hover .gallery-icon {
    transform: scale(1);
}

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

.gallery-item:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-5px);
}

/* Responsive Design for Gallery */
@media screen and (max-width: 768px) {
    .gallery-section {
        padding: 4rem 0;
    }
    
    .gallery-section .section-title {
        font-size: 2rem;
    }
    
    .gallery-section .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .gallery-category-title {
        font-size: 1.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }
    
    .gallery-category {
        margin-bottom: 3rem;
    }
}

@media screen and (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-icon {
        font-size: 2rem;
    }
}
