/* Base Variables - Barber Shop Theme */
:root {
    --primary-color: #FF6B35;
    --primary-dark: #E85A2A;
    --secondary-color: #FF8C42;
    --accent-color: #FFD23F;
    --gold: #C9A050;
    --gold-light: #E0C381;
    --bg-dark: #000000;
    --bg-card: #0a0a0a;
    --bg-light: #121212;
    --text-light: #FFFFFF;
    --text-muted: #a0a0a0;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-elegant: 'Playfair Display', serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: rgba(255, 107, 53, 0.2);
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
    margin-left: 15px;
}

.btn-outline:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-color: transparent;
}

.btn-outline:active {
    transform: scale(0.98);
}

.btn-block {
    display: block;
    width: 100%;
    justify-content: center;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 107, 53, 0.1);
}

.navbar.scrolled {
    padding: 15px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    background: rgba(0, 0, 0, 0.98);
}

/* Floating Call Button */
.floating-call-btn {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    z-index: 1001;
    transition: var(--transition);
    animation: pulseCall 2s infinite;
}

.floating-call-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
}

/* Floating WhatsApp Button */
.floating-whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1001;
    transition: var(--transition);
    animation: pulseWhatsapp 2s infinite;
}

.floating-whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

@keyframes pulseCall {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 107, 53, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0);
    }
}

@keyframes pulseWhatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    font-size: 2rem;
    color: var(--primary-color);
    animation: flameFlicker 2s ease-in-out infinite;
}

@keyframes flameFlicker {

    0%,
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 8px rgba(255, 107, 53, 0.6));
    }

    50% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 15px rgba(255, 107, 53, 0.9));
    }
}

.logo-img {
    height: 40px;
    width: auto;
    transition: var(--transition);
    filter: drop-shadow(0 2px 8px rgba(255, 107, 53, 0.3));
}

.logo-img:hover {
    filter: drop-shadow(0 4px 12px rgba(255, 107, 53, 0.5));
    transform: scale(1.05);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-links li a {
    font-weight: 500;
    font-size: 0.95rem;
    opacity: 0.9;
    position: relative;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
    width: 100%;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: var(--primary-color);
    opacity: 1;
}

.btn-contact {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 10px 25px;
    border-radius: 25px;
    color: white !important;
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section - Barber Theme */
.hero {
    min-height: 100vh;
    width: 100%;
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #121212 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 0;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255, 140, 66, 0.06) 0%, transparent 40%);
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(20, 20, 20, 0.8) 100%);
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        repeating-linear-gradient(45deg,
            transparent,
            transparent 35px,
            rgba(255, 107, 53, 0.02) 35px,
            rgba(255, 107, 53, 0.02) 70px);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-badge-top {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    padding: 10px 25px;
    border-radius: 30px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.hero-badge-top i {
    color: var(--gold);
    font-size: 0.9rem;
}

.hero-badge-top span {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--text-light);
    font-weight: 800;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {

    0%,
    100% {
        filter: hue-rotate(0deg);
    }

    50% {
        filter: hue-rotate(10deg);
    }
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.hero-buttons {
    margin-bottom: 50px;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 107, 53, 0.1);
    padding: 12px 24px;
    border-radius: 30px;
    border: 1px solid rgba(255, 107, 53, 0.3);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.feature-badge:hover {
    background: rgba(255, 107, 53, 0.2);
    transform: translateY(-3px);
}

.feature-badge i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.feature-badge span {
    font-weight: 600;
    font-size: 0.9rem;
}

/* Hero Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 10;
    animation: fadeInUp 1s ease 1.5s both;
}

.scroll-mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 107, 53, 0.5);
    border-radius: 20px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {

    0%,
    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    50% {
        opacity: 0.3;
        transform: translateX(-50%) translateY(10px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.hero-scroll-indicator span {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Sections General */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    font-weight: 700;
}

.title-bar {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 0 auto 20px;
    border-radius: 2px;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.15rem;
}

/* About Section */
.about {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-light) 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-light);
    font-weight: 700;
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.8;
}

.features-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-light);
    font-size: 1.05rem;
}

.features-list i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.about-stats .stat-card:last-child {
    grid-column: span 2;
}

.stat-card {
    background: linear-gradient(135deg, var(--bg-card), var(--bg-light));
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), transparent);
    opacity: 0;
    transition: var(--transition);
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.stat-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Services Section */
.services {
    background: var(--bg-dark);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(255, 107, 53, 0.05) 0%, transparent 30%),
        radial-gradient(circle at 90% 80%, rgba(255, 140, 66, 0.04) 0%, transparent 30%);
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.service-card {
    background: linear-gradient(135deg, var(--bg-card), var(--bg-light));
    padding: 40px 30px;
    border-radius: 15px;
    transition: var(--transition);
    border: 1px solid rgba(255, 107, 53, 0.15);
    position: relative;
    overflow: hidden;
    display: block;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.25);
}

.service-card:active {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.service-card.featured-service {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), var(--bg-light));
    border-color: rgba(255, 107, 53, 0.3);
}

.service-card.featured-service::after {
    content: 'Popüler';
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.icon-box {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(255, 140, 66, 0.1));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: var(--transition);
}

.service-card:hover .icon-box {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transform: rotateY(360deg);
}

.service-card:hover .icon-box i {
    color: white;
}

.icon-box i {
    font-size: 1.8rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-light);
    font-weight: 700;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.service-price {
    display: inline-block;
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

/* Gallery Section */
.gallery {
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-dark) 100%);
    overflow: hidden;
}

.gallery-categories,
.gallery-photos {
    width: 100%;
}

/* Gallery Categories */
.gallery-categories {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.category-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--bg-card), var(--bg-light));
    padding: 15px 30px;
    border-radius: 50px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: var(--transition);
}

.category-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.category-item i {
    font-size: 1.3rem;
    color: var(--primary-color);
}

.category-item span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
}

/* Gallery Photos */
.gallery-photos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.gallery-photo-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid rgba(255, 107, 53, 0.3);
    aspect-ratio: 4/5;
    transition: var(--transition);
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.gallery-photo-item:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.3);
}

.gallery-photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-photo-item:hover img {
    transform: scale(1.1);
}

.gallery-photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-photo-item:hover .gallery-photo-overlay {
    transform: translateY(0);
}

.gallery-photo-overlay span {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Old gallery grid - kept for backwards compatibility */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.gallery-item {
    background: linear-gradient(135deg, var(--bg-card), var(--bg-light));
    border-radius: 20px;
    padding: 60px 30px;
    text-align: center;
    border: 1px solid rgba(255, 107, 53, 0.15);
    transition: var(--transition);
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.2);
}

.gallery-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: block;
    transition: var(--transition);
}

.gallery-item:hover .gallery-icon {
    transform: scale(1.1);
}

.gallery-item span {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
}

/* ================================================
   WHY CHOOSE US SECTION
   ================================================ */
.why-choose-us {
    margin-top: 80px;
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.03), rgba(0, 0, 0, 0.5));
    border-radius: 30px;
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.why-header {
    text-align: center;
    margin-bottom: 50px;
}

.why-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    font-weight: 700;
}

.why-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    padding: 0 30px;
}

.why-card {
    background: linear-gradient(135deg, var(--bg-card), var(--bg-light));
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 107, 53, 0.15);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), transparent);
    opacity: 0;
    transition: var(--transition);
}

.why-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.2);
}

.why-card:hover::before {
    opacity: 1;
}

.why-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(255, 140, 66, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.why-card:hover .why-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transform: scale(1.1) rotate(10deg);
}

.why-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.why-card:hover .why-icon i {
    color: white;
}

.why-card h4 {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 12px;
    font-weight: 600;
}

.why-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ================================================
   VIP EXPERIENCE SECTION
   ================================================ */
.vip-experience {
    margin-top: 80px;
    padding: 60px 50px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08), rgba(201, 160, 80, 0.05));
    border-radius: 30px;
    border: 2px solid rgba(255, 107, 53, 0.2);
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.vip-experience::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.vip-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-color), var(--gold));
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 20px;
}

.vip-badge i {
    color: white;
    font-size: 1rem;
}

.vip-badge span {
    color: white;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.vip-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--text-light);
    margin-bottom: 20px;
    font-weight: 700;
}

.vip-description {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.vip-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.vip-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.vip-feature i {
    width: 25px;
    height: 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: white;
}

.vip-feature span {
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 500;
}

.vip-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--primary-color), var(--gold));
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.3);
}

.vip-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.vip-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.vip-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(201, 160, 80, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: vipPulse 3s ease-in-out infinite;
}

.vip-circle::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px dashed rgba(255, 107, 53, 0.3);
    border-radius: 50%;
    animation: spin 20s linear infinite;
}

.vip-circle-inner {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.4);
}

.vip-circle-inner i {
    font-size: 3.5rem;
    color: white;
}

@keyframes vipPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* ================================================
   TESTIMONIALS SECTION
   ================================================ */
.testimonials {
    margin-top: 80px;
    padding: 60px 0;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 50px;
}

.testimonials-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    font-weight: 700;
}

.stars-decoration {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.stars-decoration i {
    color: var(--gold);
    font-size: 1.3rem;
    animation: starTwinkle 2s ease-in-out infinite;
}

.stars-decoration i:nth-child(2) {
    animation-delay: 0.2s;
}

.stars-decoration i:nth-child(3) {
    animation-delay: 0.4s;
}

.stars-decoration i:nth-child(4) {
    animation-delay: 0.6s;
}

.stars-decoration i:nth-child(5) {
    animation-delay: 0.8s;
}

@keyframes starTwinkle {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.testimonial-card {
    background: linear-gradient(135deg, var(--bg-card), var(--bg-light));
    padding: 35px 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 53, 0.15);
    transition: var(--transition);
    position: relative;
}

.testimonial-card.featured {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), var(--bg-light));
    transform: scale(1.02);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.15);
}

.testimonial-card.featured:hover {
    transform: scale(1.02) translateY(-8px);
}

.testimonial-quote {
    margin-bottom: 20px;
}

.testimonial-quote i {
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.5;
}

.testimonial-text {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar i {
    color: white;
    font-size: 1.3rem;
}

.author-info h5 {
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 3px;
}

.author-info span {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.testimonial-rating {
    display: flex;
    gap: 5px;
}

.testimonial-rating i {
    color: var(--gold);
    font-size: 0.9rem;
}


.logo-showcase {
    margin-top: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-showcase-container {
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
}

/* Animated Scissors - Left */
.showcase-scissors {
    font-size: 3rem;
    color: var(--primary-color);
    filter: drop-shadow(0 0 15px rgba(255, 107, 53, 0.6));
    animation: scissorsFloat 3s ease-in-out infinite;
}

.showcase-scissors.left {
    animation: scissorsFloatLeft 3s ease-in-out infinite;
}

@keyframes scissorsFloatLeft {

    0%,
    100% {
        transform: translateX(0) rotate(0deg);
    }

    50% {
        transform: translateX(-10px) rotate(-10deg);
    }
}

/* Logo Frame */
.showcase-logo-frame {
    position: relative;
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.frame-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--gold));
    border-radius: 50%;
    opacity: 0.3;
    filter: blur(20px);
    animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.05);
    }
}

.frame-border {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 3px solid transparent;
    border-radius: 50%;
    background: linear-gradient(var(--bg-dark), var(--bg-dark)) padding-box,
        linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--gold), var(--primary-color)) border-box;
    animation: borderRotate 4s linear infinite;
}

@keyframes borderRotate {
    0% {
        background: linear-gradient(var(--bg-dark), var(--bg-dark)) padding-box,
            linear-gradient(0deg, var(--primary-color), var(--secondary-color), var(--gold), var(--primary-color)) border-box;
    }

    25% {
        background: linear-gradient(var(--bg-dark), var(--bg-dark)) padding-box,
            linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--gold), var(--primary-color)) border-box;
    }

    50% {
        background: linear-gradient(var(--bg-dark), var(--bg-dark)) padding-box,
            linear-gradient(180deg, var(--primary-color), var(--secondary-color), var(--gold), var(--primary-color)) border-box;
    }

    75% {
        background: linear-gradient(var(--bg-dark), var(--bg-dark)) padding-box,
            linear-gradient(270deg, var(--primary-color), var(--secondary-color), var(--gold), var(--primary-color)) border-box;
    }

    100% {
        background: linear-gradient(var(--bg-dark), var(--bg-dark)) padding-box,
            linear-gradient(360deg, var(--primary-color), var(--secondary-color), var(--gold), var(--primary-color)) border-box;
    }
}

.showcase-logo-img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.showcase-logo-frame:hover .showcase-logo-img {
    transform: scale(1.05);
}

/* Animated Comb - Right */
.showcase-comb {
    animation: combFloatRight 3s ease-in-out infinite;
}

.showcase-comb.right {
    animation: combFloatRight 3s ease-in-out infinite;
}

@keyframes combFloatRight {

    0%,
    100% {
        transform: translateX(0) rotate(0deg);
    }

    50% {
        transform: translateX(10px) rotate(10deg);
    }
}

.comb-shape {
    width: 70px;
    height: 22px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border-radius: 6px;
    position: relative;
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

.comb-teeth-showcase {
    position: absolute;
    bottom: -18px;
    left: 6px;
    right: 6px;
    height: 18px;
    background: repeating-linear-gradient(90deg,
            var(--primary-color) 0px,
            var(--primary-color) 4px,
            transparent 4px,
            transparent 8px);
}


/* Contact Section */
.contact {
    background: linear-gradient(135deg, var(--bg-dark), var(--bg-light)),
        url('https://images.unsplash.com/photo-1621605815971-fbc98d665033?w=1920') no-repeat center center/cover;
    background-blend-mode: overlay;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
}

.contact-wrapper {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    background: linear-gradient(135deg, rgba(40, 20, 10, 0.95), rgba(60, 30, 15, 0.9));
    backdrop-filter: blur(15px);
    padding: 60px;
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.contact-wrapper iframe {
    width: 100% !important;
    height: 450px;
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.contact-info h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-info>p {
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.8;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(255, 140, 66, 0.1));
    color: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.info-item h4 {
    color: var(--text-light);
    margin-bottom: 5px;
    font-weight: 600;
}

.info-item p,
.info-item a {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.info-item a:hover {
    color: var(--primary-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 10px;
    color: var(--text-light);
    font-family: var(--font-body);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.2);
}

/* Footer */
.footer {
    background: #000;
    padding: 40px 0 30px;
    border-top: 1px solid rgba(255, 107, 53, 0.2);
}

.footer-seo {
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo-img {
    height: 35px;
    width: auto;
    filter: drop-shadow(0 2px 6px rgba(255, 107, 53, 0.3));
}

.footer-logo span {
    font-family: var(--font-heading);
    color: var(--text-light);
    font-weight: 700;
    font-size: 1.1rem;
}

.copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 1.1rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    transform: translateY(-3px);
}

/* Preloader with Barber Animation */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bg-dark), var(--bg-light));
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.loader-content {
    text-align: center;
    position: relative;
}

/* Barber Tools Animation */
.barber-tools-animation {
    position: relative;
    width: 200px;
    height: 100px;
    margin: 0 auto 30px;
}

.scissors-container {
    position: absolute;
    left: 20%;
    top: 50%;
    transform: translate(-50%, -50%);
    animation: scissorsMove 3s ease-in-out infinite;
}

.scissors-icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    filter: drop-shadow(0 0 15px rgba(255, 107, 53, 0.6));
    animation: scissorsCut 1s ease-in-out infinite;
}

@keyframes scissorsMove {

    0%,
    100% {
        left: 20%;
    }

    50% {
        left: 80%;
    }
}

@keyframes scissorsCut {

    0%,
    100% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(15deg);
    }

    75% {
        transform: rotate(-15deg);
    }
}

.comb-container {
    position: absolute;
    right: 20%;
    top: 50%;
    transform: translate(50%, -50%);
    animation: combMove 3s ease-in-out infinite;
}

.comb-icon {
    width: 60px;
    height: 20px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border-radius: 5px;
    position: relative;
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.4);
}

.comb-teeth {
    position: absolute;
    bottom: -15px;
    left: 5px;
    right: 5px;
    height: 15px;
    background: repeating-linear-gradient(90deg,
            var(--primary-color) 0px,
            var(--primary-color) 3px,
            transparent 3px,
            transparent 6px);
}

@keyframes combMove {

    0%,
    100% {
        right: 20%;
        transform: translate(50%, -50%) rotate(0deg);
    }

    50% {
        right: 80%;
        transform: translate(50%, -50%) rotate(10deg);
    }
}

.loader-logo-container {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 0 auto 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader-icon {
    font-size: 4rem;
    color: var(--primary-color);
    position: relative;
    z-index: 2;
    animation: flameGlow 2s infinite ease-in-out;
}

@keyframes flameGlow {

    0%,
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 10px rgba(255, 107, 53, 0.6));
    }

    50% {
        transform: scale(1.15);
        filter: drop-shadow(0 0 25px rgba(255, 107, 53, 1));
    }
}

.loader-logo {
    width: 80px;
    height: auto;
    position: relative;
    z-index: 2;
    animation: logoPulse 2s infinite ease-in-out;
    filter: drop-shadow(0 0 15px rgba(255, 107, 53, 0.6));
}

@keyframes logoPulse {

    0%,
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 10px rgba(255, 107, 53, 0.5));
    }

    50% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 25px rgba(255, 107, 53, 0.9));
    }
}

.energy-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-top-color: var(--primary-color);
    border-bottom-color: var(--secondary-color);
    border-radius: 50%;
    animation: spin 1.5s linear infinite;
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.4);
}

.energy-ring::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 3px solid transparent;
    border-left-color: var(--secondary-color);
    border-right-color: var(--primary-color);
    border-radius: 50%;
    animation: spinReverse 2s linear infinite;
}

.loader-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 3px;
    opacity: 0;
    transform: translateY(20px);
    animation: textReveal 1s ease-out forwards 0.5s;
    font-weight: 700;
}

/* Animations */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes spinReverse {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg);
    }
}

@keyframes textReveal {
    to {
        opacity: 1;
        transform: translateY(0);
        letter-spacing: 5px;
    }
}

/* Hide Preloader Class */
body.loaded #preloader {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Responsive */

/* Universal Overflow Fix */
/* Universal Overflow Fix */
img,
video {
    max-width: 100%;
    height: auto;
}

body,
html {
    width: 100%;
    margin: 0;
    padding: 0;
}

body {
    overflow-x: hidden;
    overflow-y: auto;
    /* Scroll'u garanti et */
}

/* Tablet and below */
@media (max-width: 1024px) {
    .container {
        width: 95%;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .section-title {
        font-size: 2.3rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile landscape and below */
@media (max-width: 900px) {

    .about-grid,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-wrapper {
        padding: 40px 30px;
    }

    .hero-title {
        font-size: 3rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

    .hero-buttons {
        margin-bottom: 35px;
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .feature-badge {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .logo-text {
        font-size: 0.95rem;
        letter-spacing: 0.3px;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        width: 80%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        padding: 40px;
        text-align: left;
        gap: 20px;
        opacity: 0;
        transform: translateX(100%);
        transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 1000;
    }

    .nav-links.active {
        display: flex;
        opacity: 1;
        transform: translateX(0);
        border-left: 2px solid rgba(255, 107, 53, 0.3);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-links li a {
        padding: 15px 0;
        display: block;
        font-size: 1.2rem;
        font-weight: 600;
        letter-spacing: 1px;
    }

    .mobile-menu-btn {
        display: block;
    }

    .section {
        padding: 70px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .service-card {
        padding: 35px 25px;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-stats .stat-card:last-child {
        grid-column: span 1;
    }

    .stat-card {
        padding: 30px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }

    .footer-logo {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }

    .hero-scroll-indicator {
        display: none;
    }
}

/* Mobile portrait */
@media (max-width: 600px) {
    .hero {
        min-height: 100vh;
        padding: 80px 0 40px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .hero-badge-top {
        padding: 8px 16px;
        margin-bottom: 20px;
    }

    .hero-badge-top span {
        font-size: 0.75rem;
    }

    .hero-title {
        font-size: 2.3rem;
        margin-bottom: 25px;
        line-height: 1.2;
        letter-spacing: -0.5px;
    }

    .hero-subtitle {
        font-size: 1.05rem;
        line-height: 1.7;
        margin-bottom: 35px;
        padding: 0 10px;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-bottom: 30px;
    }

    .btn {
        padding: 12px 28px;
        font-size: 0.85rem;
        width: 100%;
        justify-content: center;
    }

    .btn-outline {
        margin-left: 0;
    }

    .feature-badge {
        width: 100%;
        max-width: 250px;
        justify-content: center;
        padding: 10px 18px;
    }

    .feature-badge i {
        font-size: 1.1rem;
    }

    .feature-badge span {
        font-size: 0.85rem;
    }

    .section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-desc {
        font-size: 1rem;
    }

    .logo-text {
        font-size: 0.8rem;
        letter-spacing: 0.2px;
    }

    .logo-icon {
        font-size: 1.6rem;
    }

    .logo-img {
        height: 32px;
    }

    .footer-logo-img {
        height: 28px;
    }

    .navbar {
        padding: 15px 0;
    }

    .navbar.scrolled {
        padding: 12px 0;
    }

    .about-content h3 {
        font-size: 1.6rem;
    }

    .about-content p {
        font-size: 0.95rem;
    }

    .features-list li {
        font-size: 0.95rem;
    }

    .stat-card {
        padding: 25px 20px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    .service-card {
        padding: 30px 20px;
    }

    .service-card h3 {
        font-size: 1.3rem;
    }

    .service-card p {
        font-size: 0.9rem;
    }

    .icon-box {
        width: 60px;
        height: 60px;
    }

    .icon-box i {
        font-size: 1.5rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .gallery-item {
        padding: 40px 20px;
    }

    .gallery-icon {
        font-size: 2.5rem;
    }

    .contact-wrapper {
        padding: 30px 20px;
        gap: 35px;
    }

    .contact-info h2 {
        font-size: 1.8rem;
    }

    .contact-info>p {
        font-size: 0.95rem;
    }

    .info-item {
        gap: 15px;
        margin-bottom: 25px;
    }

    .info-item i {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .info-item h4 {
        font-size: 0.95rem;
    }

    .info-item p,
    .info-item a {
        font-size: 0.85rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 14px;
        font-size: 0.95rem;
    }

    .footer {
        padding: 35px 0 25px;
    }

    .footer-seo {
        padding-bottom: 25px;
    }

    .footer-seo h5 {
        font-size: 0.8rem !important;
    }

    .footer-seo p {
        font-size: 0.75rem !important;
    }

    .footer-logo span {
        font-size: 1rem;
    }

    .footer-logo i {
        font-size: 1.5rem;
    }

    .copyright {
        font-size: 0.85rem;
    }

    .social-links a {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    /* Fix Loader for Mobile */
    .barber-tools-animation {
        width: 150px;
        height: 80px;
    }

    .scissors-icon {
        font-size: 2.5rem;
    }

    .comb-icon {
        width: 45px;
        height: 15px;
    }

    .comb-teeth {
        height: 12px;
    }

    .loader-text {
        font-size: 1.1rem;
        letter-spacing: 2px;
    }

    @keyframes textReveal {
        to {
            opacity: 1;
            transform: translateY(0);
            letter-spacing: 3px;
        }
    }

    .loader-content {
        transform: translateY(-5vh);
    }

    .loader-logo-container {
        width: 100px;
        height: 100px;
        margin-bottom: 20px;
    }

    .loader-logo {
        width: 60px;
    }

    .floating-call-btn,
    .floating-whatsapp-btn {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }

    .floating-call-btn {
        bottom: 90px;
        right: 20px;
    }

    .floating-whatsapp-btn {
        bottom: 25px;
        right: 20px;
    }
}

/* Small mobile devices */
@media (max-width: 400px) {
    .hero-title {
        font-size: 1.9rem;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .logo-text {
        font-size: 0.7rem;
    }

    .logo-img {
        height: 28px;
    }

    .footer-logo-img {
        height: 24px;
    }

    .container {
        width: 92%;
        padding: 0 10px;
    }

    .btn {
        padding: 11px 24px;
        font-size: 0.8rem;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .service-card,
    .stat-card {
        padding: 25px 18px;
    }

    .contact-wrapper {
        padding: 25px 18px;
    }

    .hero-badge-top {
        padding: 6px 12px;
        gap: 8px;
    }

    .hero-badge-top span {
        font-size: 0.65rem;
    }

    .hero-badge-top i {
        font-size: 0.7rem;
    }

    /* Gallery responsive for small screens */
    .gallery-photos {
        grid-template-columns: 1fr;
    }

    .gallery-categories {
        gap: 15px;
    }

    .category-item {
        padding: 10px 20px;
    }

    .category-item i {
        font-size: 1rem;
    }

    .category-item span {
        font-size: 0.85rem;
    }
}

/* Gallery Tablet responsive */
@media (max-width: 768px) {
    .gallery-photos {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gallery-photo-item {
        aspect-ratio: 3/4;
    }
}

@media (min-width: 600px) and (max-width: 900px) {
    .gallery-photos {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Logo Showcase Responsive */
@media (max-width: 768px) {
    .logo-showcase {
        margin-top: 60px;
    }

    .logo-showcase-container {
        gap: 25px;
    }

    .showcase-scissors {
        font-size: 2rem;
    }

    .showcase-logo-frame {
        width: 140px;
        height: 140px;
    }

    .showcase-logo-img {
        width: 120px;
        height: 120px;
    }

    .comb-shape {
        width: 50px;
        height: 16px;
    }

    .comb-teeth-showcase {
        bottom: -14px;
        height: 14px;
    }
}

@media (max-width: 480px) {
    .logo-showcase-container {
        gap: 15px;
    }

    .showcase-scissors {
        font-size: 1.5rem;
    }

    .showcase-logo-frame {
        width: 110px;
        height: 110px;
    }

    .showcase-logo-img {
        width: 95px;
        height: 95px;
    }

    .comb-shape {
        width: 40px;
        height: 12px;
    }

    .comb-teeth-showcase {
        bottom: -10px;
        height: 10px;
        left: 4px;
        right: 4px;
    }
}

/* New Sections Responsive - Tablet */
@media (max-width: 1024px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vip-experience {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .vip-features {
        justify-content: center;
    }

    .vip-visual {
        order: -1;
    }

    .vip-circle {
        width: 160px;
        height: 160px;
    }

    .vip-circle-inner {
        width: 110px;
        height: 110px;
    }

    .vip-circle-inner i {
        font-size: 2.5rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .testimonial-card.featured {
        transform: none;
    }
}

/* New Sections Responsive - Mobile */
@media (max-width: 768px) {
    .why-choose-us {
        margin-top: 50px;
        padding: 40px 20px;
    }

    .why-title {
        font-size: 1.8rem;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }

    .why-card {
        padding: 30px 20px;
    }

    .vip-experience {
        margin-top: 50px;
        padding: 40px 25px;
    }

    .vip-title {
        font-size: 1.8rem;
    }

    .vip-description {
        font-size: 0.95rem;
    }

    .vip-features {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .vip-cta {
        padding: 12px 28px;
        font-size: 0.9rem;
    }

    .testimonials {
        margin-top: 50px;
        padding: 40px 0;
    }

    .testimonials-title {
        font-size: 1.8rem;
    }

    .testimonial-card {
        padding: 30px 20px;
    }

    .testimonial-text {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .why-choose-us {
        margin-top: 40px;
        padding: 30px 15px;
        border-radius: 20px;
    }

    .why-title {
        font-size: 1.5rem;
    }

    .why-subtitle {
        font-size: 0.95rem;
    }

    .why-header {
        margin-bottom: 30px;
    }

    .why-icon {
        width: 60px;
        height: 60px;
    }

    .why-icon i {
        font-size: 1.5rem;
    }

    .why-card h4 {
        font-size: 1.1rem;
    }

    .vip-experience {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .vip-title {
        font-size: 1.5rem;
    }

    .vip-badge {
        padding: 6px 15px;
    }

    .vip-badge span {
        font-size: 0.75rem;
    }

    .vip-circle {
        width: 130px;
        height: 130px;
    }

    .vip-circle-inner {
        width: 90px;
        height: 90px;
    }

    .vip-circle-inner i {
        font-size: 2rem;
    }

    .testimonials-title {
        font-size: 1.5rem;
    }

    .stars-decoration i {
        font-size: 1rem;
    }

    .author-avatar {
        width: 45px;
        height: 45px;
    }

    .author-avatar i {
        font-size: 1.1rem;
    }
}

/* Hide Scrollbar for Entire Site */
::-webkit-scrollbar {
    display: none;
    width: 0;
    background: transparent;
}

* {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}