@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&display=swap');

:root {
    --navy: #1C2331;
    --navy-light: #252D3D;
    --tan: #BCA37F;
    --tan-hover: #A58B65;
    --bg-light: #FFFFFF;
    --bg-offwhite: #F8F9FA;
    --text-dark: #222222;
    --text-muted: #666666;
    --text-light: #FFFFFF;
}

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

html {
    scroll-behavior: smooth;
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

body {
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }

/* Navbar */
nav {
    position: absolute;
    top: 0; width: 100%;
    z-index: 1000;
    padding: 25px 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: all 0.4s ease;
}
nav.scrolled {
    position: fixed;
    background: rgba(28, 35, 49, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    padding: 15px 5%;
    border-bottom: 1px solid rgba(188, 163, 127, 0.15);
}
.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}
.nav-links li a:not(.logo-item a):not(.btn-book-nav) {
    color: #fff;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 5px;
    transition: color 0.3s;
}
.nav-links li a:not(.logo-item a):not(.btn-book-nav)::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 0%;
    height: 2px;
    background: var(--tan);
    transition: width 0.3s ease;
}
.nav-links li a:not(.logo-item a):not(.btn-book-nav):hover {
    color: var(--tan);
}
.nav-links li a:not(.logo-item a):not(.btn-book-nav):hover::after {
    width: 100%;
}
.nav-links li.logo-item a {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--tan);
    text-transform: none;
    font-weight: 700;
    font-style: italic;
    letter-spacing: 1px;
    margin: 0 30px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    transition: transform 0.4s;
}
.nav-links li.logo-item a:hover {
    transform: scale(1.05);
}
.btn-book-nav {
    background: var(--tan);
    color: #fff !important;
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(188, 163, 127, 0.4);
}
.btn-book-nav:hover {
    background: #fff;
    color: var(--navy) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('../img/header.jpg');
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    padding: 0 5%;
    position: relative;
}
.hero-content {
    color: #fff;
    max-width: 600px;
}
.hero-subtitle {
    font-family: 'Inter', sans-serif;
    color: var(--tan);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.hero-subtitle::before {
    content: '';
    display: inline-block;
    width: 40px; height: 1px;
    background: var(--tan);
    margin-right: 15px;
}
.hero-content h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 900;
}
.social-vertical {
    position: absolute;
    left: 5%; bottom: 150px;
    display: flex;
    gap: 15px;
    color: #fff;
}

/* Floating Bar */
.floating-bar {
    display: flex;
    background: transparent;
    margin: -80px 5% 0;
    position: relative;
    z-index: 10;
}
.float-box {
    padding: 30px;
    flex: 1;
}
.float-box.hours {
    background: #11151e; /* Solid background resolving spill-over */
    flex: 0.8;
}
.float-box.hours h4 { font-family: 'Inter', sans-serif; font-size: 0.9rem; color: #fff; text-transform: uppercase; margin-bottom: 5px; }
.float-box.hours p { font-size: 0.85rem; color: #ddd; }

.float-box.review {
    background: var(--navy);
    color: #fff;
    flex: 1.5;
    position: relative;
}
.float-box.review .subtitle {
    color: var(--tan); font-size: 0.8rem; text-transform: uppercase; margin-bottom: 15px;
}
.float-box.review p { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-style: italic; }

.float-box.action {
    background: var(--tan);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0.7;
    cursor: pointer;
    transition: 0.3s;
}
.float-box.action:hover { background: var(--tan-hover); }
.float-box.action span { font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

/* About Section */
.about {
    padding: 100px 5%;
    display: flex;
    align-items: center;
    gap: 60px;
}
.about-img {
    flex: 1;
    position: relative;
    z-index: 2;
}
.about-img::before {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 60%;
    height: 90%;
    background: #eaeaea;
    z-index: -1;
}
.about-img img {
    width: 100%;
    max-width: 500px;
    display: block;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}
.about-text {
    flex: 1;
}
.section-subtitle {
    color: var(--tan);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}
.section-subtitle::before {
    content: ''; display: inline-block; width: 30px; height: 1px; background: var(--tan); margin-right: 15px;
}
.about-text h2 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #000;
}
.about-text p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 30px;
}
.signature {
    font-family: 'Playfair Display', cursive; /* Fallback for signature style */
    font-size: 2rem;
    color: var(--tan);
    font-style: italic;
}

/* Parallax Quote */
.parallax-quote {
    background-image: linear-gradient(rgba(28,35,49,0.85), rgba(28,35,49,0.85)), url('../img/Group-1174.jpg');
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    padding: 100px 5%;
    text-align: center;
    color: #fff;
}
.quote-mark {
    font-size: 4rem;
    color: #fff;
    margin-bottom: 20px;
    font-family: serif;
    line-height: 1;
}
.parallax-quote p {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 600;
}

/* Interactive Services Section */
.special-services-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 120px 5%;
    background: #fdfaf0;
    gap: 60px;
    max-width: 100%;
}
.special-services-left {
    text-align: center;
}
.section-subtitle-line {
    color: var(--tan);
    font-size: 1rem;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.section-subtitle-line::before, .section-subtitle-line::after {
    content: '';
    display: inline-block;
    width: 40px; height: 1px;
    background: var(--tan);
    margin: 0 15px;
}
.special-services-left h2 {
    font-size: 3rem;
    line-height: 1.2;
    color: #000;
}
.special-services-right {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}
/* Scroll Animations */
.fade-up { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

.service-interactive-card {
    background: #fff;
    border: 1px solid #eaeaea;
    padding: 50px 30px;
    position: relative;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.02);
}
.service-interactive-card:hover {
    background: var(--navy);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.service-interactive-card .top-arrow {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: #fdfaf0;
    color: var(--tan);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    transition: all 0.4s ease;
    opacity: 0;
    transform: rotate(-45deg) scale(0.5);
    border: 1px solid rgba(188, 163, 127, 0.3);
}
.service-interactive-card:hover .top-arrow {
    opacity: 1;
    transform: rotate(0) scale(1);
    background: var(--tan);
    color: #fff;
}
.service-interactive-card .custom-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 25px;
    transition: stroke 0.4s ease;
}
.service-interactive-card:hover .custom-icon { stroke: #fff; }
.service-interactive-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #000;
    margin-bottom: 15px;
    transition: color 0.4s ease;
    line-height: 1.4;
}
.service-interactive-card:hover h3 { color: var(--tan); }
.service-interactive-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    transition: color 0.4s ease;
}
.service-interactive-card:hover p { color: #ccc; }

/* Modal Styles */
.service-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.service-modal.active {
    opacity: 1;
    pointer-events: auto;
}
.service-modal .modal-content {
    background: #fff;
    padding: 50px;
    border-radius: 12px;
    width: 100%;
    max-width: 600px;
    position: relative;
    text-align: center;
    transform: translateY(30px);
    transition: transform 0.4s ease;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}
.service-modal.active .modal-content {
    transform: translateY(0);
}
.service-modal .close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    color: #888;
    cursor: pointer;
    transition: 0.3s;
}
.service-modal .close-modal:hover { color: #e74c3c; }


/* Pricing Menu Image Background */
.pricing-section {
    background-image: url('../img/Group-1193.jpg');
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    padding: 100px 5%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.pricing-section::before {
    content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.5);
}
.pricing-header {
    position: relative; z-index: 2; text-align: center; color: #fff; margin-bottom: 50px;
}
.pricing-header h2 { font-size: 3rem; }
.pricing-card {
    position: relative; z-index: 2;
    background: var(--navy);
    color: #fff;
    width: 100%; max-width: 1200px;
    padding: 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    border-radius: 12px;
}
.pricing-col { display: flex; flex-direction: column; padding: 20px 0; }
.pricing-col.featured {
    background: rgba(188, 163, 127, 0.05);
    border: 1px solid var(--tan);
    padding: 30px;
    border-radius: 12px;
    transform: scale(1.03);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    margin: -10px 0;
}
.pricing-col h3 {
    color: var(--tan);
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.5rem;
    margin-bottom: 30px;
    display: flex; justify-content: center; align-items: center; text-transform: uppercase; letter-spacing: 2px;
}
.pricing-col h3::before, .pricing-col h3::after { content:''; display:inline-block; width:30px; height:1px; background:var(--tan); margin: 0 15px; }

.price-item {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 20px;
    font-size: 0.95rem;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}
.price-item .name { font-weight: 400; font-family: 'Inter', sans-serif; }
.price-item .name small { display: block; font-size: 0.8rem; color: #888; margin-top: 5px; }
.price-item .price { color: var(--tan); font-weight: 600; white-space: nowrap; }

/* Booking Area */
.booking-area {
    padding: 100px 5%;
    background: var(--bg-offwhite);
    text-align: center;
}
.booking-area h2 { font-size: 2.8rem; margin: 15px 0 40px; }
.contact-blocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}
.contact-block {
    background: var(--navy);
    color: #fff;
    padding: 40px 20px;
    text-align: center;
}
.contact-block i { font-size: 2rem; color: var(--tan); margin-bottom: 20px; }
.contact-block h4 { font-family: 'Inter', sans-serif; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.contact-block p { font-size: 0.85rem; color: #aaa; }

.booking-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
    text-align: left;
}
.booking-form-wrapper::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 6px;
    background: linear-gradient(90deg, var(--tan), #e2cca6, var(--tan));
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.styled-input {
    width: 100%; padding: 16px 20px; border: 1px solid #e5e5e5; background: #fafafa;
    font-family: 'Inter', sans-serif; font-size: 1rem; outline: none; transition: all 0.3s ease; border-radius: 8px;
    color: var(--navy);
}
.styled-input:focus { border-color: var(--tan); background: #fff; box-shadow: 0 0 0 4px rgba(188, 163, 127, 0.15); }

.btn-primary {
    background: linear-gradient(135deg, var(--tan), var(--tan-hover)); 
    color: #fff; padding: 18px 40px; border: none; font-weight: 700; font-size: 1.05rem;
    text-transform: uppercase; letter-spacing: 2px; cursor: pointer; transition: all 0.4s ease; 
    width: 100%; display: block; text-align: center; border-radius: 8px;
    box-shadow: 0 10px 20px rgba(188, 163, 127, 0.25);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 15px 25px rgba(188, 163, 127, 0.35); background: var(--navy); }

/* Progress Tabs */
.form-progress {
    display: flex; justify-content: space-between; margin-bottom: 40px;
    position: relative; border-bottom: 2px solid #f0f0f0;
}
.progress-step {
    flex: 1; text-align: center; font-family: 'Inter', sans-serif; font-size: 0.85rem;
    font-weight: 600; color: #bbb; text-transform: uppercase; letter-spacing: 1px;
    padding-bottom: 15px; position: relative; transition: all 0.3s ease;
}
.progress-step span {
    display: inline-block; width: 24px; height: 24px; line-height: 24px; border-radius: 50%;
    background: #eee; color: #888; margin-right: 8px; font-size: 0.8rem; transition: all 0.3s ease;
}
.progress-step.active { color: var(--tan); }
.progress-step.active span { background: var(--tan); color: #fff; box-shadow: 0 4px 10px rgba(188, 163, 127, 0.4); }
.progress-step.active::after {
    content: ''; position: absolute; bottom: -2px; left: 0; width: 100%; height: 3px;
    background: var(--tan); border-radius: 3px;
}
.progress-step.completed { color: var(--navy); }
.progress-step.completed span { background: var(--navy); color: #fff; }

/* Multi-step form styles */
.multi-step-form .form-step { animation: fadeIn 0.4s; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.form-group { margin-bottom: 25px; text-align: left; }
.form-group label { display: block; margin-bottom: 10px; font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: #555; }
.form-group label span { color: #e74c3c; margin-left: 3px; font-weight: bold; }
.phone-input-wrapper { display: flex; border: 1px solid #e5e5e5; background: #fafafa; border-radius: 8px; overflow: hidden; transition: all 0.3s ease; }
.phone-input-wrapper:focus-within { border-color: var(--tan); background: #fff; box-shadow: 0 0 0 4px rgba(188, 163, 127, 0.15); }
.country-code { padding: 0 20px; background: #f0f0f0; border-right: 1px solid #e5e5e5; display: flex; align-items: center; gap: 8px; font-size: 1rem; color: #555; }
.phone-input-wrapper input { border: none; flex: 1; padding: 12px 15px; outline: none; font-size: 0.95rem; }
.back-btn { background: none; border: none; color: #888; cursor: pointer; font-size: 0.85rem; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; padding: 0; transition: 0.2s; }
.back-btn:hover { color: var(--navy); }

/* Barber Tiers */
/* Premium Input Fields */
.input-with-icon { position: relative; width: 100%; }
.input-with-icon ion-icon { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); font-size: 1.2rem; color: #a4b0be; transition: 0.3s; }
.input-with-icon .styled-input { padding-left: 45px; }
.input-with-icon:focus-within ion-icon { color: var(--tan); }

/* Tier Layout - Horizontal */
.tiers-container { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.tier-column { background: #fafafa; border: 1px solid #eee; border-radius: 12px; padding: 20px; text-align: center; transition: 0.3s; }
.tier-column:hover { box-shadow: 0 10px 25px rgba(0,0,0,0.05); transform: translateY(-3px); }
.tier-column h4 { font-family: 'Playfair Display', serif; color: var(--navy); font-size: 1.1rem; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1px dashed #ddd; }

.barber-grid { display: flex; flex-direction: column; gap: 15px; }
.barber-card { display: flex; align-items: center; justify-content: flex-start; gap: 15px; padding: 12px 15px; border-radius: 10px; background: #fff; border: 1.5px solid #eaeaea; transition: 0.3s; cursor: pointer; text-align: left; }
.barber-card:hover { border-color: var(--tan); background: #fdfbf7; transform: translateX(5px); }
.barber-card.selected { border-width: 1.5px; border-color: var(--tan); background: #fdfaf0; box-shadow: 0 5px 15px rgba(188, 163, 127, 0.15); }
.barber-card img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; border: 2px solid #eee; }
.barber-card.selected img { border-color: var(--tan); }
.barber-card h5 { margin: 0; font-size: 1.05rem; font-weight: 600; color: var(--navy); }
.barber-card.selected img { border-color: var(--tan); }
.barber-card h5 { margin: 0; font-size: 1rem; color: #333; font-weight: 600; }

/* Time Slots Grid */
.time-slots-grid { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 12px; }
.time-slot-btn {
    background: #fff; border: 1.5px solid #eaeaea; padding: 14px 15px; border-radius: 50px;
    cursor: pointer; font-size: 0.95rem; font-weight: 500; font-family: 'Inter', sans-serif; 
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); color: var(--text-muted); flex: 1 1 calc(33.333% - 12px); text-align: center;
}
.time-slot-btn:hover { border-color: var(--tan); color: var(--tan); transform: translateY(-2px); box-shadow: 0 6px 15px rgba(188, 163, 127, 0.15); background: #fdfbf7; }
.time-slot-btn.selected { background: var(--tan); color: #fff; border-color: var(--tan); box-shadow: 0 6px 20px rgba(188, 163, 127, 0.4); font-weight: 600; transform: translateY(-2px); }
.time-slot-btn:disabled { 
    background: transparent; color: #d0d0d0; cursor: not-allowed; 
    border: 1.5px dashed #eee; transform: none; box-shadow: none; font-weight: 400; 
}

/* Newsletter */
.newsletter {
    padding: 80px 5%;
    text-align: center;
}
.newsletter h2 { font-size: 2.5rem; margin-bottom: 30px; }
.newsletter-form {
    max-width: 500px; margin: 0 auto;
    display: flex; border-bottom: 1px solid #ccc;
}
.newsletter-form input {
    flex: 1; border: none; padding: 15px; outline: none; font-size: 0.95rem;
}
.newsletter-form button {
    background: var(--tan); color: #fff; border: none; padding: 0 30px; font-weight: 600; cursor: pointer;
}

/* Photo Gallery Footer */
.gallery-row {
    display: flex;
    height: 200px;
}
.gallery-row img {
    flex: 1; object-fit: cover; width: 20%;
    filter: brightness(0.8); transition: 0.3s;
}
.gallery-row img:hover { filter: brightness(1); }

footer {
    background: var(--navy);
    color: #fff;
    text-align: center;
    padding: 60px 5% 30px;
}
footer h3 { 
    font-family: 'Playfair Display', serif; 
    font-size: 2rem; 
    color: var(--tan); 
    font-weight: 700; 
    font-style: italic; 
    letter-spacing: 1px; 
    margin-bottom: 20px; 
}
.social-icons { display: flex; justify-content: center; gap: 15px; margin-bottom: 30px; }
.social-icons a { width: 40px; height: 40px; border: 1px solid rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; border-radius: 50%; }
.social-icons a:hover { border-color: var(--tan); color: var(--tan); }
.footer-copy { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 30px; font-size: 0.8rem; color: #888; }

/* Notifications */
.notification {
    position: fixed; bottom: 30px; right: 30px; padding: 15px 25px; border-radius: 4px;
    color: #fff; z-index: 9999; transform: translateY(100px); opacity: 0; transition: all 0.4s;
}
.notification.show { transform: translateY(0); opacity: 1; }
.notification.success { background: #28a745; }
.notification.error { background: #dc3545; }

@media (max-width: 480px) {
    .styled-input { font-size: 0.9rem; padding: 14px 15px; }
    .btn-primary { font-size: 0.9rem; padding: 15px 25px; }
    .booking-form-wrapper { padding: 30px 20px; }
}

/* Native Premium Date Picker */
.date-picker-premium {
    position: relative;
    cursor: pointer;
    color: var(--navy);
}
.date-picker-premium::-webkit-calendar-picker-indicator {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    width: auto; height: auto;
    color: transparent;
    background: transparent;
    cursor: pointer;
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero-content h1 { font-size: 3rem; }
    .floating-bar { flex-direction: column; margin-top: 0; }
    .about { flex-direction: column; }
    .pricing-card { grid-template-columns: 1fr; padding: 30px 20px; gap: 30px; }
    .pricing-col.featured { margin: 0; transform: none; }
    .tiers-container { grid-template-columns: 1fr; gap: 30px; }
    .barber-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .gallery-row { flex-wrap: wrap; height: auto; }
    .gallery-row img { width: 50%; height: 150px; }
    .special-services-section { flex-direction: column; }
    .special-services-right { flex-direction: column; width: 100%; }
    .service-interactive-card.active .card-body-wrapper { height: auto; }
    .pricing-menu-grid { grid-template-columns: 1fr; }
}
