:root {
    --primary-color: #121212;
    --secondary-color: #1e1e1e;
    --accent-color: #d4a35a;
    --text-color: #f5f5f5;
    --light-text: #b0b0b0;
    --dark-bg: #0a0a0a;
    --card-bg: #181818;
    --success-color: #4ecca3;
    
	
    --primary-color-rgb: 18, 18, 18;     /* #121212 */
    --secondary-color-rgb: 30, 30, 30;   /* #1e1e1e */
    --accent-color-rgb: 212, 163, 90;    /* #d4a35a */
    --card-bg-rgb: 24, 24, 24;         /* #181818 */
	
    /* Glow effect colors */
    --glow-primary: rgba(212, 163, 90, 0.8);
    --glow-secondary: rgba(212, 163, 90, 0.4);
    --glow-bright: rgba(255, 215, 100, 0.9);
    --glow-soft: rgba(212, 163, 90, 0.2);

    --accent-color-hover-shadow: rgba(212, 163, 90, 0.25); /* For subtle hover shadows */
    --accent-color-static-highlight: rgba(212, 163, 90, 0.15); /* For very subtle static highlights */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Custom Cursor */
.custom-cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transition: all 0.1s ease;
    backdrop-filter: blur(2px);
    box-shadow: 0 0 20px var(--glow-primary);
}

.cursor-trail {
    width: 8px;
    height: 8px;
    background: var(--accent-color);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9998;
    transition: all 0.2s ease;
    box-shadow: 0 0 15px var(--glow-primary);
}

.custom-cursor.hover {
    width: 60px;
    height: 60px;
    background: rgba(212, 163, 90, 0.1);
    border: 1px solid var(--accent-color);
    box-shadow: 0 0 30px var(--glow-primary);
}

.custom-cursor.click {
    width: 15px;
    height: 15px;
    background: var(--accent-color);
    box-shadow: 0 0 25px var(--glow-bright);
}

/* Glow Effects */
.glow-text {
    color: var(--accent-color);
	text-shadow: 0 0 5px var(--accent-color-static-highlight);
}

.glow-icon {
    color: var(--accent-color);
    transition: all 0.3s ease;
}

.glow-icon:hover {
    filter: drop-shadow(0 0 15px var(--glow-bright));
}

.glow-button {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.glow-button::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--accent-color), transparent, var(--accent-color));
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.glow-button:hover::before {
    opacity: 1;
}

.glow-button:hover {
    transform: translateY(-2px);
}

.glow-border {
    border: 2px solid transparent;
    background: linear-gradient(var(--card-bg), var(--card-bg)) padding-box,
                linear-gradient(45deg, var(--accent-color), transparent, var(--accent-color)) border-box;
    box-shadow: 0 0 20px var(--glow-secondary);
    transition: all 0.3s ease;
}

.glow-border:hover {
    box-shadow: 0 0 30px var(--glow-primary);
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-scissor,
.floating-comb,
.floating-star {
    position: absolute;
    font-size: 2rem;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.floating-scissor {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-comb {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.floating-star {
    top: 40%;
    left: 80%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

/* Micro Animations */
.animated-element {
    animation: slideInDown 0.8s ease-out;
}

.animated-button {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.animated-button:hover {
    transform: scale(1.1) rotate(5deg);
}

.slide-in {
    animation: slideInUp 0.6s ease-out;
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Header Styles */
header {
    background-color: var(--primary-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--text-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 1.5rem;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px var(--glow-primary);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--accent-color);
    text-shadow: 0 0 10px var(--glow-primary);
}

.social-nav-item a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.social-glow:hover {
    background-color: var(--accent-color);
    color: var(--dark-bg);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px var(--glow-primary);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background-color: var(--secondary-color);
    background-image: linear-gradient(rgba(10, 10, 10, 0.85), rgba(10, 10, 10, 0.85)), url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 7rem 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    font-weight: 800;
    letter-spacing: -1px;
    animation: slideInDown 1s ease-out 0.2s both;
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: var(--light-text);
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    animation: slideInUp 1s ease-out 0.4s both;
}

.ayob-portrait-container {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.ayob-portrait {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--accent-color);
    transition: all 0.3s ease;
    animation: slideInDown 1s ease-out both;
}

.portrait-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 163, 90, 0.2) 0%, transparent 60%); /* Subdued */
    z-index: -1;
    opacity: 0.7;
}

.btn {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--dark-bg);
    padding: 0.9rem 2.2rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 1rem;
    flex-wrap: wrap;
    animation: slideInUp 1s ease-out 0.6s both;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    position: relative;
    overflow: hidden;
}

.hover-fill {
    transition: all 0.3s ease;
}

.hover-fill::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent-color);
    transition: left 0.3s ease;
    z-index: -1;
}

.hover-fill:hover::before {
    left: 0;
}

.hover-fill:hover {
    color: var(--dark-bg);
}

.btn-fixed {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 99;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: bounceIn 1s ease-out 2s both;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Info Bar */
.info-bar {
    background-color: var(--secondary-color);
    padding: 1rem 0;
    text-align: center;
    border-bottom: 1px solid rgba(212, 163, 90, 0.2);
}

.info-content {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateY(-3px);
}

/* Services Section */
.services {
    padding: 5rem 0;
    background-color: var(--dark-bg);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-color);
    position: relative;
    display: inline-block;
    letter-spacing: -0.5px;
}

.section-title h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(45deg, var(--accent-color), var(--glow-bright));
    margin: 0.8rem auto 0;
    border-radius: 2px;
    box-shadow: 0 0 10px var(--glow-primary);
}

.section-subtitle {
    display: block;
    color: var(--accent-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.interactive-card {
    cursor: pointer;
}

.interactive-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 30px var(--glow-secondary);
}

.service-img {
    height: 200px;
    overflow: hidden;
    position: relative;
    background-color: var(--secondary-color); /* Added a fallback background */
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, opacity 0.5s ease; /* Added opacity transition */
    /* Experimental: The 'auto' setting is generally best for photos.
       If images appear slightly blurry or too harsh when scaled, you can try uncommenting
       the -webkit-optimize-contrast. However, the primary solution for pixelation
       is to use higher-resolution source images. */
    image-rendering: auto; /* Default browser rendering for images */
    /* image-rendering: -webkit-optimize-contrast; */ /* For Chrome/Safari - might make images sharper or harsher */
}

.interactive-card:hover .service-img img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--glow-primary), var(--glow-secondary));
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.service-icon {
    font-size: 3rem;
    color: white;
    transform: scale(0);
    transition: transform 0.3s ease 0.1s;
}

.interactive-card:hover .service-overlay {
    opacity: 0.9;
}

.interactive-card:hover .service-icon {
    transform: scale(1);
}

.service-content {
    padding: 1.8rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    color: var(--text-color);
}

.service-content p {
    color: var(--light-text);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
}

.service-book-btn {
    display: inline-block;
    background: linear-gradient(45deg, rgba(212, 163, 90, 0.15), rgba(212, 163, 90, 0.25));
    color: var(--accent-color);
    padding: 0.7rem 1.2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid rgba(212, 163, 90, 0.3);
}

.service-book-btn:hover {
    background: var(--accent-color);
    color: var(--dark-bg);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--glow-primary);
}

/* Video Testimonials Section (Assuming this section exists or is planned) */
.video-testimonials {
    padding: 5rem 0;
    background-color: var(--primary-color);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.video-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.video-placeholder {
    position: relative;
    height: 200px;
    overflow: hidden;
    cursor: pointer;
}

.video-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: white;
    background: rgba(212, 163, 90, 0.9);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.video-placeholder:hover .play-icon {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 30px var(--glow-primary);
}

.video-placeholder:hover img {
    transform: scale(1.05);
}

.video-card h4 {
    padding: 1rem 1rem 0.5rem;
    color: var(--text-color);
    font-size: 1.2rem;
}

.video-card p {
    padding: 0 1rem 1rem;
    color: var(--light-text);
    font-style: italic;
}

/* About Section */
.about {
    padding: 6rem 0;
    background-color: var(--primary-color);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--light-text);
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease;
}

.animated-feature {
    animation: slideInLeft 0.6s ease-out forwards;
}

.animated-feature:nth-child(2) {
    animation-delay: 0.2s;
}

.animated-feature:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.about-feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--accent-color), var(--glow-bright));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-bg);
    font-size: 1.2rem;
    box-shadow: 0 0 20px var(--glow-secondary);
}

.about-feature-text h4 {
    color: var(--text-color);
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.about-feature-text p {
    color: var(--light-text);
    font-size: 0.9rem;
    margin: 0;
}

.about-img {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.about-img img {
    width: 100%;
    display: block;
    transition: transform 0.3s ease;
}

.about-img:hover img {
    transform: scale(1.05);
}

/* Gallery Section */
.gallery {
    padding: 5rem 0;
    background-color: var(--dark-bg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    grid-gap: 1rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    height: 250px;
    cursor: pointer;
    background-color: var(--secondary-color); /* Fallback background for gallery items */
}

.interactive-gallery:hover { /* This class seems to be on the gallery-item itself */
    transform: scale(1.02); /* This might be slightly redundant if gallery-item also has hover */
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--glow-primary), var(--glow-secondary));
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.gallery-overlay i {
    font-size: 2rem;
    color: white;
    transform: scale(0);
    transition: transform 0.3s ease 0.1s;
}

.gallery-item:hover .gallery-overlay { /* Changed from .interactive-gallery to .gallery-item */
    opacity: 0.8;
}

.gallery-item:hover .gallery-overlay i { /* Changed from .interactive-gallery to .gallery-item */
    transform: scale(1);
}

.gallery-item:hover img { /* Changed from .interactive-gallery to .gallery-item */
    transform: scale(1.1);
}

/* ======================================= */
/* ====== CSS FOR IMAGE ZOOM MODAL ====== */
/* ======================================= */

.image-zoom-modal {
    display: none; /* Corrected: was 'none !important;' which is usually not needed */
    position: fixed;
    z-index: 1001; 
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto; /* Allow scrolling if image is too tall, though max-height should prevent */
    background-color: rgba(0,0,0,0.92); 
    backdrop-filter: blur(8px); 
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
    /* display: flex; align-items: center; justify-content: center; */ /* Moved to .show */
}

.image-zoom-modal.show {
    display: flex; 
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.image-zoom-modal-content {
    margin: auto; /* Good for centering block elements */
    display: block;
    max-width: 85%;
    max-height: 85vh; /* Use vh for viewport height responsive sizing */
    animation-name: zoomInEffect;
    animation-duration: 0.5s;
    border-radius: 8px; 
    box-shadow: 0 0 30px rgba(212, 163, 90, 0.3); 
}

@keyframes zoomInEffect {
    from {transform: scale(0.8) translateY(20px); opacity: 0;} /* Added translateY */
    to {transform: scale(1) translateY(0); opacity: 1;}
}

.close-zoom-modal {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 45px;
    font-weight: bold;
    transition: 0.3s ease;
    cursor: pointer;
    line-height: 1;
    z-index: 1002; 
}

.close-zoom-modal:hover,
.close-zoom-modal:focus {
    color: var(--accent-color);
    transform: scale(1.1) rotate(90deg); /* Added rotate on hover */
}

#zoomCaption {
    text-align: center;
    color: #ccc;
    padding: 10px 15px; /* Adjusted padding */
    font-size: 1rem;
    position: absolute; 
    bottom: 15px; /* Adjusted position */
    left: 50%;
    transform: translateX(-50%);
    width: auto; /* Let content define width up to max */
    max-width: 70%;
    background-color: rgba(0,0,0,0.5); /* Slightly more prominent background */
    border-radius: 4px;
    transition: opacity 0.3s ease; /* For potential future hide/show */
}

.prev-zoom, .next-zoom {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px; /* Adjusted padding */
    margin-top: -25px; /* Adjusted vertical centering */
    color: white;
    font-weight: bold;
    font-size: 24px; /* Adjusted size */
    transition: 0.4s ease;
    border-radius: 4px; /* Consistent rounding */
    user-select: none;
    -webkit-user-select: none;
    background-color: rgba(0,0,0,0.4); /* Slightly adjusted alpha */
    z-index: 1002; 
    line-height: 1;
}

.next-zoom {
    right: 10px; /* Adjusted position */
}
.prev-zoom {
    left: 10px; /* Adjusted position */
}

.prev-zoom:hover, .next-zoom:hover {
    background-color: rgba(212,163,90,0.7); 
    color: var(--dark-bg);
    transform: scale(1.05); /* Subtle scale on hover */
}

/* Ensure modal elements are correctly displayed/hidden with .show class */
.image-zoom-modal:not(.show) {
    pointer-events: none; /* Prevent interaction when hidden */
}

/* Enhanced Booking Section from claude/style.css */
.booking {
    padding: 5rem 0;
    background-color: var(--primary-color);
}

.booking-enhanced {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two columns for form and visual */
    gap: 3rem;
    align-items: start; /* Align items to the start of the grid area */
}

/* Styles for the booking form container itself */
.booking-form {
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(30, 30, 30, 0.95) 100%);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(212, 163, 90, 0.2); /* Subtle border using accent color */
}

/* Form group styling */
.form-group {
    margin-bottom: 1.5rem; /* Space below each form group */
}

/* Form label styling */
.form-label {
    display: block; /* Labels take full width */
    margin-bottom: 0.5rem; /* Space below label, above input */
    font-weight: 500;
    color: var(--text-color);
}

/* Common styles for form controls (inputs, selects, textareas) */
.form-control,
.animated-input, /* Class from original HTML, treated as form-control */
.animated-select { /* Class from original HTML, treated as form-control */
    width: 100%;
    padding: 0.8rem 1rem;
    font-size: 1rem;
    border: 2px solid rgba(68, 68, 68, 0.5); /* Darker border */
    border-radius: 8px;
    background-color: rgba(51, 51, 51, 0.7); /* Semi-transparent dark background */
    color: var(--text-color);
    transition: all 0.3s ease;
}

/* Focus styles for form controls */
.form-control:focus,
.animated-input:focus,
.animated-select:focus {
    outline: none; /* Remove default browser outline */
    border-color: var(--accent-color); /* Highlight with accent color on focus */
    box-shadow: 0 0 15px var(--glow-secondary); /* Add a glow effect on focus */
}

/* Layout for form rows with multiple inputs */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two equal columns for side-by-side inputs */
    gap: 1rem; /* Space between inputs in a row */
}

/* Time Slots Visualization */
.time-slots {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr)); /* Responsive columns for time slots */
    gap: 0.5rem; /* Space between time slot buttons */
    margin-top: 0.5rem;
}

/* Individual time slot button styling */
.time-slot {
    padding: 0.6rem 0.8rem;
    background: rgba(68, 68, 68, 0.5); /* Default background for time slots */
    border: 2px solid transparent;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--light-text);
    font-size: 0.9rem;
    font-family: inherit; /* Ensure button text matches page font */
}

.time-slot:hover {
    background: rgba(212, 163, 90, 0.2); /* Accent color hint on hover */
    border-color: var(--accent-color);
    color: var(--accent-color);
    transform: translateY(-2px); /* Slight lift effect on hover */
}

.time-slot.selected {
    background: var(--accent-color); /* Strong accent color for selected slot */
    color: var(--dark-bg);
    box-shadow: 0 0 15px var(--glow-primary); /* Glow for selected slot */
    font-weight: bold;
}

.time-slot.unavailable { /* Style for slots that are booked (if you implement this visual state) */
    background: rgba(68, 68, 68, 0.3);
    color: rgba(176, 176, 176, 0.5);
    cursor: not-allowed;
    opacity: 0.6;
}

/* Submit button styling */
.submit-btn { /* Applied to the main booking button */
    width: 100%;
    margin-top: 1rem; /* Space above the submit button */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem; /* Space between icon and text if any */
    font-size: 1.1rem;
    padding: 1rem; /* Generous padding for a primary action button */
}

.submit-btn:hover {
    transform: translateY(-3px); /* Lift effect on hover */
}

/* Booking Visual (right side of the booking section) */
.booking-visual {
    display: flex;
    align-items: center; /* Vertically center content */
    justify-content: center; /* Horizontally center content */
    padding: 1rem;
}

.booking-illustration {
    text-align: center;
    position: relative;
}

.barber-chair { /* The large chair icon */
    font-size: 8rem;
    color: var(--accent-color);
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 20px var(--glow-primary)); /* Glow effect */
    animation: chairGlow 3s ease-in-out infinite alternate; /* Pulsating glow animation */
}

/* Animation for the barber chair glow */
@keyframes chairGlow {
    from {
        filter: drop-shadow(0 0 20px var(--glow-primary));
    }
    to {
        filter: drop-shadow(0 0 30px var(--glow-bright)) opacity(0.9);
    }
}

/* Booking steps indicator */
.booking-steps {
    display: flex;
    flex-direction: column; /* Stack steps vertically */
    gap: 1.5rem; /* Space between steps */
}

.step { /* Individual step item */
    display: flex;
    align-items: center;
    gap: 1rem; /* Space between icon and text */
    opacity: 0.6; /* Non-active steps are semi-transparent */
    transition: all 0.3s ease;
}

.step.active { /* Active step styling */
    opacity: 1;
    transform: scale(1.05); /* Slightly larger to emphasize */
}

.step-icon { /* Circular icon for step number */
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(68, 68, 68, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-text);
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.step.active .step-icon {
    background: var(--accent-color); /* Active step icon uses accent color */
    color: var(--dark-bg);
    box-shadow: 0 0 15px var(--glow-primary);
    border-color: var(--glow-bright);
}

.step span { /* Text for the step */
    color: var(--light-text);
    font-weight: 500;
    transition: color 0.3s ease;
}

.step.active span {
    color: var(--text-color); /* Active step text is brighter */
    font-weight: 600;
}

/* Styles for Vue.js dynamic messages (originally inline in Vue template) */
.loading-slots, 
.no-slots-message {
    padding: 10px;
    text-align: center;
    color: var(--light-text); /* Using variable for light text color */
    font-style: italic;
}

.status-message {
    padding: 10px 15px; /* Adjusted padding for better appearance */
    margin-bottom: 1.5rem; /* Consistent with .form-group margin */
    border-radius: 8px; /* Consistent with .form-control */
    text-align: center;
    font-weight: 500; /* Make status message text slightly bolder */
}

.alert-success {
    background-color: var(--success-color); /* Ensure --success-color is defined in :root */
    color: var(--dark-bg); /* Ensure --dark-bg is defined in :root */
    border: 1px solid rgba(0,0,0,0.1); /* Optional: subtle border */
}

.alert-danger {
    background-color: #dc3545; /* A common Bootstrap danger color */
    color: white;
    border: 1px solid rgba(0,0,0,0.1); /* Optional: subtle border */
}


/* Responsive Styles for Booking Section */
@media (max-width: 992px) {
    .booking-enhanced {
        grid-template-columns: 1fr; /* Stack form and visual on smaller screens */
    }
    .booking-visual {
        margin-top: 2rem; /* Add some space when stacked */
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr; /* Stack elements within form rows */
    }
    .time-slots {
        grid-template-columns: repeat(auto-fit, minmax(70px, 1fr)); /* Adjust time slot columns */
    }
    .barber-chair {
        font-size: 6rem; /* Reduce size of barber chair icon */
    }
}

@media (max-width: 576px) {
    .booking { /* Reduce padding on very small screens */
        padding: 3rem 0;
    }
    .booking-form { /* Reduce padding inside form */
        padding: 1.5rem;
    }
    .time-slots { /* Fixed columns for very small screens for consistency */
        grid-template-columns: repeat(3, 1fr); 
        gap: 0.4rem;
    }
    .time-slot {
        font-size: 0.85rem;
        padding: 0.5rem;
    }
    .booking-steps { /* Change steps to horizontal layout, wrapping if needed */
        flex-direction: row; 
        gap: 1rem; 
        justify-content: center; 
        flex-wrap: wrap; 
    }
    .step { /* Adjust individual step for horizontal layout */
        flex-direction: column; /* Icon above text */
        text-align: center;
        gap: 0.5rem;
    }
    .step span {
        font-size: 0.8rem;
    }
}

/* ============================================= */
/* ====== UPDATED STYLES FOR KONTAKT SECTION ====== */
/* ============================================= */

.contact {
    padding: 5rem 0;
    background-color: var(--dark-bg);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch; 
}

.contact-info {
    padding: 2.5rem; 
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(24, 24, 24, 0.95) 100%);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(212, 163, 90, 0.2);
    display: flex; 
    flex-direction: column;
}

.contact-info h3 {
    margin-bottom: 2rem; 
    font-size: 1.8rem;
    color: var(--text-color);
    position: relative; 
}

.contact-info h3::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--accent-color);
    margin-top: 0.5rem;
    border-radius: 1px;
    box-shadow: 0 0 8px var(--glow-secondary);
}


.contact-detail {
    display: flex;
    align-items: center;
    margin-bottom: 1.8rem; 
    transition: all 0.3s ease;
}

.contact-detail:hover {
    transform: translateX(8px); 
}

.contact-detail:last-of-type { /* Use last-of-type for better accuracy */
    margin-bottom: 0; 
}

.contact-icon-container {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--accent-color), var(--glow-bright));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem; 
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px var(--glow-secondary);
}

.contact-icon-container i.icon-accent { 
    color: var(--dark-bg); 
    font-size: 1.3rem; 
    transition: transform 0.3s ease;
}

.contact-detail:hover .contact-icon-container {
    transform: scale(1.1) rotate(-5deg); 
    box-shadow: 0 0 25px var(--glow-primary);
}

.contact-detail:hover .contact-icon-container i.icon-accent {
    transform: rotate(5deg); 
}

.contact-text h4 {
    font-size: 1.15rem; 
    color: var(--text-color);
    margin-bottom: 0.4rem; 
}

.contact-text p {
    color: var(--light-text);
    margin: 0; 
    line-height: 1.5; 
}
.contact-text p a { 
    color: var(--light-text);
    text-decoration: none;
    transition: color 0.3s ease;
}
.contact-text p a:hover {
    color: var(--accent-color);
}

.contact-info .social-links {
    margin-top: auto; 
    padding-top: 1.5rem; 
    justify-content: flex-start; 
}

.map-container {
    height: 100%; 
    min-height: 400px; 
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid transparent;
    background: linear-gradient(var(--dark-bg), var(--dark-bg)) padding-box,
                linear-gradient(45deg, var(--accent-color), transparent, var(--accent-color)) border-box;
    box-shadow: 0 0 20px var(--glow-secondary);
    transition: box-shadow 0.3s ease;
}

.map-container:hover {
    box-shadow: 0 0 30px var(--glow-primary);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(0.7) contrast(1.1) brightness(0.9); 
    transition: filter 0.4s ease;
}

.map-container:hover iframe {
    filter: grayscale(0.1) contrast(1) brightness(1);
}

/* Reviews Section */
.reviews {
    padding: 5rem 0;
    background-color: var(--primary-color);
}

.reviews-slider {
    width: 100%;
    overflow: hidden; /* Crucial for the sliding effect */
    position: relative;
}

.reviews-container {
    display: flex;
    transition: transform 0.5s ease-in-out; /* Smoother transition */
}

.review-card {
    flex: 0 0 100%; /* Each card takes full width of slider */
    padding: 2rem 2.5rem; /* Increased padding */
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(24, 24, 24, 0.95) 100%);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    text-align: center;
    border: 1px solid rgba(212, 163, 90, 0.2);
    /* To prevent content overflow issues within the card if text is too long */
    overflow: hidden; 
}

.review-text {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--light-text);
    font-style: italic;
    line-height: 1.7; /* Increased line height */
}

.review-stars {
    margin-bottom: 1rem;
}

.review-stars .glow-icon { /* .glow-icon is defined globally */
    margin: 0 0.2rem;
    font-size: 1.2rem;
    color: var(--accent-color); /* Ensure stars are accent color */
}
/* Assuming .star-filled class would make them filled, if not already by icon choice */
.review-stars .star-filled { 
    /* color: var(--accent-color); */ /* Redundant if .glow-icon already does this */
}


.review-author {
    font-weight: 600;
    color: var(--text-color);
    font-size: 1.1rem;
    margin-top: 1rem; /* Space above author */
}

.review-nav {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    gap: 1rem;
}

.nav-btn {
    background: rgba(68, 68, 68, 0.5);
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--accent-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: var(--accent-color);
    color: var(--dark-bg);
    transform: scale(1.1) rotate(5deg); /* Added slight rotation */
}

/* Blog Section */
.blog {
    padding: 5rem 0;
    background-color: var(--dark-bg);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.blog-card {
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(24, 24, 24, 0.95) 100%);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(212, 163, 90, 0.1);
    position: relative; /* For overlay */
}

.blog-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px var(--glow-secondary);
}

.blog-img {
    height: 200px;
    overflow: hidden;
    position: relative;
    background-color: var(--secondary-color); /* Fallback background */
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-overlay { /* This seems like a hover effect for the image */
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--glow-primary), var(--glow-secondary));
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.blog-overlay i { /* Icon for the blog image overlay */
    font-size: 2rem;
    color: white;
    transform: translateX(-20px); /* Start off-center for animation */
    transition: transform 0.3s ease 0.1s;
}

.blog-card:hover .blog-overlay {
    opacity: 0.8;
}

.blog-card:hover .blog-overlay i {
    transform: translateX(0); /* Animate to center */
}

.blog-card:hover .blog-img img {
    transform: scale(1.1);
}

.blog-content {
    padding: 1.5rem;
}

.blog-date { /* Or .blog-meta */
    font-size: 0.9rem;
    color: var(--accent-color); /* Make date stand out */
    margin-bottom: 0.5rem;
    display: block;
    font-weight: 600;
}

.blog-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    transition: color 0.3s ease;
    line-height: 1.3; /* Adjust line height for titles */
}

.blog-card:hover .blog-content h3 {
    color: var(--accent-color);
}

.blog-content p {
    color: var(--light-text);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, rgba(18, 18, 18, 0.95) 100%);
    padding: 3rem 0 1rem;
    color: var(--light-text);
    border-top: 1px solid rgba(212, 163, 90, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    position: relative;
}

.footer-col h4::after {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    background: linear-gradient(45deg, var(--accent-color), var(--glow-bright));
    margin-top: 0.5rem;
    box-shadow: 0 0 10px var(--glow-primary);
}

.footer-col p {
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.95rem; /* Slightly smaller footer text */
}

.footer-links {
    list-style: none;
    padding-left: 0; /* Remove default padding */
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links li a {
    color: var(--light-text);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    font-size: 0.95rem;
}

.footer-links li a::before {
    content: '\f105'; /* FontAwesome angle-right icon */
    font-family: "Font Awesome 6 Free"; /* Ensure FontAwesome is loaded */
    font-weight: 900;
    margin-right: 0.5em;
    color: var(--accent-color);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-links li a:hover {
    color: var(--accent-color);
    transform: translateX(5px); /* Keep existing translate */
}

.footer-links li a:hover::before {
    opacity: 1; /* Show icon on hover */
}

.social-links { /* Global social links style */
    display: flex;
    gap: 1rem;
    align-items: center; /* Align items if heights vary */
}

.social-link { /* Individual social link */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(51, 51, 51, 0.5);
    border: 2px solid rgba(212, 163, 90, 0.3);
    border-radius: 50%;
    color: var(--text-color); /* Icon color */
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent-color);
    color: var(--dark-bg);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 20px var(--glow-primary);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(68, 68, 68, 0.5);
    text-align: center;
    font-size: 0.9rem; /* Adjust font size */
}

.qr-code {
    width: 120px;
    height: 120px;
    margin: 0 auto 1rem; /* Center block element */
    border-radius: 12px;
    overflow: hidden; /* Ensures image stays within border */
    transition: all 0.3s ease;
    padding: 5px; /* Add padding around QR code image */
    background: white; /* Background for QR code visibility */
}

.qr-code:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px var(--glow-secondary); /* Add hover effect to QR */
}

.qr-code img {
    width: 100%;
    height: 100%;
    display: block; /* Remove extra space below image */
}

/* Modal (Confirmation Modal) */
.modal { /* General modal style for confirmation */
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85); /* Slightly darker overlay */
    z-index: 1000;
    /* overflow: auto; /* Not always needed if content is centered and fits */
    /* padding: 2rem 0; /* Padding might be better on modal-content */
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    /* Added for centering content */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0; /* For transition */
    transition: opacity 0.3s ease-in-out;
    pointer-events: none; /* Prevent interaction when hidden */
}

.modal.show { /* Class to trigger display */
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(30, 30, 30, 0.95) 100%);
    max-width: 500px;
    width: 90%; /* Responsive width */
    margin: auto; /* Centering */
    padding: 2.5rem; /* Increased padding */
    border-radius: 12px;
    position: relative;
    animation-name: modalSlideIn; /* Keeping existing animation */
    animation-duration: 0.4s;
    border: 2px solid rgba(212, 163, 90, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    transform: scale(0.95); /* Start slightly smaller for animation if not using keyframes for it */
    transition: transform 0.3s ease-in-out;
}
.modal.show .modal-content {
    transform: scale(1);
}


@keyframes modalSlideIn { /* This animation will run when modal gets display: block/flex */
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.close-modal { /* Button to close the confirmation modal */
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    color: var(--light-text);
    background: transparent; /* Ensure no background */
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0; /* Remove padding if any */
}

.close-modal:hover {
    color: var(--accent-color);
    background: rgba(212, 163, 90, 0.1);
    transform: rotate(90deg) scale(1.1); /* Added scale */
}

.confirmation-message {
    text-align: center;
    padding: 1rem 0; /* Adjusted padding */
}

.confirmation-message i.fas.fa-check-circle { /* Specific targeting for the icon */
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: var(--success-color); /* Using success color variable */
    filter: drop-shadow(0 0 15px var(--success-color)); /* Glow for success icon */
}
/* Remove .success-glow class if icon is directly styled */

/* @keyframes successPulse (already defined, ensure it targets the correct icon if used) */

.confirmation-message h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.confirmation-message p {
    color: var(--light-text);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Particles (Ensure #particles div exists if this is used) */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1; /* Ensure particles are behind content if they interfere */
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 50%;
    animation: particleFloat 3s ease-out forwards; /* 'forwards' keeps end state */
    box-shadow: 0 0 10px var(--glow-primary);
    opacity: 0.7; /* Initial opacity */
}

@keyframes particleFloat {
    0% {
        opacity: 0.7; /* Start with some opacity */
        transform: translateY(0) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(-100px) scale(0.5); /* Scale down for softer disappearance */
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-content,
    .contact-content,
    .booking-enhanced {
        grid-template-columns: 1fr;
    }
    
    .about-img {
        order: 1; /* Default order, but explicit if needed */
    }
    
    .about-text {
        order: 2; /* Default order, but explicit */
    }

    .hero-title {
        font-size: 3rem;
    }

    .floating-elements {
        display: none; /* Hide performance intensive elements on smaller screens */
    }
    .map-container { /* From contact responsive */
        height: 350px; 
        min-height: 300px;
    }
    .contact-info { /* From contact responsive */
        padding: 2rem; 
    }
}

@media (max-width: 768px) {
    body {
        cursor: default; /* Remove custom cursor for touch devices */
    }

    .custom-cursor,
    .cursor-trail {
        display: none;
    }

    .header-container {
        position: relative; /* For nav positioning */
    }
    
    .mobile-menu-btn {
        display: block; /* Show mobile menu button */
        z-index: 101; /* Ensure it's above nav when closed */
    }
    
    nav {
        position: absolute;
        top: 100%; /* Position below header */
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, var(--primary-color) 0%, rgba(18, 18, 18, 0.98) 100%);
        padding: 1rem 0;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        display: none; /* Controlled by JS .active class */
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        max-height: calc(100vh - 70px); /* Limit height and allow scroll if many items */
        overflow-y: auto;
    }
    
    nav.active {
        display: block;
        animation: slideInDownNav 0.3s ease-out; /* Custom animation name */
    }
    
    @keyframes slideInDownNav { /* Custom animation for nav */
        from { opacity: 0; transform: translateY(-20px); }
        to { opacity: 1; transform: translateY(0); }
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        width: 100%; /* Ensure ul takes full width */
    }
    
    nav ul li {
        margin: 0.8rem 0;
        width: 100%; /* Make li take full width for easier clicking */
        text-align: center; /* Center nav links */
    }
    .nav-link {
        display: block; /* Make link fill li */
        padding: 0.5rem 0; /* Add some padding to links */
    }
    
    .form-row {
        grid-template-columns: 1fr; /* Stack form elements */
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }

    .services-grid,
    .blog-grid,
    .video-grid { /* Assuming video-grid exists */
        grid-template-columns: 1fr; /* Stack cards */
    }

    .time-slots {
        grid-template-columns: repeat(auto-fit, minmax(70px, 1fr)); /* Adjust for smaller screens */
    }

    .barber-chair {
        font-size: 6rem;
    }

    /* Contact section specific for 768px */
    .contact-info h3 {
        font-size: 1.6rem;
    }
    .contact-icon-container {
        width: 45px;
        height: 45px;
        margin-right: 1rem;
    }
    .contact-icon-container i.icon-accent {
        font-size: 1.1rem;
    }
    .contact-text h4 {
        font-size: 1.05rem;
    }
    .contact-text p {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.2rem; /* Further reduce size */
        line-height: 1.2; /* Improve readability */
    }
    .hero-description {
        font-size: 1.1rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .btn-fixed {
        bottom: 1rem;
        right: 1rem;
        padding: 0.7rem 1.2rem; /* Slightly larger padding */
        font-size: 0.9rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr; /* Stack footer columns */
        text-align: center; /* Center text in footer columns */
    }
    .footer-col h4::after {
        margin-left: auto; /* Center underline */
        margin-right: auto;
    }
    .footer-links {
        padding-left: 0; /* Remove padding if any */
    }
    .social-links {
        justify-content: center; /* Center social links */
    }


    .ayob-portrait {
        width: 150px;
        height: 150px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem; /* Adjust gap */
    }

    .hero-buttons .btn {
        width: 90%; /* Make buttons wider */
        max-width: 300px; /* Max width for very small screens */
        text-align: center;
        font-size: 1rem; /* Adjust font size */
        padding: 0.8rem 1.5rem;
    }

    .time-slots {
        grid-template-columns: repeat(3, 1fr); /* Adjust for better fit */
        gap: 0.4rem;
    }
    .time-slot {
        font-size: 0.85rem;
        padding: 0.5rem;
    }


    .booking-steps {
        flex-direction: row; /* Keep as row if space allows, or column */
        gap: 1rem; /* Adjust gap */
        justify-content: center; /* Center steps */
        flex-wrap: wrap; /* Allow wrapping */
    }

    .step {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .step span {
        font-size: 0.8rem;
    }

    .modal-content { /* Confirmation modal on small screens */
        padding: 1.5rem;
    }
    .confirmation-message i.fas.fa-check-circle {
        font-size: 3rem;
    }
    .confirmation-message h3 {
        font-size: 1.5rem;
    }
}