/* --- Salon Time Barber Shop Premium Style System --- */

:root {
    /* Color Palette */
    --color-bg: #0b0b0d;
    --color-surface: #141417;
    --color-surface-hover: #1d1d22;
    --color-primary: #d4af37; /* Premium Gold */
    --color-primary-rgb: 212, 175, 55;
    --color-whatsapp: #25D366; /* WhatsApp Brand Green */
    --color-text-main: #f5f5f7;
    --color-text-muted: #a0a0a5;
    --color-border: rgba(212, 175, 55, 0.18);
    --color-border-focus: rgba(212, 175, 55, 0.5);
    
    /* Typography */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    /* Transitions */
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: initial; /* Managed by Lenis smooth scroll */
}

body {
    background-color: var(--color-bg);
    color: var(--color-text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--color-bg);
}
::-webkit-scrollbar-thumb {
    background: var(--color-surface-hover);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary);
}

/* Headings */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 500;
}

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

.accent-text {
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--color-primary);
    font-weight: 400;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-bg);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.preloader-content {
    text-align: center;
}

.preloader-logo {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    letter-spacing: 6px;
    color: var(--color-primary);
    display: block;
    margin-bottom: 5px;
    animation: fadePulse 2s infinite ease-in-out;
}

.preloader-subtext {
    font-size: 0.75rem;
    letter-spacing: 3px;
    color: var(--color-text-muted);
    display: block;
    margin-bottom: 25px;
}

.preloader-bar {
    width: 160px;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.preloader-progress {
    width: 0;
    height: 100%;
    background: var(--color-primary);
    position: absolute;
    top: 0;
    left: 0;
    animation: progressFill 1.5s forwards ease-in-out;
}

@keyframes fadePulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

@keyframes progressFill {
    100% { width: 100%; }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 0;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--color-primary);
    color: #000;
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.15);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-text-main);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background-color: var(--color-text-main);
    color: #000;
    border-color: var(--color-text-main);
    transform: translateY(-2px);
}

.btn-secondary-outline {
    background: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
    padding: 0.65rem 1.5rem;
    font-size: 0.75rem;
}

.btn-secondary-outline:hover {
    background: var(--color-primary);
    color: #000;
}

.btn-block {
    width: 100%;
}

.mt-4 { margin-top: 1.5rem; }

/* Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background-color: rgba(11, 11, 13, 0.85);
    backdrop-filter: blur(12px);
    transition: var(--transition-smooth);
}

.header.scrolled {
    padding: 0.4rem 0;
    background-color: rgba(11, 11, 13, 0.96);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--color-text-main);
    display: flex;
    flex-direction: column;
}

.logo-tag {
    font-family: var(--font-body);
    font-size: 0.6rem;
    letter-spacing: 4px;
    color: var(--color-primary);
    margin-top: -2px;
}

.logo:hover {
    color: var(--color-primary);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.2rem;
}

.nav-link {
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-text-muted);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--color-text-main);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-primary);
    transition: var(--transition-fast);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-btn {
    border: 1px solid var(--color-primary);
    padding: 0.6rem 1.5rem;
    color: var(--color-primary) !important;
}

.nav-btn::after {
    display: none;
}

.nav-btn:hover {
    background-color: var(--color-primary);
    color: #000 !important;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-toggle span {
    width: 100%;
    height: 2px;
    background-color: var(--color-text-main);
    transition: var(--transition-fast);
}

/* Sections General */
section {
    padding: 8rem 2rem;
    position: relative;
}

.section-tag {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--color-primary);
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: 3rem;
    line-height: 1.15;
    margin-bottom: 2rem;
}

/* Hero Section */
.hero {
    height: 100vh;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 1.5s ease-in-out, transform 8s ease-out;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 850px;
    text-align: center;
    padding: 0 2rem;
}

.hero-subtitle {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--color-primary);
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards 0.2s ease-out;
}

.hero-title {
    font-size: 4.2rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards 0.4s ease-out;
}

.hero-desc {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    max-width: 650px;
    margin: 0 auto 2.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards 0.6s ease-out;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards 0.8s ease-out;
}

.hero-indicators {
    position: absolute;
    bottom: 2.5rem;
    right: 4rem;
    display: flex;
    gap: 1.5rem;
    z-index: 10;
}

.indicator {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    position: relative;
    padding-bottom: 5px;
    transition: var(--transition-fast);
}

.indicator.active {
    color: var(--color-primary);
}

.indicator::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-primary);
    transition: var(--transition-fast);
}

.indicator.active::after {
    width: 100%;
}

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

/* Quick Info / Stats Banner */
.quick-info {
    background-color: var(--color-surface);
    padding: 4rem 2rem;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.info-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.info-card {
    text-align: center;
}

.info-card i {
    font-size: 1.8rem;
    color: var(--color-primary);
    margin-bottom: 1.25rem;
}

.info-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-body);
    font-weight: 600;
}

.info-card p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* About Section */
.about-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 6rem;
    align-items: center;
}

.about-img-box {
    position: relative;
    padding-bottom: 80px;
}

.main-img-wrapper {
    width: 85%;
    aspect-ratio: 4/5;
    overflow: hidden;
}

.sub-img-wrapper {
    position: absolute;
    width: 45%;
    aspect-ratio: 1;
    bottom: 0;
    right: 0;
    overflow: hidden;
    border: 8px solid var(--color-bg);
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-img:hover {
    transform: scale(1.08);
}

.about-text-box {
    padding-right: 2rem;
}

.about-para {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.about-para.secondary {
    font-size: 0.95rem;
    border-left: 2px solid var(--color-primary);
    padding-left: 1.5rem;
    margin-bottom: 2.5rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    gap: 1.25rem;
}

.feature-icon {
    color: var(--color-primary);
    font-size: 1.2rem;
    margin-top: 2px;
}

.feature-item h4 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.feature-item p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* Gallery Section */
.gallery {
    background-color: var(--color-surface);
}

.gallery-header {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.gallery-desc {
    color: var(--color-text-muted);
}

.gallery-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 280px;
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
}

.item-large {
    grid-column: span 2;
    grid-row: span 2;
}

.item-aspect-up {
    grid-row: span 2;
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    border: 1px solid rgba(212, 175, 55, 0.25);
}

.item-aspect-up img {
    object-fit: cover;
    object-position: center 30%;
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 60%, rgba(0,0,0,0) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.5rem;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition-smooth);
}

.gallery-overlay h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.gallery-overlay span {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

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

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}

/* Services Section */
.services-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 6rem;
}

.services-desc {
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
}

.services-tabs {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-bottom: 3.5rem;
}

.tab-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--color-text-muted);
    text-align: left;
    padding: 1.1rem 1.8rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.tab-btn:hover, .tab-btn.active {
    color: var(--color-primary);
    border-color: var(--color-primary);
    background-color: var(--color-surface);
}

.services-promo-card {
    background-color: var(--color-surface);
    border: 1px solid var(--color-border);
    padding: 2rem;
    text-align: center;
}

.services-promo-card h4 {
    color: var(--color-primary);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.services-promo-card p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

/* Services List */
.services-tab-content {
    display: none;
}

.services-tab-content.active {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.menu-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 1.5rem;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.5rem;
}

.menu-item-name {
    font-size: 1.5rem;
}

.menu-item-price {
    font-family: var(--font-heading);
    color: var(--color-primary);
    font-size: 1.6rem;
    font-weight: 600;
}

.menu-item-desc {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

/* Testimonials */
.testimonials {
    background-color: var(--color-surface);
    text-align: center;
}

.testimonials-container {
    max-width: 900px;
    margin: 0 auto;
}

.testimonials-header {
    margin-bottom: 3rem;
}

.testimonial-slider {
    position: relative;
    min-height: 250px;
}

.testimonial-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    pointer-events: none;
    transform: scale(0.95);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.testimonial-card.active {
    opacity: 1;
    pointer-events: all;
    transform: scale(1);
    position: relative;
}

.quote-icon {
    font-size: 3rem;
    color: var(--color-primary);
    opacity: 0.25;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    line-height: 1.5;
    margin-bottom: 2rem;
}

.testimonial-author h4 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 3rem;
}

.dot {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-fast);
}

.dot.active {
    background: var(--color-primary);
    width: 24px;
    border-radius: 4px;
}

/* Booking Section */
.booking-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 6rem;
}

.booking-desc {
    color: var(--color-text-muted);
    margin-bottom: 3.5rem;
}

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

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

.contact-item i {
    font-size: 1.2rem;
    color: var(--color-primary);
    margin-top: 4px;
}

.contact-item h4 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.contact-item p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* Booking Form */
.booking-form-box {
    background-color: var(--color-surface);
    border: 1px solid var(--color-border);
    padding: 3rem;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-muted);
}

.form-group input, .form-group select {
    background-color: var(--color-bg);
    border: 1px solid var(--color-border);
    color: var(--color-text-main);
    padding: 0.85rem 1rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    border-radius: 0;
    transition: var(--transition-fast);
}

.form-group input:focus, .form-group select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--color-whatsapp);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
    animation: whatsappPulse 2.5s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.12);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
    color: #fff;
}

.whatsapp-tooltip {
    position: absolute;
    right: 72px;
    background-color: #141417;
    color: #fff;
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateX(10px);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Footer */
.footer {
    background-color: #050506;
    padding: 6rem 2rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto 4rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 6rem;
}

.footer-brand .logo {
    display: inline-block;
    margin-bottom: 1.5rem;
}

.footer-brand p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    max-width: 340px;
}

.social-links {
    display: flex;
    gap: 1.25rem;
}

.social-links a {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.social-links a:hover {
    color: #000;
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

.footer-links h4, .footer-hours h4 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

.footer-links ul, .footer-hours ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.footer-links a:hover {
    color: var(--color-primary);
    padding-left: 5px;
}

.footer-hours li {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    display: flex;
    justify-content: space-between;
}

.footer-bottom {
    max-width: 1300px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
}

/* --- Enhanced Mobile View & Responsive System --- */
@media (max-width: 1024px) {
    .about-container, .services-container, .booking-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 260px;
    }
    
    .item-large {
        grid-column: span 2;
        grid-row: span 2;
    }

    .item-aspect-up {
        grid-row: span 2;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    section {
        padding: 4.5rem 1.25rem;
    }
    
    .hero-title {
        font-size: clamp(2.2rem, 7.5vw, 3.5rem);
        line-height: 1.15;
    }
    
    .hero-desc {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-indicators {
        right: 50%;
        transform: translateX(50%);
        bottom: 1.5rem;
        gap: 1.25rem;
    }

    .section-title {
        font-size: 2.1rem;
    }
    
    /* Mobile Navigation Drawer */
    .mobile-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 360px;
        height: 100vh;
        background-color: rgba(20, 20, 23, 0.98);
        backdrop-filter: blur(20px);
        border-left: 1px solid var(--color-border);
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 3rem 2.5rem;
        gap: 1.75rem;
        z-index: 999;
        transition: var(--transition-smooth);
        box-shadow: -15px 0 35px rgba(0,0,0,0.7);
    }
    
    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        font-size: 1.1rem;
        width: 100%;
    }

    .nav-btn {
        width: 100%;
        text-align: center;
        margin-top: 1rem;
    }
    
    .header.menu-open .mobile-toggle span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .header.menu-open .mobile-toggle span:nth-child(2) {
        opacity: 0;
    }
    
    .header.menu-open .mobile-toggle span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* About Section Mobile */
    .about-img-box {
        padding-bottom: 50px;
    }

    .main-img-wrapper {
        width: 90%;
    }

    .sub-img-wrapper {
        width: 50%;
    }
    
    /* Touch Friendly Gallery Captions */
    .gallery-overlay {
        opacity: 1;
        background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 60%, rgba(0,0,0,0) 100%);
        transform: translateY(0);
        padding: 1.5rem;
    }

    .gallery-overlay h3 {
        font-size: 1.3rem;
    }

    /* Mobile Service Tabs */
    .services-tabs {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
        margin-bottom: 2.5rem;
    }

    .tab-btn {
        padding: 0.9rem 1rem;
        font-size: 0.75rem;
        text-align: center;
    }
    
    /* Form Input Fixes for Mobile (Prevents iOS Auto-Zoom) */
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .form-group input, .form-group select {
        font-size: 16px;
        padding: 0.9rem 1rem;
    }

    .booking-form-box {
        padding: 1.75rem 1.25rem;
    }

    /* Footer Mobile */
    .footer-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-brand {
        grid-column: span 1;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 56px;
        height: 56px;
        font-size: 30px;
    }

    .whatsapp-tooltip {
        display: none;
    }
}

@media (max-width: 480px) {
    .info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 240px;
    }
    
    .item-large, .item-aspect-up {
        grid-column: span 1;
        grid-row: span 1;
    }

    .services-tabs {
        grid-template-columns: 1fr;
    }

    .testimonial-text {
        font-size: 1.35rem;
    }
}
