/*
 * Hairport Professional Unisex Salon - Core Premium Stylesheet
 * Custom-crafted luxurious and modern aesthetics.
 */

/* --- GOOGLE FONTS IMPORT --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

/* --- CUSTOM VARIABLES / DESIGN SYSTEM --- */
:root {
    /* Cohesive Luxury Color Palette (Burgundy & Gold) */
    --color-bg-primary: #FCFAF7;       /* Luxury Silk Champagne */
    --color-bg-secondary: #F7EFE5;     /* Warm Rose Sand */
    --color-bg-dark: #1F1012;          /* Rich Velvet Espresso / Deep Burgundy Black */
    --color-text-dark: #2F1A1C;        /* Dark Burgundy Espresso */
    --color-text-muted: #7A6265;       /* Warm Taupe Rose */
    --color-text-light: #FFFDFB;       /* Pure Silk White */
    
    /* Vibrant Premium Luxury Accents */
    --color-accent: #D4AF37;           /* Lustrous Bright Champagne Gold */
    --color-accent-hover: #C59F2D;     /* Antique Amber Gold */
    --color-accent-soft: rgba(212, 175, 55, 0.12);
    --color-border: rgba(212, 175, 55, 0.25);
    
    --color-burgundy: #6B1D2F;         /* Rich Prestigious Velvet Burgundy */
    --color-burgundy-hover: #541421;
    --color-burgundy-soft: rgba(107, 29, 47, 0.08);
    
    /* Layout Details */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;
    
    --shadow-soft: 0 10px 30px rgba(107, 29, 47, 0.04);
    --shadow-medium: 0 15px 45px rgba(107, 29, 47, 0.08);
    --shadow-premium: 0 20px 50px rgba(212, 175, 55, 0.18);
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
    
    --header-height: 85px;
    --border-radius: 12px;
}

/* --- RESET & GLOBAL STYLES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: 0.02em;
}

p {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--color-text-muted);
}

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

/* --- UTILITY CLASSES --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
    position: relative;
}

.section-bg-secondary {
    background-color: var(--color-bg-secondary);
}

.section-bg-dark {
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
}

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

.section-header {
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-tag {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-burgundy); /* Velvet Burgundy Tag */
    display: inline-block;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 400;
    margin-bottom: 18px;
    position: relative;
    display: inline-block;
}

.section-bg-dark .section-title {
    color: var(--color-text-light);
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 1.5px;
    background-color: var(--color-burgundy); /* Velvet Burgundy Underline */
    margin: 15px auto 0 auto;
}

.section-subtitle {
    font-size: 1.05rem;
    max-width: 550px;
    margin: 0 auto;
}

/* --- BUTTONS & CALLS TO ACTION --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 4px;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
    gap: 8px;
}

.btn-primary {
    background-color: var(--color-burgundy);
    color: var(--color-text-light);
    box-shadow: 0 4px 15px rgba(107, 29, 47, 0.25);
}

.btn-primary:hover {
    background-color: var(--color-accent);
    color: var(--color-bg-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-premium);
}

.btn-secondary {
    background-color: transparent;
    border: 1px solid var(--color-accent);
    color: var(--color-text-dark);
}

.btn-secondary:hover {
    background-color: var(--color-accent-soft);
    transform: translateY(-2px);
}

.btn-dark {
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
}

.btn-dark:hover {
    background-color: #2D2723;
    transform: translateY(-2px);
}

.section-bg-dark .btn-secondary {
    color: var(--color-text-light);
}

.section-bg-dark .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.btn-group {
    display: inline-flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

/* --- HEADER & NAVIGATION --- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    background-color: transparent;
    border-bottom: 1px solid transparent;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
}

.main-header.scrolled {
    background-color: rgba(250, 246, 240, 0.95);
    backdrop-filter: blur(10px);
    height: 75px;
    border-bottom: 1px solid rgba(197, 168, 128, 0.15);
    box-shadow: 0 5px 25px rgba(44, 37, 32, 0.03);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--color-text-light); /* Default white on dark Hero */
    text-transform: uppercase;
    transition: var(--transition-smooth);
}

.main-header.scrolled .logo-main {
    color: var(--color-text-dark); /* Espresso when scrolled */
}

.logo-sub {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    color: var(--color-accent);
    text-transform: uppercase;
    margin-top: -2px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 28px;
    align-items: center;
}

.nav-links a {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: rgba(251, 249, 246, 0.85); /* Default white on dark Hero */
    text-transform: uppercase;
    position: relative;
    padding: 6px 0;
    transition: var(--transition-smooth);
}

.nav-links a:hover {
    color: var(--color-text-light);
}

.main-header.scrolled .nav-links a {
    color: var(--color-text-dark);
}

.main-header.scrolled .nav-links a:hover {
    color: var(--color-accent);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background-color: var(--color-accent);
    transition: var(--transition-fast);
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Secondary header button adjustments for scroll contrast */
.main-header .header-actions .btn-secondary {
    color: var(--color-text-light);
    border-color: rgba(255, 255, 255, 0.4);
    transition: var(--transition-smooth);
}

.main-header .header-actions .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.main-header.scrolled .header-actions .btn-secondary {
    color: var(--color-text-dark);
    border-color: var(--color-accent);
}

.main-header.scrolled .header-actions .btn-secondary:hover {
    background-color: var(--color-accent-soft);
}

/* Burger menu */
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
    z-index: 1001;
}

.burger-menu span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-text-light); /* Default white on dark Hero */
    transition: var(--transition-smooth);
}

.main-header.scrolled .burger-menu span {
    background-color: var(--color-text-dark);
}

/* --- HERO SECTION --- */
.hero {
    position: relative;
    height: 100vh;
    min-height: 650px;
    background-color: var(--color-bg-dark);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: var(--header-height);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(30, 27, 24, 0.78); /* Premium luxury dimming */
    z-index: 1;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-tag {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    color: var(--color-accent);
    text-transform: uppercase;
    margin-bottom: 20px;
    display: inline-block;
    animation: fadeInUp 0.8s ease;
}

.hero-title {
    font-size: 4rem;
    color: var(--color-text-light);
    font-weight: 300;
    line-height: 1.15;
    margin-bottom: 24px;
    animation: fadeInUp 1s ease;
}

.hero-title span {
    font-family: var(--font-heading);
    font-weight: 600;
    font-style: italic;
    color: var(--color-accent);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(251, 249, 246, 0.8);
    margin-bottom: 40px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1.2s ease;
}

.hero-ctas {
    animation: fadeInUp 1.4s ease;
    margin-bottom: 40px;
}

/* Explicit visibility override for Hero section buttons to pop with high contrast */
.hero .btn-primary {
    background-color: var(--color-accent) !important;
    color: var(--color-bg-dark) !important;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.35) !important;
    font-weight: 700 !important;
    border: 1px solid var(--color-accent) !important;
}

.hero .btn-primary:hover {
    background-color: var(--color-text-light) !important;
    color: var(--color-bg-dark) !important;
    border-color: var(--color-text-light) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 6px 25px rgba(255, 255, 255, 0.4) !important;
}

.hero .btn-secondary {
    color: var(--color-accent) !important;
    border-color: var(--color-accent) !important;
    background-color: rgba(31, 16, 18, 0.5) !important; /* Semi-transparent background for rich depth overlay */
    backdrop-filter: blur(4px) !important;
    font-weight: 600 !important;
}

.hero .btn-secondary:hover {
    background-color: var(--color-accent) !important;
    color: var(--color-bg-dark) !important;
    border-color: var(--color-accent) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3) !important;
}

.hero-trustpoints {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    animation: fadeInUp 1.6s ease;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(251, 249, 246, 0.7);
    font-size: 0.85rem;
}

.trust-item svg {
    width: 16px;
    height: 16px;
    fill: var(--color-accent);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- ABOUT SECTION --- */
.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.about-text h3 {
    font-size: 2.2rem;
    margin-bottom: 24px;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1rem;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 36px;
}

.highlight-box {
    border-left: 2px solid var(--color-accent);
    padding-left: 16px;
}

.highlight-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.highlight-box p {
    font-size: 0.85rem;
    margin-bottom: 0;
}

.about-image-wrapper {
    position: relative;
    padding: 15px;
}

.about-image {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;
    height: 70%;
    border: 2px solid var(--color-accent);
    border-radius: var(--border-radius);
    z-index: -1;
    transition: var(--transition-smooth);
}

.about-image-wrapper:hover::before {
    top: -5px;
    left: -5px;
    width: 74%;
    height: 74%;
}

/* --- SERVICES SECTION --- */
.services-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 45px;
    flex-wrap: wrap;
}

.filter-btn {
    background-color: var(--color-bg-primary);
    border: 1px solid var(--color-border);
    color: var(--color-text-dark);
    padding: 8px 18px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.filter-btn.active, .filter-btn:hover {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-bg-dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.service-card-wrapper {
    transition: var(--transition-smooth);
}

.service-card {
    background-color: var(--color-bg-primary);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    padding: 36px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    border-color: var(--color-accent);
}

.service-icon {
    width: 48px;
    height: 48px;
    background-color: var(--color-accent-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
    background-color: var(--color-accent);
}

.service-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--color-accent);
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon svg {
    fill: var(--color-bg-dark);
}

.service-info h3 {
    font-size: 1.45rem;
    margin-bottom: 12px;
}

.service-info p {
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.service-price {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-accent);
    margin-bottom: 24px;
    display: block;
}

.service-cta {
    align-self: flex-start;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-dark);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.service-cta svg {
    width: 14px;
    height: 14px;
    fill: var(--color-text-dark);
    transition: var(--transition-fast);
}

.service-card:hover .service-cta svg {
    transform: translateX(4px);
}

/* --- WHY CHOOSE US --- */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.why-card {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 40px;
    text-align: center;
    transition: var(--transition-smooth);
}

.why-card:hover {
    background-color: rgba(197, 168, 128, 0.05);
    border-color: rgba(197, 168, 128, 0.3);
    transform: translateY(-5px);
}

.why-icon {
    width: 64px;
    height: 64px;
    background-color: rgba(197, 168, 128, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
}

.why-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--color-accent);
}

.why-card h3 {
    font-size: 1.4rem;
    color: var(--color-text-light);
    margin-bottom: 12px;
}

.why-card p {
    color: rgba(251, 249, 246, 0.7);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* --- TESTIMONIALS SECTION --- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: var(--color-bg-primary);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    padding: 40px;
    position: relative;
    box-shadow: var(--shadow-soft);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonial-stars svg {
    width: 14px;
    height: 14px;
    fill: var(--color-accent);
}

.testimonial-text {
    font-size: 1rem;
    font-style: italic;
    margin-bottom: 24px;
    color: var(--color-text-dark);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-initial {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--color-accent-soft);
    color: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

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

.author-info p {
    font-size: 0.8rem;
    margin-bottom: 0;
}

/* --- GALLERY SECTION --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    aspect-ratio: 1 / 1;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(30, 27, 24, 0.82);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition-smooth);
    padding: 24px;
    text-align: center;
}

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

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h4 {
    color: var(--color-text-light);
    font-size: 1.4rem;
    margin-bottom: 6px;
}

.gallery-overlay p {
    color: var(--color-accent);
    font-size: 0.85rem;
    margin-bottom: 16px;
}

.gallery-zoom-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-zoom-icon svg {
    width: 18px;
    height: 18px;
    fill: var(--color-bg-dark);
}

/* --- LIGHTBOX POPUP --- */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(30, 27, 24, 0.95);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-content {
    max-width: 90%;
    max-height: 80%;
    position: relative;
}

.lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    border: 2px solid var(--color-accent);
}

.lightbox-close {
    position: absolute;
    top: -45px;
    right: 0;
    color: var(--color-text-light);
    font-size: 32px;
    cursor: pointer;
    background: none;
    border: none;
}

.lightbox-caption {
    color: var(--color-text-light);
    text-align: center;
    margin-top: 15px;
    font-size: 1rem;
}

/* --- FAQ SECTION --- */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 12px;
}

.faq-question {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    font-size: 1.3rem;
    font-weight: 500;
}

.faq-toggle {
    width: 20px;
    height: 20px;
    position: relative;
}

.faq-toggle::before, .faq-toggle::after {
    content: '';
    position: absolute;
    background-color: var(--color-accent);
    transition: var(--transition-fast);
}

/* Horizontal line */
.faq-toggle::before {
    top: 9px;
    left: 0;
    width: 100%;
    height: 2px;
}

/* Vertical line */
.faq-toggle::after {
    top: 0;
    left: 9px;
    width: 2px;
    height: 100%;
}

.faq-item.active .faq-toggle::after {
    transform: rotate(90deg);
    opacity: 0; /* Make minus sign */
}

.faq-item.active .faq-toggle::before {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    transition: max-height 0.3s cubic-bezier(1, 0, 1, 0);
}

.faq-answer p {
    padding-bottom: 24px;
    font-size: 0.95rem;
}

/* --- CONTACT SECTION --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info-block h3 {
    font-size: 2.2rem;
    margin-bottom: 24px;
}

.contact-info-block p {
    margin-bottom: 30px;
    font-size: 1rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.contact-detail-item {
    display: flex;
    gap: 16px;
}

.contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--color-accent-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--color-accent);
}

.contact-text h4 {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-accent);
    margin-bottom: 4px;
}

.contact-text p {
    font-size: 0.95rem;
    margin-bottom: 0;
    color: var(--color-text-dark);
}

.contact-text a:hover {
    color: var(--color-accent);
}

/* Form Styles */
.booking-form-wrapper {
    background-color: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow-soft);
}

.booking-form-wrapper h3 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.booking-form-wrapper p {
    margin-bottom: 30px;
    font-size: 0.85rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    background-color: var(--color-bg-primary);
    border: 1px solid var(--color-border);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--color-text-dark);
    transition: var(--transition-fast);
}

.form-control:focus {
    border-color: var(--color-accent);
    outline: none;
    box-shadow: 0 0 0 3px var(--color-accent-soft);
}

textarea.form-control {
    resize: vertical;
    min-height: 110px;
}

.form-response-wrapper {
    margin-top: 20px;
    display: none;
}

.response-message {
    padding: 15px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 500;
}

.response-message.success {
    background-color: #E2F6EA;
    color: #155724;
    border: 1px solid #C3E6CB;
}

.response-message.error {
    background-color: #FCE8E6;
    color: #721C24;
    border: 1px solid #F5C6CB;
}

/* Spinner */
.loading-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 0.8s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* --- GOOGLE MAPS BLOCK --- */
.map-section {
    padding: 0;
    height: 450px;
    position: relative;
    border-top: 1px solid var(--color-border);
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* --- LUXURY STRUCTURED WIDGET FOOTER --- */
.main-footer {
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
    padding: 80px 0 40px 0;
    border-top: 1px solid var(--color-border);
}

.footer-widgets-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.footer-widget {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 8px;
    padding: 24px;
    transition: var(--transition-smooth);
}

.footer-widget:hover {
    border-color: var(--color-accent);
    background: rgba(255, 255, 255, 0.04);
}

.widget-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--color-accent);
    margin-bottom: 20px;
    position: relative;
    font-weight: 500;
}

.widget-title::after {
    content: '';
    display: block;
    width: 30px;
    height: 1.5px;
    background-color: var(--color-accent);
    margin-top: 8px;
}

.widget-desc {
    color: rgba(251, 249, 246, 0.65);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-top: 15px;
}

.widget-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.widget-links a {
    color: rgba(251, 249, 246, 0.7);
    font-size: 0.85rem;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.widget-links a::before {
    content: '→';
    color: var(--color-accent);
    font-size: 0.75rem;
    transition: var(--transition-fast);
}

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

.widget-links a:hover::before {
    transform: translateX(3px);
}

/* Timings Widget Card */
.timings-widget-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.timing-row {
    display: flex;
    flex-direction: column;
    font-size: 0.85rem;
}

.timing-row .day {
    color: var(--color-accent);
    font-weight: 600;
    margin-bottom: 2px;
}

.timing-row .time {
    color: var(--color-text-light);
}

.holiday-notice {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px dashed rgba(212, 175, 55, 0.2);
}

.holiday-notice .note {
    color: rgba(251, 249, 246, 0.5);
    font-size: 0.78rem;
}

.holiday-notice .time-note {
    color: var(--color-accent);
    font-weight: 600;
    font-size: 0.8rem;
}

/* Quick Action Connect Widget */
.widget-contact-text {
    color: rgba(251, 249, 246, 0.7);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 12px;
}

.widget-contact-text a {
    color: var(--color-accent);
    font-weight: 600;
    transition: var(--transition-fast);
}

.widget-contact-text a:hover {
    color: var(--color-text-light);
}

.widget-social-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.widget-social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 4px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--color-text-light);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: var(--transition-fast);
    background: transparent;
}

.widget-social-btn svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.widget-social-btn:hover {
    background-color: var(--color-accent);
    color: var(--color-bg-dark);
    border-color: var(--color-accent);
    transform: translateY(-2px);
}

.widget-social-btn.instagram-btn {
    border-color: rgba(255, 255, 255, 0.15);
}

.widget-social-btn.instagram-btn:hover {
    background-color: var(--color-burgundy);
    color: var(--color-text-light);
    border-color: var(--color-burgundy);
}

.footer-bottom {
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(251, 249, 246, 0.4);
    font-size: 0.8rem;
}

/* --- TESTIMONIAL SLIDER (CAROUSEL) STYLE --- */
.testimonial-slider-container {
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    padding: 10px 50px;
}

.testimonial-slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

.testimonial-slide {
    flex: 0 0 100%;
    width: 100%;
    padding: 10px;
}

.testimonial-slide .testimonial-card {
    border: 1px solid var(--color-border);
    background: var(--color-bg-primary);
    border-radius: var(--border-radius);
    padding: 40px;
    position: relative;
    box-shadow: var(--shadow-medium);
    margin: 10px;
    transition: var(--transition-smooth);
}

.testimonial-slide .testimonial-card::before {
    content: '"';
    position: absolute;
    top: 15px;
    right: 25px;
    font-family: var(--font-heading);
    font-size: 6rem;
    color: rgba(212, 175, 55, 0.15);
    line-height: 1;
    font-weight: 700;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--color-bg-primary);
    border: 1px solid var(--color-border);
    color: var(--color-burgundy);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    z-index: 10;
    box-shadow: var(--shadow-soft);
}

.slider-arrow:hover {
    background-color: var(--color-burgundy);
    color: var(--color-text-light);
    border-color: var(--color-burgundy);
}

.prev-arrow {
    left: 0;
}

.next-arrow {
    right: 0;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(107, 29, 47, 0.15);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slider-dot.active {
    width: 28px;
    border-radius: 5px;
    background-color: var(--color-burgundy);
}

/* --- MOBILE FLOATING BOTTOM CTA BAR --- */
.sticky-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: rgba(30, 27, 24, 0.95);
    backdrop-filter: blur(10px);
    z-index: 999;
    border-top: 1px solid rgba(197, 168, 128, 0.3);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
}

.sticky-bottom-bar.visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.sticky-cta-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--color-text-light);
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    gap: 4px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.sticky-cta-btn:last-child {
    border-right: none;
    background-color: var(--color-accent);
    color: var(--color-bg-dark);
}

.sticky-cta-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* Hide on desktop, show on mobile */
@media (min-width: 769px) {
    .sticky-bottom-bar {
        display: none !important;
    }
}


/* --- RESPONSIVE LAYOUT MEDIA QUERIES --- */
@media (max-width: 992px) {
    html {
        font-size: 15px;
    }
    
    .section-title {
        font-size: 2.4rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image-wrapper {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .main-header {
        height: 70px;
    }
    
    .logo-main {
        font-size: 1.3rem;
    }
    
    .logo-sub {
        font-size: 0.55rem;
        letter-spacing: 0.25em;
    }
    
    .burger-menu {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background-color: var(--color-bg-primary);
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 36px;
        z-index: 1000;
        transition: var(--transition-smooth);
    }
    
    .nav-links a {
        color: var(--color-text-dark) !important;
    }
    
    .nav-links a:hover {
        color: var(--color-accent) !important;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .burger-menu.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    
    .burger-menu.active span:nth-child(2) {
        opacity: 0;
    }
    
    .burger-menu.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -7px);
    }
    
    body.menu-open {
        overflow: hidden;
    }
    
    .header-actions .btn {
        display: none; /* Hide primary call button in header, rely on burger/hamburger or bottom sticky bar */
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-trustpoints {
        gap: 16px;
    }
    
    .section {
        padding: 70px 0;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .booking-form-wrapper {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.3rem;
    }
    
    .hero-ctas .btn {
        width: 100%;
    }
    
    .btn-group {
        flex-direction: column;
        width: 100%;
    }
}
