/* ==========================================================================
   Design System & Variables
   ========================================================================== */
:root {
    /* Colors - Premium Dark Mode with Bronze/Gold Accents */
    --bg-base: hsl(220, 10%, 4%);
    /* Deep dark blue/black */
    --bg-surface: hsl(220, 10%, 8%);
    /* Slightly lighter for cards */
    --bg-glass: rgba(20, 22, 28, 0.7);
    /* Glassmorphism background */
    --bg-glass-hover: rgba(30, 34, 43, 0.8);

    --accent-primary: hsl(38, 90%, 55%);
    /* Premium Gold/Bronze */
    --accent-primary-hover: hsl(38, 95%, 65%);
    --accent-glow: rgba(230, 163, 25, 0.3);

    --text-primary: hsl(0, 0%, 98%);
    --text-secondary: hsl(220, 10%, 70%);
    --text-muted: hsl(220, 10%, 50%);

    --border-color: rgba(255, 255, 255, 0.08);
    --border-light: rgba(255, 255, 255, 0.15);

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 3rem;
    --space-xl: 5rem;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.22, 1, 0.36, 1);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-base);
    background-image: linear-gradient(rgba(10, 11, 14, 0.90), rgba(10, 11, 14, 0.95)), url('https://images.unsplash.com/photo-1585747860715-2ba37e788b70?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    position: relative;
    min-height: 100vh;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    font-weight: 600;
}

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

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

/* ==========================================================================
   Background Blobs & Glows
   ========================================================================== */
.blob-bg {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-glow) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    top: -200px;
    left: -200px;
    opacity: 0.6;
    animation: float 20s ease-in-out infinite alternate;
}

.blob-bg.blob-2 {
    top: 40%;
    right: -200px;
    left: auto;
    animation-delay: -10s;
    background: radial-gradient(circle, rgba(230, 25, 100, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
}

@keyframes float {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(50px, 50px) scale(1.1);
    }
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */
.glass-card {
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: var(--transition-normal);
}

.glass-card:hover {
    background: var(--bg-glass-hover);
    border-color: var(--border-light);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--space-sm);
    background: linear-gradient(to right, var(--text-primary), var(--text-muted));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-description {
    color: var(--text-secondary);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto var(--space-lg);
}

.section-header {
    text-align: center;
}

/* Animations Triggered by JS */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards cubic-bezier(0.22, 1, 0.36, 1);
}

.fade-in {
    opacity: 0;
    animation: fadeIn 1s forwards ease-out;
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

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

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes bounceSlow {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 1000;
    transition: var(--transition-normal);
}

.navbar.scrolled {
    padding: 1rem 0;
    background: rgba(10, 11, 14, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 10;
}

.logo {
    display: flex;
    align-items: baseline;
    gap: 4px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -0.5px;
}

.logo-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-glow);
}

.nav-links {
    display: flex;
    gap: var(--space-md);
}

.nav-link {
    font-weight: 550;
    font-size: 0.93rem;
    color: var(--text-primary);
    position: relative;
    letter-spacing: 0.4px;
}

.nav-link:hover {
    color: var(--accent-primary);
}

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

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

/* Buttons */
.cta-btn {
    background-color: var(--accent-primary);
    color: #000;
    /* Dark text on bright bg for contrast */
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
    border: none;
    cursor: pointer;
}

.cta-btn:hover {
    background-color: var(--accent-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 163, 25, 0.25);
}

.cta-btn.lg {
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
}

.outline-btn {
    background-color: transparent;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-light);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

.outline-btn:hover {
    border-color: var(--accent-primary);
    background-color: rgba(230, 163, 25, 0.05);
}

.lang-btn {
    background: transparent;
    border: 1px solid var(--border-light);
    color: var(--text-primary);
    padding: 0.5rem 0.8rem;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition-fast);
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--text-secondary);
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: var(--bg-surface);
    border-left: 1px solid var(--border-color);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    padding: 6rem 2rem 2rem;
    gap: 1.5rem;
    transition: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.mobile-menu.open {
    right: 0;
}

.mobile-link {
    font-size: 1.25rem;
    font-family: var(--font-heading);
    font-weight: 600;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-light);
}

.mobile-cta {
    margin-top: 2rem;
    text-align: center;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    min-height: 65vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    padding-top: 85px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(230, 163, 25, 0.1);
    border: 1px solid rgba(230, 163, 25, 0.2);
    color: var(--accent-primary);
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
}

.hero-title .highlight {
    color: var(--accent-primary);
    text-shadow: 0 0 30px var(--accent-glow);
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin-bottom: 2.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Abstract stylized cards representing the barbershop */
.visual-card {
    position: absolute;
    width: 250px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.main-card {
    z-index: 2;
    transform: rotate(-5deg);
    animation: bounceMain 8s infinite ease-in-out;
}

.offset-card {
    z-index: 1;
    transform: rotate(5deg) translate(140px, 60px);
    animation: bounceOffset 8s infinite ease-in-out;
    animation-delay: -4s;
}

@keyframes bounceMain {

    0%,
    100% {
        transform: rotate(-5deg) translateY(0);
    }

    50% {
        transform: rotate(-5deg) translateY(-20px);
    }
}

@keyframes bounceOffset {

    0%,
    100% {
        transform: rotate(5deg) translate(140px, 60px) translateY(0);
    }

    50% {
        transform: rotate(5deg) translate(140px, 60px) translateY(-20px);
    }
}

.card-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-primary);
}

.card-info h3 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

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

/* ==========================================================================
   Services Section
   ========================================================================== */
.services {
    padding: var(--space-xl) var(--space-md);
    max-width: 1280px;
    margin: 0 auto;
}

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

.service-card {
    padding: 2.5rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
    opacity: 0;
    transition: var(--transition-normal);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(230, 163, 25, 0.1);
    color: var(--accent-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    transition: var(--transition-normal);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--accent-primary);
    color: #000;
}

.service-title {
    font-size: 1.25rem;
}

.service-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    flex-grow: 1;
}

.service-price {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-primary);
    margin-top: 1rem;
}

/* ==========================================================================
   Gallery / Carousel Section
   ========================================================================== */
.gallery {
    padding: var(--space-xl) var(--space-md);
    max-width: 1280px;
    margin: 0 auto;
}

.carousel-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
}

.carousel-track-container {
    padding: 0;
    margin: 0;
    position: relative;
    height: 600px;
    overflow: hidden;
}

.carousel-track {
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
}

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

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(10, 11, 14, 0.7);
    border: 1px solid var(--border-light);
    color: var(--text-primary);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: var(--transition-fast);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.carousel-btn:hover {
    background: var(--accent-primary);
    color: #000;
    border-color: var(--accent-primary);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.carousel-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.carousel-indicator {
    border: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition-fast);
}

.carousel-indicator:hover {
    background: rgba(255, 255, 255, 0.6);
}

.carousel-indicator.current-indicator {
    background: var(--accent-primary);
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .carousel-track-container {
        height: 400px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about {
    padding: var(--space-xl) var(--space-md);
    max-width: 1280px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.image-wrapper {
    aspect-ratio: 4/5;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}

.interior-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 34, 43, 0.8), rgba(20, 22, 28, 0.9));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.interior-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.3;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--bg-surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.experience-badge.bounce {
    animation: bounceSlow 6s infinite;
}

.exp-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-primary);
    line-height: 1;
}

.exp-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

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

.features-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 500;
}

.feature-icon {
    color: var(--accent-primary);
    background: rgba(230, 163, 25, 0.1);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}

/* ==========================================================================
   Reviews Section
   ========================================================================== */
.reviews {
    padding: var(--space-xl) var(--space-md);
    max-width: 1280px;
    margin: 0 auto;
}

.reviews-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.rating-number {
    font-size: 3rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.reviews-rating .stars {
    color: var(--accent-primary);
    font-size: 1.25rem;
    display: flex;
    gap: 4px;
}

.rating-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.review-card {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    border-radius: var(--radius-lg);
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.review-header .stars {
    color: var(--accent-primary);
    font-size: 0.9rem;
    display: flex;
    gap: 2px;
}

.review-date {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.review-text {
    flex-grow: 1;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-secondary);
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid var(--border-light);
    padding-top: 1rem;
}

.author-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(230, 163, 25, 0.15);
    color: var(--accent-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 1.2rem;
}

.author-name {
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.author-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
}

.author-label::before {
    content: '\f058';
    /* fa-circle-check */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #10b981;
    /* green verified check */
}

/* ==========================================================================
   Visit / Location Section
   ========================================================================== */
.visit {
    padding: var(--space-xl) var(--space-md);
    max-width: 1280px;
    margin: 0 auto;
}

.visit-container {
    display: grid;
    grid-template-columns: 350px 1fr;
    overflow: hidden;
    padding: 0;
}

.visit-info {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    background: rgba(20, 22, 28, 0.5);
}

.info-group {
    display: flex;
    gap: 1.5rem;
}

.info-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(230, 163, 25, 0.1);
    color: var(--accent-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-details h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.info-details p {
    color: var(--text-secondary);
    margin-bottom: 0.2rem;
}

.highlight-text {
    color: var(--text-primary) !important;
    font-weight: 500;
}

.info-details .time {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--accent-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.info-details .closed {
    color: #ef4444;
    font-size: 0.9rem;
}

.info-divider {
    height: 1px;
    background: var(--border-light);
    width: 100%;
}

.link-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--accent-primary);
    font-weight: 500;
    margin-top: 1rem;
    font-size: 0.95rem;
}

.link-btn:hover {
    gap: 10px;
}

.visit-map {
    min-height: 400px;
    background: var(--bg-surface);
}

/* ==========================================================================
   Footer
   ========================================================================== */
footer {
    background: rgba(10, 11, 14, 0.95);
    border-top: 1px solid var(--border-color);
    padding: 4rem var(--space-md) 2rem;
}

.footer-content {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-desc {
    color: var(--text-secondary);
    margin-top: 1rem;
    max-width: 300px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links h4,
.footer-social h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-secondary);
}

.footer-links a:hover {
    color: var(--accent-primary);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
}

.social-icons a:hover {
    background: var(--accent-primary);
    color: #000;
    transform: translateY(-3px);
}

.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ==========================================================================
   Google Calendar Embedded Button Override
   ========================================================================== */
#booking div[role="button"] {
    background-color: var(--accent-primary) !important;
    color: #000 !important;
    font-family: var(--font-heading) !important;
    font-weight: 600 !important;
    font-size: 1.1rem !important;
    padding: 0.8rem 2rem !important;
    border-radius: var(--radius-full) !important;
    transition: var(--transition-normal) !important;
    border: none !important;
    box-shadow: none !important;
    text-transform: none !important;
    height: auto !important;
    line-height: normal !important;
    margin: 0 auto !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

#booking div[role="button"]:hover {
    background-color: var(--accent-primary-hover) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(230, 163, 25, 0.25) !important;
}

/* ==========================================================================
   Media Queries
   ========================================================================== */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 120px;
    }

    .hero-content {
        align-items: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-visual {
        display: none;
        /* Hide abstract objects on smaller screens to save space */
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-content {
        order: -1;
        text-align: center;
    }

    .features-list {
        align-items: center;
    }

    .visit-container {
        grid-template-columns: 1fr;
    }

    .visit-map {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 var(--space-sm);
    }

    .nav-links {
        display: none;
    }

    .sm-hide {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .logo-text {
        font-size: 1.25rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-desc {
        margin: 1rem auto;
    }

    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    .cta-btn,
    .outline-btn {
        width: 100%;
    }

    .visit-info {
        padding: 2rem 1.5rem;
    }
}

/* ==========================================================================
   WhatsApp Floating Button
   ========================================================================== */
.whatsapp-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: var(--transition-normal);
}

.whatsapp-btn:hover {
    transform: scale(1.1) rotate(5deg);
    background-color: #128c7e;
    color: white;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

@media (max-width: 768px) {
    .whatsapp-btn {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
    }
}