/* YER ISTANBUL - Core Structural Theme Stylesheet
  Design Architecture Language: Modern Premium Glassmorphism & Micro-Transitions
*/

/* ---------------------------------------------------------
   Tokens, Declarations & Theme Matrix Variable Injections
--------------------------------------------------------- */
:root {
    --primary-color: #8B0000;      /* Dark Crimson Velvet Red */
    --secondary-color: #C89B3C;    /* Muted Turkish Gold Leaf */
    --background-color: #FFF8F1;   /* Delicate Cream Silk Surface */
    --dark-color: #222222;         /* Charcoal Obsidian Dark Base */
    --accent-color: #F4D58D;       /* Warm Radiant Sand Amber */
    --text-color-primary: #222222;
    --text-color-muted: #555555;
    
    /* Systemic UI Elevation Specs */
    --glass-bg: rgba(255, 248, 241, 0.75);
    --glass-border: rgba(200, 155, 60, 0.2);
    --glass-shadow: rgba(34, 34, 34, 0.06);
    --radius-standard: 16px;
    --radius-pill: 50px;
    --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Poppins', sans-serif;
}

/* Dark Mode Variable Level Overrides */
body.dark-theme {
    --background-color: #121212;
    --dark-color: #FFF8F1;
    --text-color-primary: #EAEAEA;
    --text-color-muted: #BBBBBB;
    --glass-bg: rgba(25, 25, 25, 0.85);
    --glass-border: rgba(200, 155, 60, 0.25);
    --glass-shadow: rgba(0, 0, 0, 0.5);
}

/* ---------------------------------------------------------
   Structural Foundations & Fluid Resets
--------------------------------------------------------- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--background-color);
}

body {
    font-family: var(--font-body);
    color: var(--text-color-primary);
    background-color: var(--background-color);
    line-height: 1.65;
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
    height: auto;
}

.section-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 24px;
}

/* UI Elements and Structural Components */
.section-badge {
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-block;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 24px;
    font-weight: 700;
}

body.dark-theme .section-title {
    color: var(--secondary-color);
}

.section-desc {
    color: var(--text-color-muted);
    font-size: 1.1rem;
    margin-bottom: 32px;
}

.text-center-wrapper {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px auto;
}

/* ---------------------------------------------------------
   Structural Interactive Component Elements
--------------------------------------------------------- */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px 0 var(--glass-shadow);
    border-radius: var(--radius-standard);
    transition: var(--transition-smooth);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #FFFFFF;
}

.btn-primary:hover {
    background-color: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.btn-secondary {
    background-color: transparent;
    border-color: #FFFFFF;
    color: #FFFFFF;
}

.btn-secondary:hover {
    background-color: #FFFFFF;
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* ---------------------------------------------------------
   Universal Layout Systems (Header, Preloader & Dock)
--------------------------------------------------------- */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--background-color);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.6s;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--primary-color);
    display: block;
    margin-bottom: 16px;
    font-weight: bold;
}

.loader-bar {
    width: 140px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-pill);
}

.loader-bar::after {
    content: '';
    position: absolute;
    width: 40%;
    height: 100%;
    background-color: var(--primary-color);
    left: -50%;
    animation: loaderShimmer 1.5s infinite linear;
}

@keyframes loaderShimmer {
    0% { left: -50%; }
    100% { left: 100%; }
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    width: 0%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    z-index: 10001;
    transition: width 0.1s linear;
}

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
    padding: 20px 0;
    transition: var(--transition-smooth);
}

.main-header.sticky {
    padding: 12px 0;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border-bottom: 1px solid var(--glass-border);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: #FFFFFF;
    letter-spacing: -0.5px;
    transition: var(--transition-smooth);
}

.sticky .logo-text {
    color: var(--primary-color);
}

body.dark-theme .sticky .logo-text {
    color: var(--secondary-color);
}

.nav-list {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    padding: 6px 0;
}

.sticky .nav-link {
    color: var(--text-color-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: var(--transition-smooth);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.theme-toggle-btn, .social-btn {
    background: transparent;
    border: none;
    color: #FFFFFF;
    font-size: 1.2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition-smooth);
}

.sticky .theme-toggle-btn, .sticky .social-btn {
    color: var(--text-color-primary);
    background: rgba(0,0,0,0.04);
}

body.dark-theme .sticky .theme-toggle-btn, 
body.dark-theme .sticky .social-btn {
    background: rgba(255,255,255,0.06);
}

.theme-toggle-btn:hover, .social-btn:hover {
    transform: scale(1.1);
    color: var(--secondary-color);
}

.accent-btn {
    background-color: var(--secondary-color) !important;
    color: #222222 !important;
    font-weight: 600;
}

.accent-btn:hover {
    background-color: var(--primary-color) !important;
    color: #FFFFFF !important;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    width: 30px;
    z-index: 10002;
}

.mobile-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: #FFFFFF;
    transition: var(--transition-smooth);
}

.sticky .mobile-toggle .bar {
    background-color: var(--text-color-primary);
}

/* ---------------------------------------------------------
   Hero Component Presentation Layers
--------------------------------------------------------- */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-size: cover;
    background-position: center;
    will-change: transform;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(34,34,34,0.7), rgba(18,18,18,0.85));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 0 24px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: #FFFFFF;
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 24px;
}

.highlight-text {
    color: var(--secondary-color);
}

.hero-subheading {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    font-weight: 300;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    width: 30px;
    height: 50px;
    border: 2px solid #FFFFFF;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    padding-top: 10px;
}

.mouse-wheel {
    width: 6px;
    height: 6px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    animation: scrollMouse 1.8s infinite ease-in-out;
}

@keyframes scrollMouse {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(18px); opacity: 0; }
}

/* ---------------------------------------------------------
   About & Content Grid Systems
--------------------------------------------------------- */
.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
    align-items: center;
}

.about-features-mini {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.mini-feat-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-standard);
}

.mini-feat-card i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

body.dark-theme .mini-feat-card i {
    color: var(--secondary-color);
}

.mini-feat-card h3 {
    font-size: 1rem;
    font-weight: 600;
}

.about-image-showcase {
    position: relative;
    padding-bottom: 40px;
}

.image-wrapper {
    border-radius: var(--radius-standard);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.main-img {
    width: 85%;
}

.absolute-img {
    position: absolute;
    width: 55%;
    bottom: 0;
    right: 0;
    border: 6px solid var(--background-color);
    transform: translateY(20px);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card {
    padding: 40px 32px;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--secondary-color);
}

.icon-box {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgba(139, 0, 0, 0.1);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 24px auto;
    transition: var(--transition-smooth);
}

body.dark-theme .icon-box {
    background-color: rgba(200, 155, 60, 0.15);
    color: var(--secondary-color);
}

.feature-card:hover .icon-box {
    background-color: var(--primary-color);
    color: #FFFFFF;
    transform: rotateY(360deg);
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.feature-card p {
    color: var(--text-color-muted);
    font-size: 0.95rem;
}

/* ---------------------------------------------------------
   Special Deal Banner Elements
--------------------------------------------------------- */
.deal-section {
    padding: 40px 0;
}

.deal-glass-wrapper {
    background: linear-gradient(135deg, rgba(139,0,0,0.08), rgba(200,155,60,0.08));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 60px;
    position: relative;
    overflow: hidden;
}

.deal-badge-live {
    position: absolute;
    top: 32px;
    right: 32px;
    background-color: var(--primary-color);
    color: #FFFFFF;
    padding: 6px 18px;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-pill);
    animation: pulseGlow 2s infinite alternate;
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(139, 0, 0, 0.5); }
    100% { box-shadow: 0 0 0 10px rgba(139, 0, 0, 0); }
}

.deal-content-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: center;
}

.deal-info h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 16px;
}

body.dark-theme .deal-info h2 {
    color: var(--secondary-color);
}

.deal-info p {
    font-size: 1.1rem;
    color: var(--text-color-muted);
    margin-bottom: 32px;
}

.countdown-container {
    display: flex;
    gap: 24px;
}

.countdown-container div {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--background-color);
    padding: 12px 24px;
    border-radius: var(--radius-standard);
    min-width: 90px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

.countdown-container span {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.countdown-container small {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--text-color-muted);
}

.deal-price-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: var(--radius-standard);
    text-align: center;
    box-shadow: 0 12px 40px rgba(0,0,0,0.05);
}

.price-title {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--text-color-muted);
    display: block;
    margin-bottom: 8px;
}

.price-amount {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--primary-color);
    font-family: var(--font-heading);
    margin-bottom: 24px;
    display: flex;
    align-items: baseline;
    justify-content: center;
}

body.dark-theme .price-amount {
    color: var(--secondary-color);
}

.tax-tag {
    font-size: 1rem;
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--text-color-muted);
    margin-left: 4px;
}

.full-width {
    width: 100%;
}

/* ---------------------------------------------------------
   Menu Application Engine Styling
--------------------------------------------------------- */
.menu-controls {
    padding: 24px;
    margin-bottom: 48px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.search-box-wrapper {
    position: relative;
    width: 100%;
}

.search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-color-muted);
    font-size: 1.1rem;
}

#menuSearch {
    width: 100%;
    padding: 16px 16px 16px 54px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--glass-border);
    background: var(--background-color);
    color: var(--text-color-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: var(--transition-smooth);
}

#menuSearch:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 4px rgba(200, 155, 60, 0.15);
}

.filter-categories-scroll {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-behavior: smooth;
    scrollbar-width: thin;
}

.filter-categories-scroll::-webkit-scrollbar {
    height: 4px;
}

.filter-categories-scroll::-webkit-scrollbar-thumb {
    background: var(--glass-border);
    border-radius: 2px;
}

.filter-chip {
    padding: 10px 22px;
    background: var(--background-color);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-pill);
    font-size: 0.9rem;
    white-space: nowrap;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.filter-chip:hover,
.filter-chip.active {
    background-color: var(--primary-color);
    color: #FFFFFF;
    border-color: var(--primary-color);
}

.menu-items-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    min-height: 300px;
}

.menu-item-card {
    display: flex;
    gap: 24px;
    padding: 24px;
    align-items: center;
}

.menu-item-card:hover {
    transform: translateY(-4px);
    border-color: var(--secondary-color);
}

.menu-item-image {
    width: 110px;
    height: 110px;
    border-radius: var(--radius-standard);
    object-fit: cover;
    background-color: rgba(0,0,0,0.05);
}

.menu-item-details {
    flex: 1;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 8px;
    gap: 16px;
}

.menu-item-header h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
}

.menu-item-price {
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.15rem;
    white-space: nowrap;
}

body.dark-theme .menu-item-price {
    color: var(--secondary-color);
}

.menu-item-desc {
    font-size: 0.9rem;
    color: var(--text-color-muted);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ---------------------------------------------------------
   Gallery, Counter and Media Showcase Grid
--------------------------------------------------------- */
.gallery-filter-bar {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.gal-filter {
    background: transparent;
    border: 1px solid var(--glass-border);
    padding: 8px 20px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    border-radius: var(--radius-pill);
    cursor: pointer;
    color: var(--text-color-primary);
    transition: var(--transition-smooth);
}

.gal-filter.active,
.gal-filter:hover {
    background-color: var(--secondary-color);
    color: #222222;
    border-color: var(--secondary-color);
}

.gallery-layout-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-standard);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(34,34,34,0.04);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-overlay-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(139, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 1.8rem;
    opacity: 0;
    transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-overlay-hover {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Counter Metrics Layout */
.why-us-section {
    background: linear-gradient(135deg, var(--primary-color), #5A0000);
    color: #FFFFFF;
}

.counter-stats-layout {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.stat-counter-card .counter-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    display: inline-block;
}

.stat-counter-card .suffix {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.stat-counter-card p {
    font-size: 1rem;
    font-weight: 400;
    margin-top: 8px;
    color: rgba(255,255,255,0.85);
}

/* ---------------------------------------------------------
   Testimonials & Reviews Layout Matrix
--------------------------------------------------------- */
.testimonials-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.testimonial-card {
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
}

.rating-stars {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.review-text {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--text-color-muted);
    margin-bottom: 24px;
    flex: 1;
}

.user-meta h4 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.05rem;
}

.user-meta small {
    color: var(--secondary-color);
}

/* ---------------------------------------------------------
   Location split and Address Systems
--------------------------------------------------------- */
.location-split-view {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    background: var(--glass-bg);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.location-details-panel {
    padding: 100px 64px;
}

.location-details-panel h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 32px;
}

.loc-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 40px;
}

.loc-list li {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.loc-list i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 4px;
}

body.dark-theme .loc-list i {
    color: var(--secondary-color);
}

.loc-list strong {
    font-size: 1.1rem;
    display: block;
    margin-bottom: 4px;
}

.loc-list p {
    color: var(--text-color-muted);
}

.loc-action-row {
    display: flex;
    gap: 16px;
}

.map-placeholder-embed {
    background-color: #E5E3DF;
    width: 100%;
    min-height: 450px;
    position: relative;
}

/* Dynamic design system styling mimicking premium vector map */
.map-mockup-cover {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle, rgba(255,248,241,0.2) 0%, rgba(34,34,34,0.85) 100%), 
                url('https://images.unsplash.com/photo-1524661135-423995f22d0b?q=80&w=1000&auto=format&fit=crop');
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    padding: 24px;
    text-align: center;
}

.map-mock-icon {
    font-size: 3.5rem;
    color: var(--secondary-color);
    margin-bottom: 16px;
}

.accent-link {
    margin-top: 12px;
    color: var(--secondary-color);
    font-weight: 500;
    text-decoration: underline;
}

/* Contact Hub Strip */
.contact-matrix-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.contact-hub-card {
    padding: 32px;
    text-align: center;
}

.contact-hub-card i {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 16px;
}

body.dark-theme .contact-hub-card i {
    color: var(--secondary-color);
}

.contact-hub-card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.contact-hub-card p {
    color: var(--text-color-muted);
}

.contact-hub-card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-4px);
}

/* ---------------------------------------------------------
   Footer & Legal Architectures
--------------------------------------------------------- */
.main-footer-wrapper {
    background-color: #1a1a1a;
    color: #FFFFFF;
    border-top: 4px solid var(--secondary-color);
}

.footer-content-block {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 64px;
    padding-top: 60px;
    padding-bottom: 60px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--secondary-color);
    display: block;
    margin-bottom: 16px;
}

.footer-column-brand p {
    color: #cccccc;
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.footer-social-row {
    display: flex;
    gap: 16px;
}

.footer-social-row a {
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.footer-social-row a:hover {
    background-color: var(--secondary-color);
    color: #222222;
}

.footer-column-links h3,
.footer-column-hours h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 8px;
}

.footer-column-links h3::after,
.footer-column-hours h3::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; width: 40px; height: 2px;
    background-color: var(--secondary-color);
}

.footer-column-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column-links a {
    color: #cccccc;
}

.footer-column-links a:hover {
    color: var(--secondary-color);
    padding-left: 6px;
}

.footer-column-hours p {
    color: #cccccc;
    margin-bottom: 16px;
}

.service-note {
    font-size: 0.85rem;
    color: #888888 !important;
}

.footer-copyright-strip {
    background-color: #111111;
    padding: 24px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 0.85rem;
    color: #888888;
}

.strip-flex {
    display: flex;
    justify-content: space-between;
    padding: 0 24px;
}

/* ---------------------------------------------------------
   Global Modals & Floating Utility Architectures
--------------------------------------------------------- */
.lightbox-modal {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background-color: rgba(18,18,18,0.95);
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.lightbox-modal.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-close {
    position: absolute;
    top: 32px; right: 40px;
    background: transparent;
    border: none;
    color: #FFFFFF;
    font-size: 3rem;
    cursor: pointer;
}

.lightbox-content-box {
    max-width: 85%;
    max-height: 80%;
    transform: scale(0.9);
    transition: var(--transition-smooth);
}

.lightbox-modal.active .lightbox-content-box {
    transform: scale(1);
}

.lightbox-content-box img {
    border-radius: 8px;
    box-shadow: 0 24px 64px rgba(0,0,0,0.5);
}

/* Floating Utility System Buttons */
.floating-utilities-dock {
    position: fixed;
    bottom: 32px;
    right: 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 9999;
}

.float-utility-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 1.3rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    cursor: pointer;
    border: none;
    transform: translateY(100px);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.5s, background-color 0.3s;
}

.floating-utilities-dock.show-dock .float-utility-btn {
    transform: translateY(0);
    opacity: 1;
}

.call-float { background-color: #25D366; } /* Specialized Green Alert Contact Trigger Accent */
.insta-float { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.top-float { 
    background-color: var(--secondary-color); 
    color: #222222;
}

/* Intersection Reveal Utility Classes */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ---------------------------------------------------------
   Premium Responsive Breakpoint Adaptability Engines
--------------------------------------------------------- */
@media (max-width: 1024px) {
    .hero-title { font-size: 3rem; }
    .about-grid, .deal-content-layout, .location-split-view {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-image-showcase { max-width: 500px; margin: 40px auto 0 auto; }
    .features-grid, .gallery-layout-grid, .testimonials-cards-grid, .contact-matrix-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .counter-stats-layout { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .location-details-panel { padding: 48px 24px; }
    .footer-content-block { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    .mobile-toggle { display: flex; }
    .nav-menu {
        position: fixed;
        top: 0; right: -100%;
        width: 80%; max-width: 400px; height: 100vh;
        background-color: var(--background-color);
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        padding: 100px 40px;
        transition: var(--transition-smooth);
        z-index: 10001;
    }
    .nav-menu.active { right: 0; }
    .nav-list { flex-direction: column; gap: 24px; }
    .nav-link { color: var(--text-color-primary); font-size: 1.2rem; }
    .mobile-toggle.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .mobile-toggle.active .bar:nth-child(2) { opacity: 0; }
    .mobile-toggle.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
    .mobile-toggle.active .bar { background-color: var(--text-color-primary) !important; }
    
    .header-actions .cta-btn span { display: none; }
    .header-actions .cta-btn { padding: 10px; border-radius: 50%; }
    
    .menu-items-grid { grid-template-columns: 1fr; }
    .features-grid, .gallery-layout-grid, .testimonials-cards-grid, .contact-matrix-grid {
        grid-template-columns: 1fr;
    }
    .hero-title { font-size: 2.25rem; }
    .hero-buttons { flex-direction: column; width: 100%; max-width: 300px; margin: 0 auto; }
    .countdown-container { justify-content: center; }
}