/* ===== VARIABLES ===== */
:root {
    /* Barbershop Industrial Palette */
    --brick-red: #8B4513;
    --brick-dark: #5C2E0F;
    --leather-brown: #3E2723;
    --metal-gray: #424242;
    --brass-gold: #B8860B;
    --wood-dark: #2C1810;
    --cream: #F5F5DC;
    --black: #000000;
    --white: #ffffff;

    /* Main colors */
    --primary-color: var(--brick-red);
    --primary-dark: var(--brick-dark);
    --accent-color: var(--brass-gold);
    --dark-color: var(--leather-brown);
    --light-color: var(--cream);
    --secondary-color: var(--metal-gray);

    /* Backgrounds */
    --bg-brick:
        linear-gradient(135deg, rgba(0,0,0,0.3) 0%, transparent 50%),
        repeating-linear-gradient(
            0deg,
            #8B4513 0px,
            #8B4513 10px,
            #5C2E0F 10px,
            #5C2E0F 11px
        ),
        repeating-linear-gradient(
            90deg,
            #8B4513 0px,
            #8B4513 30px,
            #5C2E0F 30px,
            #5C2E0F 31px
        );

    --bg-leather:
        linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 100%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 2px,
            rgba(255,255,255,0.03) 2px,
            rgba(255,255,255,0.03) 4px
        ),
        #3E2723;

    --bg-wood:
        repeating-linear-gradient(
            90deg,
            #2C1810 0px,
            #3E2723 2px,
            #2C1810 4px
        );

    --font-primary: 'Montserrat', sans-serif;
    --font-rock: 'Rock Salt', cursive;

    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.6);

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--dark-color);
    background: var(--bg-brick);
    line-height: 1.7;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* ===== SERVICE PAGES (Barbershop Industrial Style) ===== */
.service-hero {
    min-height: 60vh;
    background: var(--bg-leather);
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(184, 134, 11, 0.1) 2px,
            rgba(184, 134, 11, 0.1) 4px
        );
    pointer-events: none;
}

.service-hero__content {
    position: relative;
    z-index: 1;
}

.service-hero__subtitle {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-color);
    margin-bottom: 15px;
    padding: 8px 20px;
    background: rgba(212, 175, 55, 0.1);
    border-left: 3px solid var(--accent-color);
}

.service-hero__title {
    font-size: 4rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: -2px;
}

.service-hero__description {
    font-size: 1.25rem;
    color: var(--gray-light);
    margin-bottom: 40px;
    max-width: 600px;
}

/* Service Details */
.service-details {
    background: var(--bg-wood);
    position: relative;
}

.service-details::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.6) 100%);
    pointer-events: none;
}

.service-details .container {
    position: relative;
    z-index: 1;
}

.service-details__grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-top: 80px;
}

.service-details__content h2 {
    font-size: 2.5rem;
    color: var(--brass-gold);
    margin-bottom: 25px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1px;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.8);
}

.service-details__content h3 {
    font-size: 1.75rem;
    color: var(--cream);
    margin: 40px 0 20px;
    font-weight: 700;
    border-left: 4px solid var(--brass-gold);
    padding-left: 20px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.8);
}

.service-details__content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--cream);
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}

.service-details__content strong {
    color: var(--brass-gold);
}

.service-benefits {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 30px 0;
}

.service-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: var(--cream);
    padding: 15px;
    background: var(--bg-wood);
    border-radius: 4px;
    border: 2px solid var(--brass-gold);
    transition: var(--transition);
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.5);
}

.service-benefits li:hover {
    background: var(--bg-leather);
    color: var(--brass-gold);
    transform: translateX(5px);
    border-color: var(--brass-gold);
    box-shadow: 0 4px 12px rgba(184, 134, 11, 0.4);
}

.service-benefits li i {
    color: var(--brass-gold);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.service-benefits li:hover i {
    color: var(--cream);
}

/* Service Gallery */
.service-gallery {
    margin: 30px 0;
    border-radius: 4px;
    overflow: hidden;
    border: 4px solid var(--brass-gold);
    box-shadow: 0 8px 32px rgba(0,0,0,0.8);
}

.service-main-image {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

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

/* Service Types */
.service-types {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.service-type-card {
    background: var(--bg-brick);
    padding: 0;
    border-radius: 4px;
    border: 3px solid var(--metal-gray);
    transition: var(--transition);
    box-shadow: inset 0 0 20px rgba(0,0,0,0.5), 0 4px 12px rgba(0,0,0,0.4);
    position: relative;
    overflow: hidden;
}

.service-type-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--brass-gold) 0%, var(--brick-red) 50%, var(--brass-gold) 100%);
    z-index: 1;
}

.service-type-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.service-type-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    filter: brightness(0.8);
}

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

.service-type-card h4,
.service-type-card p {
    padding: 0 30px;
}

.service-type-card h4 {
    font-size: 1.25rem;
    margin: 20px 0 10px;
    color: var(--brass-gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-type-card p {
    color: var(--cream);
    margin-bottom: 30px;
}

.service-type-card:hover {
    background: var(--bg-leather);
    color: var(--cream);
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(184, 134, 11, 0.4);
    border-color: var(--brass-gold);
}

.service-type-card:hover h4 {
    color: var(--cream);
}

.service-type-card i {
    margin-right: 10px;
    color: var(--brass-gold);
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.process-step {
    text-align: center;
    padding: 30px 20px;
    background: var(--bg-brick);
    border-radius: 4px;
    position: relative;
    border: 3px solid var(--brass-gold);
    box-shadow: inset 0 0 20px rgba(0,0,0,0.6), 0 4px 12px rgba(0,0,0,0.6);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--brass-gold), #D4A017);
    color: var(--leather-brown);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 900;
    margin: 0 auto 20px;
    box-shadow: 0 5px 20px rgba(184, 134, 11, 0.5);
    border: 2px solid var(--metal-gray);
}

.process-step h4 {
    font-size: 1.1rem;
    color: var(--brass-gold);
    margin-bottom: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.process-step p {
    font-size: 0.9rem;
    color: var(--cream);
    line-height: 1.6;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}

/* Sidebar */
.sidebar-card {
    background: var(--bg-brick);
    padding: 30px;
    border-radius: 4px;
    margin-bottom: 30px;
    border: 3px solid var(--brass-gold);
    box-shadow: inset 0 0 20px rgba(0,0,0,0.6), 0 8px 24px rgba(0,0,0,0.6);
    position: relative;
}

.sidebar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brass-gold), var(--brick-red), var(--brass-gold));
}

.sidebar-card h3 {
    font-size: 1.25rem;
    color: var(--brass-gold);
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.8);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--brass-gold);
}

.info-item:last-of-type {
    border-bottom: none;
    margin-bottom: 20px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--brass-gold);
    width: 30px;
    text-align: center;
}

.info-item strong {
    display: block;
    color: var(--cream);
    font-size: 0.9rem;
    margin-bottom: 3px;
    font-weight: 700;
}

.info-item p {
    color: var(--cream);
    font-size: 0.95rem;
    margin: 0;
}

.related-services {
    list-style: none;
    padding: 0;
}

.related-services li {
    margin-bottom: 10px;
}

.related-services a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: var(--bg-leather);
    border-radius: 4px;
    color: var(--cream);
    font-weight: 700;
    transition: var(--transition);
    border: 2px solid var(--metal-gray);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.related-services a:hover {
    background: var(--brass-gold);
    color: var(--leather-brown);
    transform: translateX(5px);
    border-color: var(--brass-gold);
}

.related-services i {
    color: var(--brass-gold);
}

.related-services a:hover i {
    color: var(--leather-brown);
}

.sidebar-cta {
    background: var(--bg-leather);
    color: var(--cream);
    text-align: center;
}

.sidebar-cta h3 {
    color: var(--brass-gold);
}

.sidebar-cta p {
    color: var(--cream);
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}

.sidebar-cta .btn {
    width: 100%;
    margin-bottom: 10px;
}

/* CTA Section */
.cta-section {
    background: var(--bg-leather);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 4px solid var(--brass-gold);
    border-bottom: 4px solid var(--brass-gold);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 100%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(184, 134, 11, 0.1) 10px,
            rgba(184, 134, 11, 0.1) 20px
        );
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-size: 3rem;
    color: var(--brass-gold);
    margin-bottom: 20px;
    font-weight: 900;
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
}

.cta-section p {
    font-size: 1.25rem;
    color: var(--cream);
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.8);
}

.btn--large {
    padding: 18px 50px;
    font-size: 1.1rem;
}

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

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-leather);
    box-shadow: var(--shadow-lg);
    border-radius: 4px;
    padding: 15px 0;
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    z-index: 100;
    border: 3px solid var(--brass-gold);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 12px 25px;
    color: var(--cream);
    font-weight: 700;
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.dropdown-menu a:hover {
    background: var(--brass-gold);
    color: var(--leather-brown);
    padding-left: 30px;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.3);
}

.section {
    padding: 100px 0;
}

.section__header {
    text-align: center;
    margin-bottom: 60px;
}

.section__subtitle {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.section__title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

/* ===== BUTTONS (Barbershop Style) ===== */
.btn {
    display: inline-block;
    padding: 15px 35px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 4px;
    transition: var(--transition);
    cursor: pointer;
    border: 3px solid transparent;
    font-size: 0.875rem;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn--primary {
    background: var(--bg-leather);
    color: var(--brass-gold);
    border-color: var(--brass-gold);
    box-shadow: var(--shadow-md);
}

.btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(184, 134, 11, 0.5);
    background: var(--brick-red);
    color: var(--cream);
}

.btn--outline {
    border: 3px solid var(--brass-gold);
    color: var(--brass-gold);
    background: transparent;
}

.btn--outline:hover {
    background: var(--brass-gold);
    color: var(--leather-brown);
    box-shadow: 0 4px 16px rgba(184, 134, 11, 0.4);
}

.btn--accent {
    background: linear-gradient(135deg, var(--brass-gold) 0%, #D4A017 100%);
    color: var(--leather-brown);
    border: 3px solid var(--brass-gold);
    font-weight: 700;
}

.btn--accent:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(184, 134, 11, 0.6);
    background: var(--bg-wood);
    color: var(--cream);
}

.btn--full {
    width: 100%;
}

/* ===== HEADER/NAV (Barbershop Style) ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--bg-leather);
    box-shadow: var(--shadow-md);
    z-index: 100;
    transition: var(--transition);
    border-bottom: 4px solid var(--brass-gold);
}

.header.scroll-header {
    box-shadow: 0 4px 20px rgba(0,0,0,0.6);
    background: var(--bg-wood);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav__logo-img {
    height: 50px;
    width: auto;
    transition: var(--transition);
}

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

.nav__list {
    display: flex;
    gap: 40px;
}

.nav__link {
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--cream);
    transition: var(--transition);
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--brass-gold);
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(184, 134, 11, 0.6);
}

.nav__link:hover::after,
.nav__link.active::after {
    width: 100%;
}

.nav__link:hover,
.nav__link.active {
    color: var(--brass-gold);
}

.nav__toggle,
.nav__close {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--brass-gold);
}

/* ===== HERO (Barbershop Style) ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--bg-brick);
    padding-top: 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
    pointer-events: none;
}

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

.hero__content {
    position: relative;
    z-index: 1;
}

.hero__subtitle {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--brass-gold);
    margin-bottom: 20px;
    border: 2px solid var(--brass-gold);
    padding: 8px 20px;
    background: rgba(0,0,0,0.5);
}

.hero__title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    color: var(--cream);
    margin-bottom: 20px;
    text-shadow: 4px 4px 8px rgba(0,0,0,0.8);
}

.hero__title .rock {
    color: var(--brass-gold);
    font-family: var(--font-rock);
    font-size: 5rem;
    text-shadow: 4px 4px 12px rgba(184, 134, 11, 0.8);
}

.hero__description {
    font-size: 1.25rem;
    color: var(--cream);
    margin-bottom: 40px;
    max-width: 500px;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.8);
    font-weight: 500;
}

.hero__buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero__image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__logo {
    width: 100%;
    max-width: 450px;
    height: auto;
    filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.2));
    animation: logoFloat 4s ease-in-out infinite;
}

/* Logo float animation */
@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Hover effect */
.hero__logo:hover {
    filter: drop-shadow(0 20px 50px rgba(231, 76, 60, 0.4));
    animation: logoFloat 2s ease-in-out infinite;
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-down a {
    font-size: 2rem;
    color: var(--primary-color);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-20px);
    }
    60% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* ===== SERVICES (Barbershop Style) ===== */
.services {
    background: var(--bg-wood);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 100%);
    pointer-events: none;
}

.services .section__title {
    color: var(--brass-gold);
    text-shadow: 2px 2px 6px rgba(0,0,0,0.8);
}

.services .section__subtitle {
    color: var(--cream);
}

.services .container {
    position: relative;
    z-index: 1;
}

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

.service__card {
    padding: 40px 30px;
    background: var(--bg-brick);
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    border: 3px solid var(--metal-gray);
    box-shadow: inset 0 0 30px rgba(0,0,0,0.5), 0 8px 24px rgba(0,0,0,0.6);
    position: relative;
}

.service__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brass-gold), var(--brick-red), var(--brass-gold));
}

.service__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(184, 134, 11, 0.5);
    background: var(--bg-leather);
    border-color: var(--brass-gold);
}

.service__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--brass-gold), #D4A017);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--leather-brown);
    transition: var(--transition);
    border: 3px solid var(--metal-gray);
    box-shadow: inset 0 2px 4px rgba(255,255,255,0.2), 0 4px 12px rgba(0,0,0,0.5);
}

.service__card:hover .service__icon {
    transform: rotateY(360deg) scale(1.1);
    box-shadow: 0 8px 24px rgba(184, 134, 11, 0.8);
}

.service__card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brass-gold);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service__card p {
    color: var(--cream);
    line-height: 1.6;
}

/* ===== GALLERY (Barbershop Style) ===== */
.gallery {
    background: var(--bg-leather);
    position: relative;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.7) 100%);
    pointer-events: none;
}

.gallery .section__title {
    color: var(--brass-gold);
    text-shadow: 2px 2px 6px rgba(0,0,0,0.8);
}

.gallery .section__subtitle {
    color: var(--cream);
}

.gallery .container {
    position: relative;
    z-index: 1;
}

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

.gallery__item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 1;
    cursor: pointer;
    border: 4px solid var(--brass-gold);
    box-shadow: inset 0 0 20px rgba(0,0,0,0.8), 0 8px 24px rgba(0,0,0,0.6);
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery__overlay h4 {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    transform: translateY(20px);
    transition: var(--transition);
}

.gallery__item:hover img {
    transform: scale(1.1);
}

.gallery__item:hover .gallery__overlay {
    opacity: 0.95;
}

.gallery__item:hover .gallery__overlay h4 {
    transform: translateY(0);
}

/* ===== REVIEWS BANNER (Barbershop Style) ===== */
.reviews-banner {
    background: var(--bg-brick);
    padding: 60px 0;
    position: relative;
    border-top: 4px solid var(--brass-gold);
    border-bottom: 4px solid var(--brass-gold);
}

.reviews-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.6) 100%);
    pointer-events: none;
}

.reviews-banner .container {
    position: relative;
    z-index: 1;
}

.reviews-banner__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.review-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    color: var(--brass-gold);
    animation: fadeInUp 0.6s ease-out;
    padding: 30px;
    background: var(--bg-leather);
    border-radius: 4px;
    border: 3px solid var(--brass-gold);
    box-shadow: inset 0 0 20px rgba(0,0,0,0.5), 0 8px 24px rgba(0,0,0,0.6);
}

.review-stat i {
    font-size: 3rem;
    opacity: 0.9;
    color: var(--brass-gold);
    text-shadow: 0 4px 8px rgba(0,0,0,0.8);
}

.review-stat__text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.review-stat strong {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
    color: var(--cream);
    text-shadow: 2px 2px 6px rgba(0,0,0,0.8);
}

.review-stat span {
    font-size: 0.9rem;
    font-weight: 700;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--brass-gold);
}

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

/* ===== ABOUT (Barbershop Style) ===== */
.about {
    background: var(--bg-wood);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 100%);
    pointer-events: none;
}

.about .container {
    position: relative;
    z-index: 1;
}

.about .section__title {
    color: var(--brass-gold);
    text-shadow: 2px 2px 6px rgba(0,0,0,0.8);
}

.about .section__subtitle {
    color: var(--cream);
}

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

.about__image {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.8);
    border: 4px solid var(--brass-gold);
}

.about__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.about__image:hover img {
    transform: scale(1.05);
}

.about__content .section__subtitle,
.about__content .section__title {
    text-align: left;
    margin-bottom: 20px;
}

.about__description {
    color: var(--cream);
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.8);
}

.about__features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: var(--bg-leather);
    border-radius: 4px;
    border: 2px solid var(--brass-gold);
    box-shadow: inset 0 2px 8px rgba(0,0,0,0.6);
}

.feature i {
    color: var(--brass-gold);
    font-size: 1.25rem;
}

.feature span {
    font-weight: 700;
    color: var(--cream);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* Team Section */
.team__section {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 3px solid var(--brass-gold);
}

.team__section .section__header {
    margin-bottom: 50px;
}

.team__section .section__title {
    color: var(--brass-gold);
    text-shadow: 2px 2px 6px rgba(0,0,0,0.8);
}

.team__section .section__subtitle {
    color: var(--cream);
}

.team__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
}

.team__card {
    background: var(--bg-leather);
    border-radius: 8px;
    padding: 40px;
    border: 3px solid var(--brass-gold);
    box-shadow: 0 8px 32px rgba(0,0,0,0.8), inset 0 2px 8px rgba(0,0,0,0.6);
    transition: var(--transition);
}

.team__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(184, 134, 11, 0.3), inset 0 2px 8px rgba(0,0,0,0.6);
}

.team__content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.team__name {
    font-size: 2rem;
    font-weight: 900;
    color: var(--brass-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.8);
}

.team__role {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--brick-red);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 10px 0;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--brass-gold);
}

.team__bio {
    color: var(--cream);
    font-size: 1rem;
    line-height: 1.8;
    margin: 0;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.8);
}

.team__signature {
    margin-top: 10px;
    padding-top: 20px;
    border-top: 2px solid var(--brass-gold);
    font-size: 1.1rem;
    color: var(--brass-gold);
    font-weight: 600;
    text-align: right;
}

.team__signature em {
    font-style: italic;
}

/* ===== CONTACT (Barbershop Style) ===== */
.contact {
    background: var(--bg-brick);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.8) 100%);
    pointer-events: none;
}

.contact .container {
    position: relative;
    z-index: 1;
}

.contact .section__title {
    color: var(--brass-gold);
    text-shadow: 2px 2px 6px rgba(0,0,0,0.8);
}

.contact .section__subtitle {
    color: var(--cream);
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact__info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info__card {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.info__card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.info__icon {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info__icon i {
    color: var(--white);
    font-size: 1.25rem;
}

.info__content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.info__content p {
    color: var(--gray);
    line-height: 1.6;
}

.info__content a {
    color: var(--primary-color);
    transition: var(--transition);
}

.info__content a:hover {
    text-decoration: underline;
}

.contact__form {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.form__group {
    position: relative;
    margin-bottom: 30px;
}

.form__group input,
.form__group textarea,
.form__group select {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--light-color);
    border-radius: 10px;
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--dark-color);
    background: var(--white);
    transition: var(--transition);
}

.form__group input:focus,
.form__group textarea:focus,
.form__group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form__group label {
    position: absolute;
    top: 15px;
    left: 20px;
    color: var(--gray);
    font-size: 1rem;
    pointer-events: none;
    transition: var(--transition);
}

.form__group input:focus + label,
.form__group textarea:focus + label,
.form__group select:focus + label,
.form__group input:not(:placeholder-shown) + label,
.form__group textarea:not(:placeholder-shown) + label,
.form__group select:valid + label {
    top: -10px;
    left: 15px;
    font-size: 0.75rem;
    background: var(--white);
    padding: 0 5px;
    color: var(--primary-color);
}

/* ===== FOOTER (Barbershop Style) ===== */
.footer {
    background: var(--bg-wood);
    color: var(--cream);
    padding: 60px 0 30px;
    position: relative;
    border-top: 6px solid var(--brass-gold);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.6) 100%);
    pointer-events: none;
}

.footer .container {
    position: relative;
    z-index: 1;
}

.footer__content {
    text-align: center;
    margin-bottom: 30px;
}

.footer__logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.footer__logo-img {
    height: 80px;
    width: auto;
    filter: drop-shadow(0 4px 12px rgba(184, 134, 11, 0.6));
    transition: var(--transition);
}

.footer__logo-img:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 8px 24px rgba(184, 134, 11, 0.8));
}

.footer__description {
    color: var(--brass-gold);
    margin-bottom: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer__social {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social__link {
    width: 50px;
    height: 50px;
    background: var(--bg-leather);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: var(--transition);
    border: 2px solid var(--brass-gold);
    color: var(--brass-gold);
}

.social__link:hover {
    background: var(--brass-gold);
    color: var(--leather-brown);
    transform: translateY(-8px) rotate(5deg);
    box-shadow: 0 8px 24px rgba(184, 134, 11, 0.6);
}

.footer__bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 2px solid var(--brass-gold);
    color: var(--cream);
    font-size: 0.875rem;
    position: relative;
    z-index: 1;
}

/* ===== WHATSAPP FLOAT (Barbershop Style) ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    box-shadow: 0 4px 16px rgba(0,0,0,0.6), inset 0 2px 4px rgba(255,255,255,0.3);
    z-index: 99;
    transition: var(--transition);
    animation: pulse 2s infinite;
    border: 3px solid var(--brass-gold);
}

.whatsapp-float:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.8), inset 0 2px 4px rgba(255,255,255,0.4);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7), 0 4px 16px rgba(0,0,0,0.6);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0), 0 4px 16px rgba(0,0,0,0.6);
    }
}

/* ===== RESPONSIVE ===== */

/* Tablets and medium devices */
@media screen and (max-width: 968px) {
    .container {
        padding: 0 30px;
    }

    .section {
        padding: 80px 0;
    }

    .section__title {
        font-size: 2rem;
    }

    .hero__container,
    .about__grid,
    .contact__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero__title {
        font-size: 3rem;
    }

    .hero__title .rock {
        font-size: 3.5rem;
    }

    .hero__image {
        order: -1;
    }

    .hero__logo {
        max-width: 350px;
    }

    /* Mobile Navigation */
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: var(--white);
        box-shadow: var(--shadow-lg);
        padding: 80px 40px;
        transition: var(--transition);
        overflow-y: auto;
    }

    .nav__menu.show-menu {
        right: 0;
    }

    .nav__list {
        flex-direction: column;
        gap: 30px;
    }

    .nav__link {
        font-size: 1.1rem;
    }

    .nav__toggle,
    .nav__close {
        display: block;
    }

    .nav__close {
        position: absolute;
        top: 20px;
        right: 20px;
    }

    /* Services Grid */
    .services__grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }

    /* Gallery Grid */
    .gallery__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    /* Reviews Banner */
    .reviews-banner__content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .review-stat strong {
        font-size: 2rem;
    }

    /* About Section */
    .about__image {
        max-height: 400px;
    }

    /* Contact Info */
    .contact__info {
        gap: 20px;
    }

    /* Team Section - Tablet */
    .team__card {
        padding: 30px;
    }
}

/* Mobile devices */
@media screen and (max-width: 576px) {
    html {
        font-size: 16px;
    }

    .container {
        padding: 0 16px;
    }

    .section {
        padding: 50px 0;
    }

    .section__header {
        margin-bottom: 35px;
    }

    .section__title {
        font-size: 1.85rem;
        line-height: 1.3;
    }

    .section__subtitle {
        font-size: 1rem;
        line-height: 1.6;
    }

    /* Hero Mobile Optimization */
    .hero {
        min-height: auto;
        padding: 100px 0 50px;
    }

    .hero__container {
        gap: 25px;
    }

    .hero__title {
        font-size: 2.4rem;
        line-height: 1.25;
    }

    .hero__title .rock {
        font-size: 2.8rem;
        display: block;
        margin-top: 8px;
    }

    .hero__description {
        font-size: 1.05rem;
        margin-bottom: 25px;
        line-height: 1.6;
    }

    .hero__buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .hero__logo {
        max-width: 260px;
    }

    .scroll-down {
        display: none;
    }

    /* Buttons - Optimized for touch */
    .btn {
        width: 100%;
        text-align: center;
        padding: 16px 32px;
        font-size: 0.95rem;
        min-height: 52px;
        font-weight: 600;
    }

    /* Navigation - Better mobile experience */
    .nav {
        height: 65px;
        padding: 0 16px;
    }

    .nav__logo-img {
        height: 42px;
    }

    .nav__menu {
        width: 100%;
        max-width: 100%;
        padding: 80px 24px 40px;
        background: var(--bg-wood);
    }

    .nav__menu::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(180deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.85) 100%);
        pointer-events: none;
    }

    .nav__list {
        position: relative;
        z-index: 1;
    }

    .nav__link {
        color: var(--cream);
        font-size: 1.2rem;
        font-weight: 600;
        padding: 12px 0;
    }

    .nav__link:hover {
        color: var(--brass-gold);
    }

    .nav__toggle,
    .nav__close {
        color: var(--brass-gold);
        font-size: 1.8rem;
    }

    /* Services - Better mobile layout */
    .services__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .service__card {
        padding: 28px 20px;
        text-decoration: none;
        display: block;
    }

    .service__icon {
        width: 75px;
        height: 75px;
        font-size: 1.85rem;
        margin-bottom: 18px;
    }

    .service__card h3 {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }

    .service__card p {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    /* Gallery - Optimized for mobile */
    .gallery__grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .gallery__item {
        aspect-ratio: 4/3;
        border-radius: 8px;
        overflow: hidden;
    }

    .gallery__item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* Reviews Banner - Better mobile presentation */
    .reviews-banner {
        padding: 35px 0;
    }

    .reviews-banner__content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .review-stat {
        gap: 12px;
        padding: 20px;
    }

    .review-stat i {
        font-size: 2.8rem;
    }

    .review-stat strong {
        font-size: 2.2rem;
    }

    .review-stat span {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    /* About Features */
    .about__features {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 25px;
    }

    .feature {
        font-size: 0.95rem;
    }

    /* Contact Section - Touch-friendly */
    .contact__grid {
        gap: 25px;
    }

    .contact__info {
        gap: 12px;
    }

    .info__card {
        padding: 24px 20px;
        flex-direction: column;
        text-align: center;
        align-items: center;
        min-height: 140px;
    }

    .info__icon {
        width: 52px;
        height: 52px;
        font-size: 1.3rem;
    }

    .info__content h4 {
        font-size: 1.05rem;
        margin-bottom: 8px;
    }

    .info__content p,
    .info__content a {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    /* Contact Form - Better mobile UX */
    .contact__form {
        padding: 28px 20px;
    }

    .form__group {
        margin-bottom: 22px;
    }

    .form__group input,
    .form__group textarea,
    .form__group select {
        padding: 14px 16px;
        font-size: 1rem;
        min-height: 50px;
        border-radius: 8px;
    }

    .form__group textarea {
        min-height: 120px;
    }

    .form__group label {
        font-size: 0.95rem;
        left: 16px;
    }

    /* Footer - Better mobile spacing */
    .footer {
        padding: 45px 0 20px;
    }

    .footer__logo-img {
        height: 65px;
    }

    .footer__description {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .footer__social {
        gap: 12px;
        flex-wrap: wrap;
    }

    .social__link {
        width: 52px;
        height: 52px;
        font-size: 1.3rem;
    }

    /* WhatsApp Float - Optimized touch target */
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 60px;
        height: 60px;
        font-size: 1.9rem;
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    }

    .whatsapp-float:active {
        transform: scale(0.95);
    }

    /* Service Pages Mobile Optimization */
    .service-details__grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 30px;
    }

    .service-details__content h2 {
        font-size: 1.8rem;
        margin-bottom: 20px;
        line-height: 1.2;
    }

    .service-details__content h3 {
        font-size: 1.4rem;
        margin: 30px 0 15px;
        padding-left: 15px;
    }

    .service-details__content p {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 18px;
    }

    .service-types {
        grid-template-columns: 1fr;
        gap: 16px;
        margin: 25px 0;
    }

    .service-type-card {
        border-width: 2px;
    }

    .service-type-image {
        height: 220px;
    }

    .service-type-card h4 {
        font-size: 1.15rem;
        margin: 18px 0 10px;
        padding: 0 20px;
    }

    .service-type-card p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 20px;
        padding: 0 20px;
    }

    .service-benefits {
        grid-template-columns: 1fr;
        gap: 12px;
        margin: 25px 0;
    }

    .service-benefits li {
        padding: 14px 16px;
        font-size: 0.95rem;
    }

    .service-benefits li i {
        font-size: 1.15rem;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 16px;
        margin: 30px 0;
    }

    .process-step {
        padding: 25px 20px;
    }

    .step-number {
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
        margin-bottom: 15px;
    }

    .process-step h4 {
        font-size: 1.05rem;
        margin-bottom: 8px;
    }

    .process-step p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .service-sidebar {
        margin-top: 0;
    }

    .sidebar-card {
        padding: 24px 20px;
        margin-bottom: 16px;
    }

    .sidebar-card h3 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }

    .sidebar-card .btn {
        font-size: 0.9rem;
        padding: 14px 28px;
    }

    .service-gallery {
        margin: 20px 0;
        border-width: 3px;
    }
}

/* Extra small devices */
@media screen and (max-width: 375px) {
    .container {
        padding: 0 15px;
    }

    .hero__title {
        font-size: 2rem;
    }

    .hero__title .rock {
        font-size: 2.2rem;
    }

    .section__title {
        font-size: 1.5rem;
    }

    .nav__logo-img {
        height: 35px;
    }

    .service__card h3 {
        font-size: 1.1rem;
    }

    .review-stat strong {
        font-size: 1.75rem;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 15px;
        right: 15px;
    }
}

/* Landscape mode optimization for mobile */
@media screen and (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 100px 0 40px;
    }

    .section {
        padding: 50px 0;
    }

    .nav {
        height: 60px;
    }

    .hero__logo {
        max-width: 220px;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    /* Larger touch targets */
    .nav__link {
        padding: 10px 0;
    }

    .btn {
        min-height: 48px;
    }

    .service__card {
        transition: none;
    }

    .service__card:active {
        transform: scale(0.98);
    }

    .gallery__item:active {
        opacity: 0.9;
    }

    /* Team Section - Mobile */
    .team__section {
        margin-top: 50px;
        padding-top: 40px;
    }

    .team__card {
        padding: 24px 20px;
    }

    .team__name {
        font-size: 1.5rem;
    }

    .team__role {
        font-size: 0.95rem;
    }

    .team__bio {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .team__signature {
        font-size: 1rem;
    }

    /* Remove hover effects on touch devices */
    .service__card:hover,
    .gallery__item:hover img {
        transform: none;
    }

    .social__link:hover {
        transform: none;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero__blob {
        will-change: border-radius;
    }
}
