/* === TURKISH OTTOMAN BARBERSHOP === */
* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
    --midnight: #0d1117;
    --ottoman-gold: #c9a227;
    --ottoman-red: #8b2635;
    --warm-white: #faf8f5;
    --cream: #f5f0e8;
    --charcoal: #1a1a1a;
    --text: #5c5c5c;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, sans-serif;
}
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background: var(--warm-white);
    color: var(--charcoal);
    line-height: 1.7;
}

/* === NAV === */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2.5rem;
    background: var(--midnight);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 3px solid var(--ottoman-gold);
}
.logo { 
    font-family: var(--font-heading); 
    font-size: 1.4rem; 
    font-weight: 700; 
    color: var(--ottoman-gold); 
    letter-spacing: 0.05em;
}
.logo span { color: var(--warm-white); }
.nav-links { display: flex; list-style: none; gap: 2rem; }
.nav-links a { 
    color: var(--warm-white); 
    text-decoration: none; 
    font-size: 0.82rem; 
    font-weight: 500; 
    letter-spacing: 0.08em; 
    text-transform: uppercase;
    transition: color 0.3s;
}
.nav-links a:hover { color: var(--ottoman-gold); }
.hamburger { display: none; cursor: pointer; font-size: 1.6rem; color: var(--ottoman-gold); }

/* === HERO - VERTICAL STACK (DIFFERENT FROM OTHER SITES) === */
.hero {
    position: relative;
    min-height: auto;
    background: var(--midnight);
    overflow: hidden;
}
.hero-photo-wrap {
    position: relative;
    width: 100%;
    height: 55vw;
    max-height: 520px;
    overflow: hidden;
}
.hero-photo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.hero-photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(13,17,23,0.3) 0%,
        rgba(13,17,23,0.1) 40%,
        rgba(13,17,23,0.7) 80%,
        rgba(13,17,23,0.95) 100%
    );
}
.hero-content {
    position: relative;
    z-index: 2;
    padding: 2.5rem 2.5rem 3rem;
    color: var(--warm-white);
    text-align: center;
}
.hero-badge {
    display: inline-block;
    background: var(--ottoman-gold);
    color: var(--midnight);
    padding: 0.4rem 1.2rem;
    border-radius: 2px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}
.hero-arabic {
    font-size: 1.6rem;
    color: var(--ottoman-gold);
    margin-bottom: 0.8rem;
    font-family: Georgia, serif;
    opacity: 0.9;
}
.hero-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1rem;
    color: var(--warm-white);
}
.hero-content h1 em {
    font-style: italic;
    color: var(--ottoman-gold);
}
.hero-content > p {
    font-size: 1rem;
    color: rgba(250,248,245,0.8);
    margin-bottom: 1.5rem;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}
.hero-rating {
    color: var(--ottoman-gold);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.cta-primary {
    background: var(--ottoman-gold);
    color: var(--midnight);
    padding: 0.9rem 2rem;
    border-radius: 2px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: all 0.3s;
    border: 2px solid var(--ottoman-gold);
}
.cta-primary:hover { background: transparent; color: var(--ottoman-gold); }
.cta-outline {
    background: transparent;
    color: var(--warm-white);
    padding: 0.9rem 2rem;
    border-radius: 2px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: 2px solid rgba(250,248,245,0.4);
    transition: all 0.3s;
}
.cta-outline:hover { border-color: var(--ottoman-gold); color: var(--ottoman-gold); }

/* === INFO BAR === */
.info-bar {
    background: var(--ottoman-red);
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}
.info-item {
    color: var(--warm-white);
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.04em;
}
.info-item::before { margin-right: 0.5rem; }

/* === TRUST BAR === */
.trust-bar {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 2.5rem 2rem;
    background: var(--warm-white);
    flex-wrap: wrap;
}
.trust-item { text-align: center; }
.trust-item .number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--ottoman-gold);
}
.trust-item .label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text);
    margin-top: 0.2rem;
}

/* === SECTIONS === */
section { padding: 4rem 2rem; }
section h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--charcoal);
}
.section-subtitle { text-align: center; color: var(--text); margin-bottom: 2.5rem; font-size: 0.95rem; }

/* === GALLERY - DIFFERENT: NARROW STRIP INSTEAD OF GRID === */
.gallery { background: var(--cream); }
.gallery-strip {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    padding-bottom: 1rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}
.gallery-strip::-webkit-scrollbar { height: 4px; }
.gallery-strip::-webkit-scrollbar-thumb { background: var(--ottoman-gold); border-radius: 2px; }
.gallery-strip img {
    flex: 0 0 280px;
    height: 200px;
    object-fit: cover;
    border-radius: 3px;
    cursor: pointer;
    scroll-snap-align: start;
    transition: transform 0.3s;
}
.gallery-strip img:hover { transform: scale(1.04); }

/* === SERVICES - DIFFERENT: LIST VIEW INSTEAD OF CARDS === */
.services { background: var(--warm-white); }
.services-list {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.service-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.4rem 1.5rem;
    background: var(--cream);
    border-radius: 3px;
    margin-bottom: 0.75rem;
    transition: all 0.3s;
    border-left: 3px solid transparent;
}
.service-row:hover {
    border-left-color: var(--ottoman-gold);
    transform: translateX(4px);
}
.service-row h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--charcoal);
    margin-bottom: 0.2rem;
}
.service-row p {
    font-size: 0.85rem;
    color: var(--text);
}
.service-meta {
    text-align: right;
    flex-shrink: 0;
    margin-left: 1.5rem;
}
.service-meta .price {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--ottoman-gold);
}
.service-meta .duration {
    font-size: 0.75rem;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.service-row .service-cta {
    margin-left: 1rem;
    flex-shrink: 0;
}
.service-cta {
    background: var(--ottoman-gold);
    color: var(--midnight);
    padding: 0.5rem 1rem;
    border-radius: 2px;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: all 0.3s;
    white-space: nowrap;
}
.service-cta:hover { background: var(--ottoman-red); color: var(--warm-white); }

/* === REVIEWS - DIFFERENT: SINGLE COLUMN === */
.reviews { background: var(--cream); }
.reviews-stack {
    max-width: 680px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.review-card {
    background: var(--warm-white);
    padding: 2rem 2rem;
    border-radius: 3px;
    border-left: 4px solid var(--ottoman-gold);
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.review-stars { color: var(--ottoman-gold); font-size: 1rem; margin-bottom: 0.8rem; }
.review-text { font-size: 1rem; color: var(--charcoal); margin-bottom: 0.8rem; line-height: 1.7; font-style: italic; }
.review-author { font-size: 0.85rem; color: var(--text); font-weight: 600; }

/* === ABOUT - DIFFERENT: TEXT LEFT, PHOTO RIGHT STACK === */
.about { background: var(--warm-white); }
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 960px;
    margin: 0 auto;
}
.about-text p {
    margin-bottom: 1.2rem;
    color: var(--text);
    font-size: 0.98rem;
    line-height: 1.8;
}
.about-text p strong { color: var(--charcoal); }
.about-photo {
    position: relative;
}
.about-photo img {
    width: 100%;
    border-radius: 3px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.about-photo::after {
    content: '';
    position: absolute;
    top: 12px;
    left: 12px;
    right: -12px;
    bottom: -12px;
    border: 3px solid var(--ottoman-gold);
    border-radius: 3px;
    z-index: -1;
}

/* === CONTACT === */
.contact { background: var(--cream); }
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}
.contact-info h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--charcoal);
}
.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.2rem;
    align-items: flex-start;
}
.contact-icon { font-size: 1.2rem; }
.contact-text { font-size: 0.92rem; color: var(--text); line-height: 1.7; }
.contact-text strong { color: var(--charcoal); }
.contact-text a { color: var(--ottoman-gold); text-decoration: none; font-weight: 600; }
.map-frame {
    width: 100%;
    height: 300px;
    border: none;
    border-radius: 3px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.contact-cta {
    margin-top: 1.5rem;
}

/* === FOOTER === */
footer {
    background: var(--midnight);
    padding: 2.5rem 2rem;
    text-align: center;
    border-top: 3px solid var(--ottoman-gold);
}
.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--ottoman-gold);
    margin-bottom: 1rem;
}
.footer-logo span { color: var(--warm-white); }
.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}
.footer-links a {
    color: var(--warm-white);
    text-decoration: none;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: color 0.3s;
}
.footer-links a:hover { color: var(--ottoman-gold); }
.footer-copyright { color: rgba(250,248,245,0.4); font-size: 0.8rem; }

/* === STICKY CTA === */
.sticky-cta {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 200;
}
.sticky-cta a {
    background: var(--ottoman-red);
    color: var(--warm-white);
    padding: 0.9rem 1.8rem;
    border-radius: 3px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(139,38,53,0.5);
    transition: all 0.3s;
}
.sticky-cta a:hover { background: var(--ottoman-gold); color: var(--midnight); }

/* === MOBILE === */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--midnight);
        flex-direction: column;
        padding: 1.5rem 2rem;
        gap: 1.2rem;
        border-bottom: 2px solid var(--ottoman-gold);
    }
    .nav-links.active { display: flex; }
    .hamburger { display: block; }
    .hero-photo-wrap { height: 65vw; }
    .hero-content { padding: 2rem 1.5rem 2.5rem; }
    .info-bar { gap: 1.5rem; }
    .trust-bar { gap: 2rem; padding: 2rem 1rem; }
    section { padding: 3rem 1.25rem; }
    .about-content { grid-template-columns: 1fr; gap: 2rem; }
    .about-photo { order: -1; }
    .about-photo::after { display: none; }
    .contact-container { grid-template-columns: 1fr; }
    .service-row { flex-wrap: wrap; gap: 0.5rem; }
    .service-meta { text-align: left; margin-left: 0; }
    .gallery-strip img { flex: 0 0 240px; height: 170px; }
    .sticky-cta { bottom: 1rem; right: 1rem; }
    .sticky-cta a { padding: 0.8rem 1.4rem; font-size: 0.8rem; }
}

/* === NEW SECTIONS === */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}
.section-header .section-arabic {
    font-size: 1.1rem;
    color: var(--rose-gold);
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}
.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}
.section-subtitle {
    color: #777;
    font-size: 1rem;
}
.info-bar {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 1.2rem;
    background: var(--charcoal);
    flex-wrap: wrap;
}
.info-item {
    color: var(--cream);
    font-size: 0.85rem;
}
.cta-section {
    background: linear-gradient(135deg, var(--charcoal) 0%, #1a1a1a 100%);
    padding: 4rem 0;
    text-align: center;
}
.cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--cream);
    margin-bottom: 0.5rem;
}
.cta-section p {
    color: var(--rose-gold);
    margin-bottom: 1.5rem;
}
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.btn-row {
    background: var(--rose-gold);
    color: var(--charcoal);
    padding: 0.5rem 1.2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    white-space: nowrap;
    transition: background 0.3s;
}
.btn-row:hover { background: #b8896a; }
