/* --- Base Resets & Variables --- */
:root {
    --primary-color: #F69D26;   /* Golden Orange */
    --secondary-color: #DD2A27; /* Rich Red */
    --dark-color: #1a1a1a;
    --light-color: #ffffff;
    --gray-color: #f4f4f4;
    --text-muted: #e0e0e0;
    --font-main: 'Poppins', sans-serif;
    --transition-smooth: all 0.3s ease-in-out;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--gray-color);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* --- Header & Sticky Mechanics --- */
.main-header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* --- Topbar Styles --- */
.top-bar {
    background-color: var(--secondary-color);
    color: var(--light-color);
    font-size: 0.85rem;
    padding: 8px 0;
    font-weight: 400;
    border-bottom: 2px solid var(--primary-color);
}

.top-bar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.top-bar-info i {
    color: var(--primary-color);
    margin-right: 5px;
}

.top-bar-info a:hover {
    color: var(--primary-color);
    transition: var(--transition-smooth);
}

.top-bar-info .separator {
    color: rgba(255, 255, 255, 0.3);
}

.top-bar-socials {
    display: flex;
    gap: 15px;
}

.top-bar-socials a {
    color: var(--light-color);
    transition: var(--transition-smooth);
}

.top-bar-socials a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* --- Navbar Styles --- */
.navbar {
    background-color: var(--light-color);
    padding: 10px 0;
    transition: var(--transition-smooth);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* --- New Brand Layout (Logo Image + Column Text) --- */
.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-logo-img {
    height: 45px; /* Adjust height to match your logo aspect ratio */
    width: auto;
    object-fit: contain;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--secondary-color);
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.logo-title span {
    color: var(--primary-color);
}

.logo-subtitle {
    font-size: 0.75rem;
    color: var(--dark-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    opacity: 0.8;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--dark-color);
    padding: 8px 0;
    position: relative;
    transition: var(--transition-smooth);
}

.nav-link:hover, 
.nav-link.active {
    color: var(--secondary-color);
}

/* Animated bottom border on hover */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition-smooth);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
}

.btn-cta {
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 10px 22px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(246, 157, 38, 0.3);
    transition: var(--transition-smooth);
}

.btn-cta:hover {
    background-color: var(--secondary-color);
    box-shadow: 0 4px 15px rgba(221, 42, 39, 0.3);
    transform: translateY(-2px);
}

.mobile-cta {
    display: none;
}

/* --- Hamburger Mobile Icon --- */
.hamburger-menu {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    flex-direction: column;
    gap: 6px;
    padding: 5px;
}

.hamburger-menu .bar {
    width: 28px;
    height: 3px;
    background-color: var(--secondary-color);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

/* --- Responsive Media Queries --- */

/* Responsive Breakpoint Optimized for Tablets & Mobile Layouts */
@media (max-width: 992px) {
    .top-bar {
        display: none; /* Hide topbar completely on tablets and mobile for screen economy */
    }
    
    .main-header {
        position: fixed;
    }

    .hamburger-menu {
        display: flex;
        margin-left: 15px;
    }

    /* Transform menu into a clean drop-down drawer for both tabs and mobile screens */
    .nav-menu {
        position: absolute;
        top: 100%;
        left: -100%;
        width: 100%;
        height: calc(100vh - 65px);
        background-color: var(--light-color);
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 20px 40px;
        transition: 0.4s cubic-bezier(0.1, 1, 0.1, 1);
        box-shadow: 0 10px 15px rgba(0,0,0,0.05);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }

    .nav-link {
        display: block;
        padding: 15px 0;
        font-size: 1.1rem;
    }

    .nav-link::after {
        display: none; /* Turn off tracking underline */
    }

    /* Shift CTA elegantly inside the mobile menu layout */
    .nav-actions .btn-cta {
        display: none;
    }

    .mobile-cta {
        display: block;
        margin-top: 25px;
        border-bottom: none;
    }

    .mobile-cta .btn-cta {
        display: inline-block;
        width: 100%;
        text-align: center;
        padding: 14px;
    }

    /* Hamburger Animation States toggled via JS */
    .hamburger-menu.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
        background-color: var(--primary-color);
    }

    .hamburger-menu.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger-menu.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
        background-color: var(--primary-color);
    }
}

/* --- Slider Hero Layout Framework --- */
.slider-hero-section {
    position: relative;
    width: 100%;
    height: 85vh;
    min-height: 600px;
    margin-top: 116px; /* Offset to clear the fixed topbar + navbar header */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #000000;
}

/* --- Background Slider Engine --- */
.slider-background-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.2s ease-in-out, transform 2s ease-out;
    transform: scale(1.03); /* Subtle zoom effect for active slides */
}

.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.192);
    z-index: 2;
}

/* --- Pure CSS Slider Functionality --- */
#slide1:checked ~ .slider-background-container .slide-1,
#slide2:checked ~ .slider-background-container .slide-2,
#slide3:checked ~ .slider-background-container .slide-3 {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

/* --- Slider Navigation Dots --- */
.slider-nav-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

.dot-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot-btn:hover {
    background-color: #ffffff;
}

#slide1:checked ~ .slider-nav-dots .dot-btn:nth-child(1),
#slide2:checked ~ .slider-nav-dots .dot-btn:nth-child(2),
#slide3:checked ~ .slider-nav-dots .dot-btn:nth-child(3) {
    background-color: #F69D26; /* Matches Primary Accent */
    width: 28px;
    border-radius: 10px;
}

/* --- Content Overlay Layer (Modern Frosted Glass Shield) --- */
.hero-slider-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
    text-align: center;
    width: 100%;
    padding: 0 20px;
}

.hero-slider-content .container {
    max-width: 850px;
    margin: 0 auto;
    padding: 50px 40px;
    border-radius: 24px;
    
    /* Elegant semi-transparent backing */
    background: rgba(0, 0, 0, 0.329); 
    
    /* Modern blur effect: blurs the slider image ONLY directly behind the text box */
    backdrop-filter: blur(10px); 
    -webkit-backdrop-filter: blur(10px);
    
    /* Subtle border to give it a premium, polished look */
    border: 1px solid rgba(255, 255, 255, 0.15); 
    
    /* Deep shadow to separate the text card from the images */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.425); 
}

/* --- Typography & Elements --- */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #F69D26; /* Primary Accent */
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    box-shadow: 0 4px 10px rgba(246, 157, 38, 0.2);
}

.hero-badge i {
    font-size: 0.75rem;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.7;
    color: #f5f5f5;
    max-width: 800px;
    margin: 0 auto 35px auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.hero-subtitle strong {
    font-weight: 600;
    color: #F69D26;
}

/* --- Layout Buttons --- */
.hero-btn-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.btn-slider-hero {
    padding: 14px 35px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease-in-out;
}

.btn-slider-hero.btn-filled {
    background-color: #DD2A27; /* Secondary Accent */
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(221, 42, 39, 0.3);
}

.btn-slider-hero.btn-filled:hover {
    background-color: #F69D26;
    box-shadow: 0 4px 15px rgba(246, 157, 38, 0.4);
    transform: translateY(-2px);
}

.btn-slider-hero.btn-outline {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-slider-hero.btn-outline:hover {
    background-color: #ffffff;
    color: #DD2A27;
    transform: translateY(-2px);
}

/* --- Bottom Amenity Features --- */
.hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 25px;
    max-width: 700px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #e0e0e0;
}

.feature-item i {
    color: #F69D26;
    font-size: 1.1rem;
}

/* --- Responsive Adaptations --- */
@media (max-width: 992px) {
    .hero-title { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1.1rem; }
    .hero-features { gap: 25px; }
}

@media (max-width: 768px) {
    .slider-hero-section {
        margin-top: 70px; /* Adapts cleanly under the compressed mobile nav */
        height: auto;
        padding: 80px 0;
    }

    .hero-slider-content .container {
        padding: 30px 20px;
        margin: 0 15px;
        border-radius: 16px;
    }

    .hero-title {
        font-size: 1.85rem;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }

    .hero-btn-group {
        flex-direction: column;
        gap: 15px;
        max-width: 300px;
        margin: 0 auto 40px auto;
    }

    .btn-slider-hero {
        width: 100%;
        justify-content: center;
        padding: 12px 25px;
    }

    .hero-features {
        flex-direction: column;
        gap: 15px;
        align-items: center;
        border-top: none;
        background: rgba(255, 255, 255, 0.05);
        padding: 20px;
        border-radius: 12px;
        backdrop-filter: blur(5px);
    }
    
    .slider-nav-dots {
        bottom: 15px;
    }
}

/* --- About Section Root Framework --- */
.about-section {
    padding: 100px 0;
    background-color: #ffffff;
    overflow: hidden;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

/* --- Left Side Content Elements --- */
.about-subtitle {
    display: block;
    color: #DD2A27; /* Secondary Accent */
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
    margin-bottom: 25px;
}

.about-title span {
    color: #F69D26; /* Primary Accent */
}

.about-description {
    font-size: 1rem;
    color: #555555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-description strong {
    color: #1a1a1a;
    font-weight: 600;
}

/* --- Features Mini Grid Layout --- */
.about-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px 20px;
    margin: 35px 0 45px 0;
}

.about-feature-card {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.feature-icon-wrapper {
    background-color: rgba(246, 157, 38, 0.1);
    color: #F69D26;
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.about-feature-card:hover .feature-icon-wrapper {
    background-color: #DD2A27;
    color: #ffffff;
    transform: scale(1.05);
}

.feature-text h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 0.88rem;
    color: #666666;
    line-height: 1.5;
}

/* --- Action Block Setup --- */
.about-action-row {
    display: flex;
    align-items: center;
    gap: 35px;
    flex-wrap: wrap;
}

.btn-about-primary {
    background-color: #DD2A27;
    color: #ffffff;
    padding: 14px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 5px 15px rgba(221, 42, 39, 0.2);
    transition: all 0.3s ease-in-out;
}

.btn-about-primary:hover {
    background-color: #F69D26;
    box-shadow: 0 5px 15px rgba(246, 157, 38, 0.3);
    transform: translateY(-2px);
}

.about-contact-badge {
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-contact-badge i {
    font-size: 1.3rem;
    color: #F69D26;
    background: #fdf6ec;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-contact-badge div span {
    display: block;
    font-size: 0.8rem;
    color: #777777;
    text-transform: uppercase;
}

.about-contact-badge div a {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    transition: color 0.2s ease;
}

.about-contact-badge div a:hover {
    color: #DD2A27;
}

/* --- Right Side Visual Graphic Architecture --- */
.about-graphic-block {
    position: relative;
    padding-right: 40px;
    padding-bottom: 40px;
}

.graphic-frame {
    position: relative;
    width: 100%;
}

.main-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.floating-experience-badge {
    position: absolute;
    top: -25px;
    right: -15px;
    background-color: #F69D26;
    color: #ffffff;
    padding: 20px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(246, 157, 38, 0.3);
    z-index: 3;
}

.floating-experience-badge .badge-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.floating-experience-badge .badge-text {
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.secondary-img-wrapper {
    position: absolute;
    bottom: -35px;
    left: -35px;
    width: 240px;
    height: 180px;
    border: 8px solid #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    z-index: 2;
}

.sub-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- Responsive Layout Breakpoints --- */
@media (max-width: 992px) {
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-graphic-block {
        max-width: 600px;
        margin: 0 auto;
        padding-right: 20px;
        padding-bottom: 20px;
        width: 100%;
    }
    
    .main-img {
        height: 380px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }

    .about-title {
        font-size: 1.95rem;
    }

    .about-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .secondary-img-wrapper {
        display: none; /* Drop complex overlay images on mobile for fast loading & layout clean lines */
    }

    .floating-experience-badge {
        top: 15px;
        right: 15px;
        padding: 12px 15px;
        border-radius: 12px;
    }

    .floating-experience-badge .badge-number {
        font-size: 1.4rem;
    }

    .floating-experience-badge .badge-text {
        font-size: 0.7rem;
    }

    .about-action-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .btn-about-primary {
        width: 100%;
        text-align: center;
    }
}

/* --- Services Section Base Layout --- */
.services-section {
    padding: 100px 0;
    background-color: #fcfcfc; /* Extremely subtle off-white to contrast with white cards */
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Section Title Block Header --- */
.services-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 60px auto;
}

.services-subtitle {
    display: block;
    color: #DD2A27; /* Secondary Accent Red */
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.services-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
    margin-bottom: 20px;
}

.services-meta-text {
    font-size: 1rem;
    color: #666666;
    line-height: 1.6;
}

/* --- Block Row Categories Formatting --- */
.services-block-wrapper {
    margin-bottom: 60px;
}

.services-block-wrapper:last-child {
    margin-bottom: 0;
}

.block-category-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
    padding-bottom: 12px;
    border-bottom: 2px solid #eef0f2;
}

.block-category-title i {
    font-size: 1.4rem;
    color: #F69D26; /* Primary Accent Golden Orange */
}

.block-category-title h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 0.5px;
}

/* --- Grid Control Matrix --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

/* --- Individual Service Cards --- */
.service-card {
    background-color: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border-color: rgba(246, 157, 38, 0.2);
}

.service-image-box {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.service-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image-box img {
    transform: scale(1.06);
}

/* --- Card Typography Content --- */
.service-card-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
    transition: color 0.2s ease;
}

.service-card:hover .card-title {
    color: #DD2A27;
}

.card-desc {
    font-size: 0.92rem;
    color: #555555;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* --- Search Engine Location/Keyword Metadata Labels --- */
.card-keyword-tag {
    display: inline-block;
    align-self: flex-start;
    background-color: #fdf6ec;
    color: #F69D26;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(246, 157, 38, 0.15);
}

/* --- Responsive Layout Configurations --- */
@media (max-width: 992px) {
    .services-title {
        font-size: 2.1rem;
    }
    
    .services-grid {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 60px 0;
    }

    .services-title {
        font-size: 1.8rem;
    }

    .services-header {
        margin-bottom: 40px;
    }

    .block-category-title {
        margin-bottom: 20px;
    }

    .block-category-title h3 {
        font-size: 1.25rem;
    }

    .services-grid {
        grid-template-columns: 1fr; /* Switch to clear stacking layout on mobile screens */
        gap: 25px;
    }

    .service-image-box {
        height: 200px; /* Compress height slightly on handheld layouts to optimize screen footprint */
    }
    
    .service-card-body {
        padding: 20px;
    }
}

/* --- Menu Section Frame --- */
.menu-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.menu-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.menu-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.menu-subtitle {
    display: block;
    color: #DD2A27;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.menu-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
    margin-bottom: 20px;
}

.menu-title span {
    color: #F69D26;
}

.menu-meta-text {
    font-size: 1rem;
    color: #666666;
    line-height: 1.6;
}

/* --- Navigation Selector Tabs --- */
.menu-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 35px;
}

.tab-btn {
    background-color: #f7f7f7;
    border: 1px solid #e1e1e1;
    color: #444444;
    padding: 10px 22px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.tab-btn:hover, 
.tab-btn.active {
    background-color: #DD2A27;
    color: #ffffff;
    border-color: #DD2A27;
    box-shadow: 0 4px 12px rgba(221, 42, 39, 0.2);
}

/* --- Main Central Display Screen Engine --- */
.menu-display-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    position: relative;
    max-width: 750px;
    margin: 0 auto;
}

.menu-image-frame {
    background-color: #1a1a1a;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    border: 6px solid #1a1a1a;
    position: relative;
    cursor: zoom-in;
    aspect-ratio: 1 / 1.385; /* Standard elegant A4 paper proportion mapping */
    width: 100%;
}

.menu-page-img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Prevents text elements from stretching or warping layout */
    background-color: #fff;
    display: none;
    animation: fadeEffect 0.4s ease-in-out;
}

.menu-page-img.active {
    display: block;
}

@keyframes fadeEffect {
    from { opacity: 0; transform: scale(0.98); }
    to { opacity: 1; transform: scale(1); }
}

/* Interactivity Zoom Guide Box overlay */
.zoom-hint {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 20px;
    pointer-events: none;
    z-index: 5;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Navigational Arrows */
.menu-arrow {
    background-color: #F69D26;
    color: #ffffff;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.2s ease;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(246, 157, 38, 0.3);
}

.menu-arrow:hover {
    background-color: #DD2A27;
    transform: scale(1.05);
}

/* --- Counter Bar Controls --- */
.menu-control-bar {
    max-width: 750px;
    margin: 25px auto 30px auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px dashed #e1e1e1;
    padding-bottom: 20px;
}

.page-indicator {
    font-weight: 600;
    color: #444444;
    font-size: 0.95rem;
    background: #f4f4f4;
    padding: 6px 16px;
    border-radius: 6px;
}

.menu-actions {
    display: flex;
    gap: 12px;
}

.btn-menu-action {
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    padding: 10px 18px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.btn-menu-action:hover {
    background-color: #F69D26;
}

.btn-menu-action.download-btn {
    background-color: transparent;
    color: #DD2A27;
    border: 2px solid #DD2A27;
}

.btn-menu-action.download-btn:hover {
    background-color: #DD2A27;
    color: #ffffff;
}

/* --- Thumbnail Strip Layout --- */
.menu-thumbnails-strip {
    display: flex;
    justify-content: center;
    gap: 10px;
    max-width: 750px;
    margin: 0 auto;
    overflow-x: auto;
    padding: 5px 5px 10px 5px;
}

.thumb-item {
    background: #f4f4f4;
    border: 2px solid #e1e1e1;
    min-width: 60px;
    height: 40px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.75rem;
    font-weight: 600;
    color: #666666;
    transition: all 0.2s ease;
}

.thumb-item.active {
    border-color: #F69D26;
    background: #fdf6ec;
    color: #F69D26;
}

/* --- Fullscreen Lightbox Modal Layer Engine --- */
.menu-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #ffffff;
    font-size: 2.5rem;
    cursor: pointer;
    transition: color 0.2s ease;
}

.lightbox-close:hover { color: #F69D26; }

.lightbox-content-box {
    max-width: 90%;
    max-height: 85vh;
}

#lightbox-img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
}

.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.lightbox-arrow:hover { background: #F69D26; }
.l-prev { left: 30px; }
.l-next { right: 30px; }

.lightbox-caption {
    position: absolute;
    bottom: 20px;
    color: #cccccc;
    font-size: 0.95rem;
    text-align: center;
    width: 100%;
    letter-spacing: 0.5px;
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .menu-title { font-size: 2.1rem; }
}

@media (max-width: 768px) {
    .menu-section { padding: 60px 0; }
    .menu-title { font-size: 1.8rem; }
    
    /* Remove side arrows on mobile viewports to give the image maximum room */
    .prev-menu-page, .next-menu-page { display: none; }
    .menu-display-container { padding: 0; }
    
    .menu-control-bar {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .menu-actions {
        width: 100%;
        flex-direction: column;
    }
    
    .btn-menu-action {
        width: 100%;
        justify-content: center;
    }

    .lightbox-arrow { display: none; } /* Use swipe/touch navigation or basic touch clicks in lightbox modal */
    .menu-lightbox { padding: 15px; }
}

/* --- Why Choose Us Root Layout --- */
.why-choose-us-section {
    padding: 100px 0;
    background-color: #fcfcfc; /* Alternating page grid tone background */
}

.why-us-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Section Header Custom Styling --- */
.why-us-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 60px auto;
}

.why-us-subtitle {
    display: block;
    color: #DD2A27; /* Secondary Brand Color */
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.why-us-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
    margin-bottom: 20px;
}

.why-us-title span {
    color: #F69D26; /* Primary Brand Color */
}

.why-us-meta-text {
    font-size: 1rem;
    color: #666666;
    line-height: 1.6;
}

/* --- Interactive Core Grid Infrastructure --- */
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-bottom: 70px;
}

.why-us-card {
    background-color: #ffffff;
    padding: 40px 30px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    position: relative;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Accent highlight top borders on interactive hover tracking */
.why-us-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #F69D26;
    border-radius: 16px 16px 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.why-us-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border-color: rgba(246, 157, 38, 0.15);
}

.why-us-card:hover::before {
    opacity: 1;
}

/* --- Card Interior Architecture --- */
.card-icon-box {
    background-color: #fdf6ec; /* Tinted orange canvas background */
    color: #F69D26;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.why-us-card:hover .card-icon-box {
    background-color: #DD2A27;
    color: #ffffff;
    transform: rotateY(180deg); /* Playful luxury flipping indicator anchor */
}

.why-us-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.why-us-card p {
    font-size: 0.92rem;
    color: #555555;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

/* Search Crawler Indexing Anchor tags labels styling */
.seo-inline-tag {
    font-size: 0.75rem;
    font-weight: 600;
    color: #999999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-top: 1px dashed #e1e1e1;
    padding-top: 12px;
    margin-top: auto;
    display: block;
}

/* --- Inline Trust Stats Summary Panel --- */
.trust-stats-bar {
    background: #1a1a1a;
    border-radius: 16px;
    padding: 35px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 160px;
}

.stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    color: #F69D26;
    margin-bottom: 5px;
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: #cccccc;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.15);
}

/* --- Responsive Optimization Breakpoints --- */
@media (max-width: 992px) {
    .why-us-title { font-size: 2.1rem; }
    .stat-divider { display: none; } /* Drop hard layout lines on structural wrapped viewports */
    .trust-stats-bar { padding: 30px 15px; }
}

@media (max-width: 768px) {
    .why-choose-us-section { padding: 60px 0; }
    .why-us-title { font-size: 1.8rem; }
    .why-us-header { margin-bottom: 40px; }
    
    .why-us-grid { 
        grid-template-columns: 1fr; /* Absolute stacked reading vertical flow lines for phones */
        gap: 25px;
        margin-bottom: 40px;
    }
    
    .why-us-card { padding: 30px 20px; }
    
    .trust-stats-bar {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
    
    .stat-item { width: 100%; }
    .stat-number { font-size: 1.85rem; }
}

/* --- Testimonials Section Frame --- */
.testimonials-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Section Header Layout --- */
.testimonials-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 55px auto;
}

.testimonials-subtitle {
    display: block;
    color: #DD2A27; /* Secondary Accent Red */
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.testimonials-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
    margin-bottom: 20px;
}

.testimonials-title span {
    color: #F69D26;
}

.testimonials-meta-text {
    font-size: 1rem;
    color: #666666;
    line-height: 1.6;
}

/* --- Responsive Reviews Grid --- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

/* --- Premium Testimonial Cards --- */
.testimonial-card {
    background-color: #fdfdfd;
    border: 1px solid #eef0f2;
    padding: 35px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    border-color: rgba(246, 157, 38, 0.25);
    background-color: #ffffff;
}

/* --- Card Interior Elements --- */
.card-top-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 22px;
    gap: 15px;
}

.reviewer-profile {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviewer-profile img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #F69D26; /* Primary Accent Accent Frame */
}

.reviewer-info h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2px;
}

.reviewer-info span {
    font-size: 0.82rem;
    color: #777777;
    display: block;
}

.review-stars {
    color: #F69D26; /* Golden Star Colors */
    font-size: 0.88rem;
    display: flex;
    gap: 2px;
}

.review-text {
    font-size: 0.95rem;
    color: #444444;
    line-height: 1.65;
    font-style: italic;
    margin-bottom: 25px;
    flex-grow: 1;
}

.review-text strong {
    font-style: normal;
    font-weight: 600;
    color: #1a1a1a;
}

/* Card Metadata Tag */
.card-footer-tag {
    font-size: 0.75rem;
    color: #999999;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.card-footer-tag::before {
    content: '✓';
    color: #28a745; /* Green checkmark for trusted verified markers */
    font-weight: 900;
}

/* --- Google Local Business Review Bar --- */
.google-review-cta {
    background-color: #fdf6ec; /* Tinted layout bar base color */
    border: 1px dashed rgba(246, 157, 38, 0.4);
    border-radius: 12px;
    padding: 25px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.google-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.05rem;
    color: #333333;
}

.google-brand i {
    font-size: 1.6rem;
    color: #4285F4; /* Classic Google Brand Blue Identity */
}

.google-brand strong {
    color: #F69D26;
}

.btn-review-google {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 12px 28px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s ease-in-out;
}

.btn-review-google:hover {
    background-color: #DD2A27; /* Shifts cleanly to signature red on interaction updates */
    box-shadow: 0 4px 12px rgba(221, 42, 39, 0.25);
    transform: translateY(-2px);
}

/* --- Responsive Adaptations --- */
@media (max-width: 992px) {
    .testimonials-title { font-size: 2.1rem; }
}

@media (max-width: 768px) {
    .testimonials-section { padding: 60px 0; }
    .testimonials-title { font-size: 1.8rem; }
    .testimonials-header { margin-bottom: 40px; }
    
    .testimonials-grid { 
        grid-template-columns: 1fr; /* Force absolute single-column reader stacks on mobile */
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .testimonial-card { padding: 25px 20px; }
    
    .google-review-cta {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }
    
    .google-brand {
        flex-direction: column;
        gap: 8px;
        font-size: 0.95rem;
    }
    
    .btn-review-google {
        width: 100%;
        justify-content: center;
    }
}

/* --- Poster Slider Section Root --- */
.poster-slider-section {
    padding: 80px 0;
    background-color: #f9f9f9; /* Subtle off-white background */
    overflow: hidden; /* Important for slider track functionality */
}

.poster-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Section Header Styling --- */
.poster-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.poster-subtitle {
    display: block;
    color: #DD2A27; /* Secondary Brand Color */
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.poster-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
    margin-bottom: 20px;
}

.poster-title span {
    color: #F69D26; /* Primary Brand Color */
}

.poster-meta-text {
    font-size: 1rem;
    color: #666666;
    line-height: 1.6;
}

/* --- Slider Core Logic & Aspect Ratio --- */
.slider-wrapper {
    position: relative;
    /* Center a max width container for the large vertical images */
    max-width: 600px; /* Limits desktop height to remain usable */
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    
    /* Strict Aspect Ratio Lock (4:5 / 1080x1350) */
    aspect-ratio: 1080 / 1350; 
}

.slider-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1); /* Smooth movement */
}

.poster-slide {
    flex: 0 0 100%; /* Important for sliding math */
    width: 100%;
    height: 100%;
}

.poster-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures poster fills area without distortion */
    display: block;
}

/* --- Slider Navigation Buttons --- */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    color: #1a1a1a;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.slider-btn:hover {
    background-color: #F69D26; /* Primary Accent */
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(246, 157, 38, 0.4);
}

.prev-btn { left: 20px; }
.next-btn { right: 20px; }

/* --- Pagination Dots --- */
.slider-pagination {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #d1d1d1;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.dot.active {
    background-color: #DD2A27; /* Secondary Accent */
    width: 28px;
    border-radius: 10px;
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .poster-title { font-size: 2.1rem; }
}

@media (max-width: 768px) {
    .poster-slider-section { padding: 60px 0; }
    .poster-title { font-size: 1.8rem; }
    
    /* Scale down the entire container on mobile but keep aspect ratio */
    .slider-wrapper {
        max-width: 90%; 
        aspect-ratio: 1080 / 1350; 
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .prev-btn { left: 10px; }
    .next-btn { right: 10px; }
}

/* --- Contact Section Container --- */
.contact-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Section Header Layout --- */
.contact-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 60px auto;
}

.contact-subtitle {
    display: block;
    color: #DD2A27; /* Secondary Brand Crimson Accent */
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
    margin-bottom: 20px;
}

.contact-title span {
    color: #F69D26; /* Primary Brand Orange Accent */
}

.contact-meta-text {
    font-size: 1rem;
    color: #666666;
    line-height: 1.6;
}

/* --- Twin Column Grid System --- */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: flex-start;
}

/* --- Left Side Information Components --- */
.contact-info-column {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-detail-card {
    background-color: #fdfdfd;
    border: 1px solid #eef0f2;
    padding: 25px;
    border-radius: 14px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-detail-card:hover {
    border-color: rgba(246, 157, 38, 0.25);
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.contact-icon-box {
    background-color: #fdf6ec; /* Tinted layout token */
    color: #F69D26;
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-text-box h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.contact-text-box p {
    font-size: 0.92rem;
    color: #555555;
    line-height: 1.6;
}

.contact-link-highlight {
    display: inline-block;
    font-size: 1.3rem;
    font-weight: 800;
    color: #DD2A27;
    margin-top: 8px;
    transition: color 0.2s ease;
}

.contact-link-highlight:hover {
    color: #F69D26;
}

/* Internal Hours Table Elements */
.hours-table {
    width: 100%;
    margin-bottom: 6px;
}

.hours-table td {
    font-size: 0.92rem;
    color: #333333;
    padding: 2px 0;
}

.hours-note {
    font-style: italic;
    font-size: 0.85rem !important;
    color: #888888 !important;
}

/* Search engine local tags layout styling */
.seo-tag-inline {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    color: #bbbbbb;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 10px;
}

/* Call Conversion Options Row */
.contact-action-row {
    margin-top: 10px;
}

.btn-whatsapp {
    background-color: #25D366; /* Official Conversion WhatsApp green label identification code */
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
    transition: all 0.2s ease-in-out;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(18, 140, 126, 0.3);
}

/* --- Right Side Active Maps Components --- */
.contact-map-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}

.map-frame-wrapper {
    width: 100%;
    height: 380px;
    background-color: #e5e3df;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #eef0f2;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.map-overlay-tip {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: rgba(26, 26, 26, 0.9);
    color: #ffffff;
    padding: 6px 14px;
    font-size: 0.78rem;
    font-weight: 600;
    border-radius: 20px;
    letter-spacing: 0.5px;
    z-index: 5;
    pointer-events: none;
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-open-maps {
    background-color: #1a1a1a;
    color: #ffffff;
    text-align: center;
    padding: 14px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background-color 0.2s ease;
}

.btn-open-maps:hover {
    background-color: #F69D26;
}

/* --- Responsive Layout Parameters --- */
@media (max-width: 992px) {
    .contact-title { font-size: 2.1rem; }
    .contact-wrapper { gap: 30px; }
    .map-frame-wrapper { height: 320px; }
}

@media (max-width: 768px) {
    .contact-section { padding: 60px 0; }
    .contact-title { font-size: 1.8rem; }
    .contact-header { margin-bottom: 40px; }
    
    .contact-wrapper {
        grid-template-columns: 1fr; /* Force layout stack on portable screens */
        gap: 40px;
    }
    
    .contact-detail-card { padding: 20px; }
    .contact-link-highlight { font-size: 1.15rem; }
    
    .btn-whatsapp, .btn-open-maps {
        width: 100%;
        justify-content: center;
    }
    
    .map-frame-wrapper { height: 280px; }
}

/* --- Site Footer Root Framework --- */
.site-footer {
    background-color: #1a1a1a; /* Dark premium brand alignment tone */
    color: #ffffff;
    padding: 60px 0 20px 0;
    font-family: inherit;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 40px;
    align-items: flex-start;
}

/* --- Column 1: Brand & Summary Styling --- */
.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #F69D26; /* Primary Accent Golden Orange */
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.footer-description {
    font-size: 0.9rem;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-description strong {
    color: #ffffff;
    font-weight: 500;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    background-color: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    transition: all 0.2s ease-in-out;
}

.footer-socials a:hover {
    background-color: #DD2A27; /* Secondary Accent Red on hover tracking */
    transform: translateY(-2px);
}

/* --- Column Header Elements --- */
.footer-column h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
}

/* Small accent underline indicator under category headers */
.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background-color: #F69D26;
}

/* --- Column 2: Navigation Links List --- */
.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list li {
    margin-bottom: 10px;
}

.footer-links-list a {
    color: #bbbbbb;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.2s ease, padding-left 0.2s ease;
    display: inline-block;
}

.footer-links-list a:hover {
    color: #F69D26;
    padding-left: 4px; /* Subtle responsive layout slide nudge */
}

/* --- Column 3: Local SEO Semantic Tags --- */
.footer-tags-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.seo-tag {
    font-size: 0.88rem;
    color: #bbbbbb;
    display: block;
}

.seo-tag::before {
    content: '•';
    color: #DD2A27; /* Precise brand red point dots */
    display: inline-block;
    width: 12px;
    font-weight: bold;
}

/* --- Separator Lines & Bottom Row Setup --- */
.footer-divider {
    border: 0;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.08);
    margin: 40px 0 20px 0;
}

.footer-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.copyright-text {
    font-size: 0.82rem;
    color: #999999;
}

.copyright-text strong {
    color: #F69D26;
}

.design-credit {
    font-size: 0.82rem;
    color: #888888;
}

/* --- Responsive Formatting Logic Breakpoints --- */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr; /* Switch to 2 columns on tablets */
        gap: 30px;
    }
    
    .brand-info {
        grid-column: span 2; /* Force brand text to span full width on medium monitors */
        margin-bottom: 10px;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 40px 0 20px 0;
    }

    .footer-grid {
        grid-template-columns: 1fr; /* Single column vertical reading stack on mobile */
        gap: 25px;
    }

    .brand-info {
        grid-column: span 1;
    }

    .footer-column h4 {
        margin-bottom: 15px;
    }

    .footer-divider {
        margin: 30px 0 20px 0;
    }

    .footer-bottom-row {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
}


/* --- Breadcrumb Header Section --- */
/* --- Base Layout & Large Desktop Devices --- */
.breadcrumb-section {
    background-color: #fdfcf9; /* Soft warm ivory background tint */
    padding: 60px 20px;       /* Added side padding to protect content on small viewports */
    border-bottom: 1px solid #f2eee9;
    text-align: center;
    
    /* Matches the 116px desktop navbar offset from your hero section */
    margin-top: 116px; 
}

/* --- Responsive Layout Rules --- */

/* Laptops & Tablets (1024px and down) */
@media (max-width: 1024px) {
    .breadcrumb-section {
        padding: 50px 20px;
        /* Keeps things balanced if your header is still full size here */
        margin-top: 116px; 
    }
}

/* Tablets / iPads (768px and down) */
@media (max-width: 768px) {
    .breadcrumb-section {
        padding: 40px 15px;
        /* Matches your mobile compressed header offset (70px) from your hero code */
        margin-top: 70px; 
    }
}

/* Small Mobile Screens (480px and down) */
@media (max-width: 480px) {
    .breadcrumb-section {
        padding: 35px 15px;
        margin-top: 70px; /* Maintains clean alignment under mobile nav */
    }
}

.breadcrumb-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Breadcrumb Navigation Styling --- */
.breadcrumb-nav {
    margin-bottom: 15px;
    display: inline-block;
}

.breadcrumb-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.breadcrumb-item {
    font-size: 0.9rem;
    font-weight: 500;
    color: #666666; /* Muted color for current/inactive text */
}

.breadcrumb-link {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.breadcrumb-link i {
    font-size: 0.85rem;
    color: #F69D26; /* Brand Orange for home icon */
}

.breadcrumb-link:hover {
    color: #DD2A27; /* Brand Red accent on hover */
}

/* Breadcrumb Chevron Divider */
.breadcrumb-item.separator {
    color: #cccccc;
    font-size: 0.75rem;
}

.breadcrumb-item.active {
    color: #666666;
    font-weight: 400;
}

/* --- Page Title & Subtitle --- */
.page-title {
    font-size: 2.6rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.page-title span {
    color: #F69D26; /* Primary Accent Orange */
}

.page-subtitle {
    font-size: 1.05rem;
    color: #555555;
    font-weight: 500;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.4;
}

/* --- Responsive Settings --- */
@media (max-width: 768px) {
    .breadcrumb-section {
        padding: 40px 0;
    }

    .page-title {
        font-size: 2rem;
    }

    .page-subtitle {
        font-size: 0.95rem;
        padding: 0 10px;
    }

    .breadcrumb-item {
        font-size: 0.85rem;
    }
}

/* --- Vision, Mission & Values Roots --- */
.values-section {
    padding: 100px 0;
    background-color: #faf9f6; /* Subtle warm cream contrast to white sections */
}

.values-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Section Title Header Layout --- */
.values-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.values-subtitle {
    display: block;
    color: #DD2A27; /* Secondary Brand Accent Red */
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.values-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.3;
    margin-bottom: 20px;
}

.values-title span {
    color: #F69D26; /* Primary Brand Accent Orange */
}

.values-meta-text {
    font-size: 1rem;
    color: #666666;
    line-height: 1.6;
}

/* --- Vision & Mission Twin Grid --- */
.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.value-card {
    background-color: #ffffff;
    border: 1px solid #eef0f2;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(246, 157, 38, 0.06);
}

.value-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 25px;
}

/* Color variations for Vision vs Mission icons */
.vision-card .value-icon-wrapper {
    background-color: #fdf6ec;
    color: #F69D26;
}

.mission-card .value-icon-wrapper {
    background-color: #fcebeb;
    color: #DD2A27;
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.value-card p {
    font-size: 0.98rem;
    color: #555555;
    line-height: 1.7;
}

/* Muted contextual SEO tag footprint */
.seo-hidden-tag {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    color: #dddddd;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 20px;
}

/* --- Core Pillars Base Layout --- */
.pillars-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    border-top: 1px solid #eef0f2;
    padding-top: 50px;
}

.pillar-item {
    position: relative;
    padding-left: 20px;
}

.pillar-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(246, 157, 38, 0.15); /* Soft background mask overlay color styling */
    position: absolute;
    top: -20px;
    left: 0;
    line-height: 1;
    z-index: 1;
}

.pillar-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.pillar-item p {
    font-size: 0.9rem;
    color: #666666;
    line-height: 1.5;
}

/* --- Responsive Layout Rules --- */
@media (max-width: 992px) {
    .values-grid {
        grid-template-columns: 1fr; /* Stack vision/mission cards on mid-size tablet displays */
        gap: 30px;
    }
    
    .pillars-row {
        grid-template-columns: 1fr; /* Stack individual value points on mid-sized mobile screens */
        gap: 40px;
    }
    
    .pillar-item {
        padding-left: 0;
    }
}

@media (max-width: 576px) {
    .values-section {
        padding: 60px 0;
    }

    .values-title {
        font-size: 1.8rem;
    }

    .value-card {
        padding: 30px 20px;
    }
}


/* --- Gallery Section Styling --- */
.gallery-section {
    padding: 90px 0;
    background-color: #ffffff;
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Section Header Setup --- */
.gallery-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 55px auto;
}

.gallery-subtitle {
    display: block;
    color: #DD2A27; /* Accent red */
    font-size: 0.88rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.gallery-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.3;
    margin-bottom: 18px;
}

.gallery-title span {
    color: #F69D26; /* Warm highlight orange */
}

.gallery-meta-text {
    font-size: 0.98rem;
    color: #666666;
    line-height: 1.6;
}

/* --- Grid Construction with Hover Animations --- */
.gallery-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2x2 grid framework by default */
    gap: 25px;
    margin-bottom: 60px;
}

.gallery-card-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.04);
}

.gallery-image-box {
    position: relative;
    width: 100%;
    height: 320px; /* Uniform height constraint */
    overflow: hidden;
}

.gallery-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Prevents image warping */
    transition: transform 0.5s ease;
}

/* --- Interactive Dark Overlay System --- */
.gallery-overlay-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 70%, rgba(0,0,0,0) 100%);
    color: #ffffff;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: all 0.3s ease;
}

.gallery-overlay-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: #ffffff;
}

.gallery-overlay-content p {
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
    color: #e0e0e0;
    opacity: 0.9;
}

/* --- Hover Reactions for Modern Web Viewports --- */
.gallery-card-item:hover .gallery-image-box img {
    transform: scale(1.06); /* Smooth zoom effect on interaction */
}

/* --- Trust Metrics Panel --- */
.gallery-trust-footer {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #faf9f5;
    border: 1px solid #f1f0eb;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
}

.trust-metric {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.metric-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: #F69D26;
}

.metric-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #555555;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* --- Responsiveness Breakpoints --- */
@media (max-width: 768px) {
    .gallery-grid-wrapper {
        grid-template-columns: 1fr; /* Switch to a clean vertical scroll timeline on phones */
        gap: 20px;
    }
    
    .gallery-image-box {
        height: 260px; /* Reduced box frame for compact screen structures */
    }
    
    .gallery-title {
        font-size: 1.8rem;
    }
    
    .gallery-trust-footer {
        flex-direction: column;
        gap: 25px;
        padding: 25px;
    }
}

/* --- Root Layout Wrapper --- */
.geo-contact-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.geo-contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Typographical Header Area --- */
.geo-contact-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 60px auto;
}

.geo-subtitle {
    display: block;
    color: #DD2A27; /* Secondary Accent Red */
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.geo-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.3;
    margin-bottom: 20px;
}

.geo-title span {
    color: #F69D26; /* Primary Accent Orange */
}

.geo-meta-text {
    font-size: 1rem;
    color: #666666;
    line-height: 1.6;
}

/* --- Dual-Column Adaptive Grid System --- */
.geo-contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr; /* Map gets slight visual bias priority */
    gap: 50px;
    align-items: stretch;
}

/* --- Left Column: Google Map Mechanics --- */
.geo-map-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.google-map-wrapper {
    width: 100%;
    height: 420px; /* Expansive, easy-to-tap map zone */
    background-color: #e5e3df;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #eef0f2;
    position: relative;
    box-shadow: 0 12px 35px rgba(0,0,0,0.04);
}

.map-navigation-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: rgba(26, 26, 26, 0.9);
    color: #ffffff;
    padding: 8px 16px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 30px;
    letter-spacing: 0.5px;
    z-index: 5;
    pointer-events: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-native-maps {
    background-color: #1a1a1a;
    color: #ffffff;
    text-align: center;
    padding: 15px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background-color 0.2s ease;
}

.btn-native-maps:hover {
    background-color: #F69D26;
}

/* --- Right Column: Structured Contact Details --- */
.geo-info-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: center;
}

.geo-detail-card {
    background-color: #fdfdfd;
    border: 1px solid #eef0f2;
    padding: 24px;
    border-radius: 16px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.geo-icon-circle {
    background-color: #fdf6ec;
    color: #F69D26;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.geo-card-content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 6px;
}

.geo-card-content p {
    font-size: 0.92rem;
    color: #555555;
    line-height: 1.6;
    margin: 0;
}

.geo-phone-link {
    display: inline-block;
    font-size: 1.3rem;
    font-weight: 800;
    color: #DD2A27;
    text-decoration: none;
    margin-top: 6px;
    transition: color 0.2s ease;
}

.geo-phone-link:hover {
    color: #F69D26;
}

.geo-hours-row {
    margin-bottom: 4px;
}

.geo-hours-caption {
    font-style: italic;
    color: #888888 !important;
    font-size: 0.85rem !important;
}

.geo-seo-tag {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    color: #cccccc;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 10px;
}

/* --- WhatsApp Conversion Styling --- */
.geo-action-buttons {
    margin-top: 6px;
}

.geo-btn-whatsapp {
    background-color: #25D366;
    color: #ffffff;
    padding: 14px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
    transition: all 0.2s ease;
}

.geo-btn-whatsapp:hover {
    background-color: #128C7E;
    transform: translateY(-1px);
}

/* --- Responsive Layout Parameters --- */
@media (max-width: 992px) {
    .geo-contact-grid {
        grid-template-columns: 1fr; /* Stack layout seamlessly on tablets */
        gap: 40px;
    }
    
    .google-map-wrapper {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .geo-contact-section {
        padding: 60px 0;
    }

    .geo-title {
        font-size: 1.8rem;
    }

    .geo-detail-card {
        padding: 20px;
        flex-direction: column;
        gap: 12px;
    }

    .google-map-wrapper {
        height: 280px;
    }

    .btn-native-maps, .geo-btn-whatsapp {
        width: 100%;
        justify-content: center;
        box-sizing: border-box;
    }
}

/* Bento Panel Container Fixed to Right */
        .bento-social-panel {
            position: fixed;
            right: 24px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 9999;
            
            /* Glassmorphism Panel Shell */
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            padding: 16px;
            border-radius: 24px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
            
            /* Bento Grid Layout Structure */
            display: grid;
            grid-template-columns: repeat(2, 65px);
            grid-template-rows: repeat(3, 65px);
            gap: 12px;
            width: auto;
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
        }

        /* Core Bento Grid Card Item */
        .bento-item {
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* SVG Icon Settings Inside Bento */
        .bento-item svg {
            width: 24px;
            height: 24px;
            fill: #ffffff;
            z-index: 2;
            transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        /* Clean Minimal Label Inside Bento */
        .bento-item span {
            color: #ffffff;
            font-size: 11px;
            font-weight: 600;
            margin-top: 6px;
            letter-spacing: 0.3px;
            z-index: 2;
            opacity: 0.85;
            transition: opacity 0.3s ease, transform 0.3s ease;
        }

        /* --- Bento Grid Asymmetric Layout Spans --- */
        
        /* WhatsApp: standard square block */
        .bento-item.whatsapp {
            grid-column: 1 / 2;
            grid-row: 1 / 2;
            background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
        }

        /* Instagram: feature block spanning two rows tall */
        .bento-item.instagram {
            grid-column: 2 / 3;
            grid-row: 1 / 3;
            background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
        }

        /* Facebook: standard square block */
        .bento-item.facebook {
            grid-column: 1 / 2;
            grid-row: 2 / 3;
            background: linear-gradient(135deg, #1877F2 0%, #0A53BE 100%);
        }

        /* YouTube: feature block spanning full width across the bottom row */
        .bento-item.youtube {
            grid-column: 1 / 3;
            grid-row: 3 / 4;
            flex-direction: row;
            gap: 8px;
            background: linear-gradient(135deg, #FF0000 0%, #B30000 100%);
        }
        .bento-item.youtube span {
            margin-top: 0;
            font-size: 13px;
        }

        /* --- Hover Micro-animations --- */
        .bento-item::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(255,255,255,0.15), rgba(255,255,255,0));
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 1;
        }

        .bento-item:hover {
            transform: translateY(-4px) scale(1.03);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
            border-color: rgba(255, 255, 255, 0.3);
        }

        .bento-item:hover::before {
            opacity: 1;
        }

        .bento-item:hover svg {
            transform: scale(1.15);
        }

        .bento-item:hover span {
            opacity: 1;
            transform: scale(1.02);
        }

        /* --- Responsive Viewport Block (Hidden on Mobile) --- */
        @media (max-width: 768px) {
            .bento-social-panel {
                display: none !important;
            }
        }

        .mf-social-side-list {
    position: fixed;
    top: 40vh;
    right: 10px;
    z-index: 100;
}

.mf-social-side-list ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
}

/* BUTTON BASE DESIGN */
.mf-social-side-list ul li a {
    color: #ffffff;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    line-height: 45px;
    margin-top: 8px;
    text-align: center;
    text-decoration: none;
    font-size: 18px;

    /* 3D Elevation */
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.25);

    /* Smooth animation */
    transition: all 0.35s ease;
    display: flex;
    align-items: center;
    justify-content: center;

    /* Floating animation */
    animation: floatBtn 3s ease-in-out infinite;
}

/* FLOAT ANIMATION */
@keyframes floatBtn {
    0% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
    100% { transform: translateY(0); }
}

/* HOVER EFFECT - Glow + Bounce */
.mf-social-side-list ul li a:hover {
    transform: translateY(-8px) scale(1.15);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.45);
    filter: brightness(1.15);
}

/* COLOR STYLES */
.mf-social-side-list ul li a[href*="facebook"] {
    background: linear-gradient(135deg, #3b5998, #1c3b6e);
}

.mf-social-side-list ul li a[href*="instagram"] {
    background: linear-gradient(135deg, #fdf497, #fd5949, #d6249f, #285aeb);
}

.mf-social-side-list ul li a[href*="youtube"] {
    background: linear-gradient(135deg, #ff0000, #a30000);
}

.mf-social-side-list ul li a[href*="wa.me"] {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .mf-social-side-list {
        right: 5px;
        display: none;
    }
    .mf-social-side-list ul li a {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 16px;
    }
}

/* ==========================
   CONTACT SECTION RESPONSIVE
========================== */

/* Tablet View */
@media (max-width: 992px) {

    .geo-contact-grid {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }

    .geo-image-column {
        min-height: 450px !important;
    }

    .image-map-badge {
        width: 240px !important;
    }
}

/* Mobile View */
@media (max-width: 768px) {

    .geo-contact-container {
        padding: 0 15px;
    }

    .geo-title {
        font-size: 2rem;
        line-height: 1.3;
    }

    .geo-meta-text {
        font-size: 15px;
    }

    .geo-contact-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .geo-image-column {
        min-height: 350px !important;
        border-radius: 12px;
    }

    .image-map-badge {
        position: absolute !important;
        top: 15px !important;
        left: 15px !important;
        width: 200px !important;
        padding: 6px !important;
    }

    .image-map-badge iframe {
        height: 110px !important;
    }

    .geo-detail-card {
        padding: 18px;
        display: flex;
        align-items: flex-start;
        gap: 15px;
    }

    .geo-icon-circle {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 18px;
    }

    .geo-card-content h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .geo-card-content p,
    .geo-card-content a,
    .geo-card-content td {
        font-size: 14px;
        line-height: 1.6;
    }

    .hours-table {
        width: 100%;
    }

    .hours-table td {
        display: block;
        padding: 2px 0;
    }

    .geo-action-buttons {
        margin-top: 20px;
    }

    .geo-btn-whatsapp {
        width: 100%;
        justify-content: center;
        text-align: center;
        display: flex;
        padding: 14px 20px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {

    .geo-title {
        font-size: 1.7rem;
    }

    .geo-subtitle {
        font-size: 13px;
    }

    .geo-meta-text {
        font-size: 14px;
    }

    .geo-image-column {
        min-height: 300px !important;
    }

    .image-map-badge {
        width: 170px !important;
        top: 10px !important;
        left: 10px !important;
    }

    .image-map-badge iframe {
        height: 90px !important;
    }

    .image-map-badge span {
        font-size: 10px !important;
    }

    .geo-detail-card {
        flex-direction: column;
        text-align: left;
    }

    .geo-icon-circle {
        margin-bottom: 10px;
    }

    .geo-phone-link {
        font-size: 16px;
        word-break: break-word;
    }
}