/* ==========================================================================
   GLOBAL DESIGN TOKENS & SYSTEM BASELINE
   ========================================================================== */

:root {
    /* Color Palette Tokens */
    --color-primary-red: #dc2626;
    --color-primary-red-hover: #ba1c1c;

    /* Background Canvas Tokens */
    --color-bg-main: #010102;
    --color-bg-alt: #0a0a0a;

    /* Text Color Tokens */
    --text-primary: #f5f5f5;
    --text-secondary: #a29d8b;
    --text-black: #000000;

    /* Typography Tokens */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing System */
    --section-pad-top: 100px;
    --section-pad-bottom: 100px;
    --container-max-width: 1400px;
    /* 1400px Desktop Base Width */
    --container-pad-left: 20px;
    --container-pad-right: 20px;
}

/* Base Reset & Smooth Scroll */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

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

/* Standard Container Wrapper */
.main-container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding-left: var(--container-pad-left);
    padding-right: var(--container-pad-right);
}

.section-padding {
    padding-top: var(--section-pad-top);
    padding-bottom: var(--section-pad-bottom);
}

/* Background Utilities */
.bg-main {
    background-color: var(--color-bg-main);
}

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

/* ==========================================================================
   TYPOGRAPHY & BUTTON SYSTEM
   ========================================================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

h1,
.h1-display {
    font-size: 96px;
}

h2,
.h2-display {
    font-size: 60px;
}

h3,
.h3-display {
    font-size: 48px;
}

h4,
.h4-display {
    font-size: 32px;
}

h5,
.h5-display {
    font-size: 24px;
}

h6,
.h6-display {
    font-size: 18px;
}

p,
span,
li,
a {
    color: var(--text-secondary);
}

/* --- Base Button Baseline (Desktop Default: 1000px+) --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    /* Standard flat design */
    cursor: pointer;
    white-space: nowrap;
    width: auto;
    max-width: max-content;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);

    /* Desktop Dimensions */
    padding: 16px 36px;
    font-size: 0.88rem;
}

/* Button Variant Colors */
.btn-primary {
    background-color: var(--color-primary-red);
    color: var(--text-primary);
    border: 1px solid var(--color-primary-red);
}

.btn-primary:hover {
    background-color: var(--color-primary-red-hover);
    border-color: var(--color-primary-red-hover);
    color: var(--text-primary);
}

.btn-transparent {
    background-color: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(245, 245, 245, 0.3);
}

.btn-transparent:hover {
    background-color: #ffffff;
    border-color: #ffffff;
    color: var(--text-black) !important;
}

/* Header Specific Pill CTA Variant */
.header-cta-btn {
    border-radius: 50px !important;
    padding: 12px 24px !important;
    font-size: 0.78rem !important;
}

/* --- Size Modifiers (For Section Specific Use) --- */
.btn-sm {
    padding: 10px 20px;
    font-size: 0.75rem;
}

.btn-lg {
    padding: 18px 42px;
    font-size: 0.95rem;
}

/* ==========================================================================
   HEADER & MEGA DROPDOWN SYSTEM
   ========================================================================== */

.site-header {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--color-bg-main);
    padding: 22px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

/* Logo Image Styling */
.site-logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 73px;
    width: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.25s ease;
}

.site-logo:hover .logo-img {
    transform: scale(1.04);
}

/* Navigation System */
.main-navigation {
    display: flex;
    align-items: center;
}

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

/* Locked Dropdown Trigger Container */
.nav-item {
    position: relative;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: var(--text-primary);
    text-decoration: none;
    padding: 10px 0;
    transition: color 0.25s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-primary-red);
}

.nav-arrow {
    font-size: 0.65rem;
    transition: transform 0.25s ease;
}

.has-dropdown:hover .nav-arrow {
    transform: rotate(180deg);
    color: var(--color-primary-red);
}

/* --- MEGA DROPDOWN PANEL (Gap-less & Bridge Protected) --- */
.mega-dropdown-menu {
    position: absolute;
    top: 100%;
    /* Sits directly flush beneath the nav link */
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 820px;
    background-color: #0d0d0e;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 32px 36px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    /* Added subtle transition-delay on leave to keep panel open if mouse drifts slightly */
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
    pointer-events: none;
}

/* Invisible Bridge: Acts as a hit-box buffer so the mouse never technically leaves the hover zone */
.mega-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -20px;
    /* Extends invisible hit zone 20px upward toward the menu text */
    left: 0;
    width: 100%;
    height: 20px;
    background: transparent;
}

/* Active Hover State */
.has-dropdown:hover .mega-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
    transition-delay: 0s;
    /* Immediate display on enter */
}

.mega-dropdown-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

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

.dropdown-category-title {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--color-primary-red);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.dropdown-link-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dropdown-link-list a {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 400;
    color: rgba(245, 245, 245, 0.8);
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
    display: inline-block;
}

.dropdown-link-list a:hover {
    color: var(--text-primary);
    transform: translateX(3px);
}

.dropdown-view-all {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--color-primary-red);
    text-decoration: none;
    margin-top: 20px;
    transition: opacity 0.2s ease;
}

.dropdown-view-all:hover {
    opacity: 0.8;
}

/* Header Call Box & CTA */
.header-action-group {
    display: flex;
    align-items: center;
    gap: 24px;
}

.header-call-box {
    display: flex;
    align-items: center;
    gap: 12px;
}

.call-icon-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: var(--color-primary-red);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 0.82rem;
}

.call-text-meta {
    display: flex;
    flex-direction: column;
}

.call-label {
    font-family: var(--font-body);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--text-secondary);
}

.call-number {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
}

.header-cta-btn {
    border-radius: 50px;
    padding: 14px 28px;
    font-size: 0.78rem;
    font-weight: 600;
}

/* ==========================================================================
   ANIMATED CSS HAMBURGER MENU
   ========================================================================== */

.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-bar {
    width: 26px;
    height: 2px;
    background-color: var(--text-primary);
    border-radius: 2px;
    transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
    transform-origin: center;
}

/* Active Morphing Icon State (X Shape) */
.mobile-nav-toggle.is-active .bar-1 {
    transform: translateY(7px) rotate(45deg);
    background-color: var(--color-primary-red);
}

.mobile-nav-toggle.is-active .bar-2 {
    opacity: 0;
    transform: translateX(-10px);
}

.mobile-nav-toggle.is-active .bar-3 {
    transform: translateY(-7px) rotate(-45deg);
    background-color: var(--color-primary-red);
}

/* Mobile Slide-out Drawer Panel */
.mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background-color: #080809;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 2000;
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    overflow-y: auto;
}

.mobile-nav-drawer.active {
    right: 0;
}

.mobile-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-nav-close {
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.2s ease;
}

.mobile-nav-close:hover {
    color: var(--color-primary-red);
}

.mobile-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav-link {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--text-primary);
    text-decoration: none;
    display: block;
    transition: color 0.2s ease;
}

.mobile-nav-link.active,
.mobile-nav-link:hover {
    color: var(--color-primary-red);
}

.mobile-submenu-toggle {
    width: 100%;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.mobile-submenu-list {
    list-style: none;
    padding-left: 15px;
    margin-top: 15px;
    display: none;
    flex-direction: column;
    gap: 12px;
}

.mobile-has-submenu.open .mobile-submenu-list {
    display: flex;
}

.mobile-has-submenu.open .mobile-submenu-toggle i {
    transform: rotate(180deg);
    color: var(--color-primary-red);
}

.mobile-submenu-title {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--color-primary-red);
    margin-top: 10px;
}

.mobile-submenu-list a {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-decoration: none;
}

.mobile-drawer-cta {
    margin-top: 40px;
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.75);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.banner-padding {
    padding-top: 120px;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS (LAPTOP = 1280px CONTAINER, 70px PAD)
   ========================================================================== */

@media (max-width: 1400px) {
    :root {
        --container-max-width: 1280px;
        /* Laptop Container Width Lock */
        --section-pad-top: 70px;
        --section-pad-bottom: 70px;
        --container-pad-left: 20px;
        --container-pad-right: 20px;
    }

    .banner-padding {
        padding-top: 80px;
        padding-bottom: var(--section-pad-bottom);
    }

    h1,
    .h1-display {
        font-size: 80px;
    }

    h2,
    .h2-display {
        font-size: 52px;
    }

    h3,
    .h3-display {
        font-size: 42px;
    }

    .btn {
        padding: 14px 30px;
        font-size: 0.82rem;
    }

    .btn-lg {
        padding: 16px 36px;
        font-size: 0.88rem;
    }

    .header-cta-btn {
        padding: 10px 20px !important;
        font-size: 0.75rem !important;
    }
}

@media (max-width: 1200px) {
    .mega-dropdown-menu {
        width: 720px;
        padding: 24px 28px;
    }

    .banner-padding {
        padding-top: 70px;
        padding-bottom: var(--section-pad-bottom);
    }
}

@media (max-width: 1024px) {
    :root {
        --section-pad-top: 50px;
        --section-pad-bottom: 50px;
        --container-pad-left: 20px;
        --container-pad-right: 20px;
    }

    h1,
    .h1-display {
        font-size: 64px;
    }

    h2,
    .h2-display {
        font-size: 44px;
    }

    h3,
    .h3-display {
        font-size: 36px;
    }

    h4,
    .h4-display {
        font-size: 26px;
    }

    .banner-padding {
        padding-top: 50px;
        padding-bottom: var(--section-pad-bottom);
    }

    .main-navigation,
    .header-call-box {
        display: none;
    }

    .mobile-nav-toggle {
        display: flex;
        /* Displays animated hamburger icon under 1024px */
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.80rem;
    }

    .btn-lg {
        padding: 14px 30px;
        font-size: 0.85rem;
    }

    .header-cta-btn {
        padding: 9px 18px !important;
        font-size: 0.72rem !important;
    }
}

@media (max-width: 600px) {
    :root {
        --section-pad-top: 40px;
        --section-pad-bottom: 40px;
        --container-pad-left: 20px;
        --container-pad-right: 20px;
    }

    h1,
    .h1-display {
        font-size: 45px !important;
    }

    h2,
    .h2-display {
        font-size: 32px;
    }

    h3,
    .h3-display {
        font-size: 26px;
    }

    h4,
    .h4-display {
        font-size: 20px;
    }

    h5,
    .h5-display {
        font-size: 18px;
    }

    h6,
    .h6-display {
        font-size: 16px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.75rem;
        letter-spacing: 0.8px;
    }

    .btn-lg {
        padding: 12px 24px;
        font-size: 0.80rem;
    }

    .header-cta-btn {
        padding: 8px 14px !important;
        font-size: 0.68rem !important;
    }
}


/* ==========================================================================
   HERO BANNER SYSTEM (DARK RED TO BLACK GRADIENT WITH ZOOM EFFECT)
   ========================================================================== */

.hero-section {
    /* Layer 1: Gradient on top (100% solid black on left, 90% opacity black on right) */
    /* Layer 2: Image underneath */
    background:
        linear-gradient(90deg,
            #000000 0%,
            rgba(0, 0, 0, 0.95) 50%,
            rgba(0, 0, 0, 0.90) 100%),
        url('assest/Team.jpg') right center / cover no-repeat;
}

/* Static background image - no animation */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assest/Team.jpg');
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    opacity: 0.15;
    /* Subtle background visibility */
    z-index: -1;
}

/* Continuous Background Zoom Animation */
@keyframes heroBackgroundZoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.12);
    }
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* --- Left Column Layout --- */
.hero-content {
    display: flex;
    flex-direction: column;
}

.hero-tagline {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.tagline-line {
    width: 28px;
    height: 1px;
    background-color: var(--color-primary-red);
}

.tagline-text {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    color: var(--color-primary-red);
}

.hero-title {
    margin-bottom: 24px;
}

.text-italic-red {
    font-style: italic;
    color: var(--color-primary-red);
    font-weight: 400;
}

.hero-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 520px;
    margin-bottom: 36px;
}

/* Button Group */
.hero-action-group {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 50px;
}

.hero-btn-pill {
    border-radius: 50px !important;
}

.hero-play-icon {
    margin-right: 8px;
    font-size: 0.9rem;
}

/* --- Bottom Stats Matrix --- */
.hero-stats-wrapper {
    display: flex;
    align-items: center;
    gap: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--text-secondary);
    text-transform: uppercase;
}

.stat-divider {
    width: 1px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.08);
}

.rating-stars {
    display: flex;
    gap: 4px;
    color: var(--color-primary-red);
    font-size: 0.75rem;
    margin-bottom: 6px;
}

/* --- Right Side Visual Card --- */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.hero-image-card {
    position: relative;
    width: 100%;
    max-width: 480px;
    border-radius: 16px;
    overflow: visible;
}

.hero-img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 16px;
    display: block;
    filter: brightness(0.9);
    transition: transform 0.5s ease;
}

.hero-image-card:hover .hero-img {
    transform: scale(1.02);
}

/* Floating Red Opening Hours Badge */
.floating-hours-card {
    position: absolute;
    bottom: -20px;
    left: -30px;
    background-color: var(--color-primary-red);
    padding: 22px 26px;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    z-index: 5;
    min-width: 200px;
}

.hours-title {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.8);
    display: block;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.hours-row {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 4px;
}

.hours-row:last-child {
    margin-bottom: 0;
}

/* ==========================================================================
   HERO BANNER RESPONSIVE BREAKPOINTS
   ========================================================================== */

@media (max-width: 1400px) {
    .hero-img {
        height: 480px;
    }
}

@media (max-width: 1200px) {
    .hero-container {
        gap: 40px;
    }

    .hero-img {
        height: 440px;
    }
}

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-visual {
        justify-content: center;
        margin-top: 20px;
    }

    .hero-image-card {
        max-width: 100%;
    }

    .floating-hours-card {
        left: 20px;
    }
}

@media (max-width: 600px) {
    .hero-action-group {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-btn-pill {
        width: 100% !important;
        max-width: 100% !important;
    }

    .hero-stats-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .stat-divider {
        display: none;
    }

    .hero-img {
        height: 380px;
    }

    .floating-hours-card {
        position: relative;
        bottom: 0;
        left: 0;
        margin-top: -40px;
        width: calc(100% - 30px);
        margin-left: 15px;
    }
}


/* ==========================================
   INFINITE MARQUEE TAPE STYLES
   ========================================== */

.marquee-section {
    width: 100%;
    overflow: hidden;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background-color: var(--color-bg-alt);
    position: relative;
    user-select: none;
}

.marquee-track {
    display: flex;
    width: max-content;
    white-space: nowrap;
}

.marquee-content {
    display: flex;
    align-items: center;
    animation: marqueeScroll 25s linear infinite;
}

/* Pause scroll when user hovers over the ticker */
.marquee-section:hover .marquee-content {
    animation-play-state: paused;
}

.marquee-item {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 0.5px;
    padding: 0 28px;
    transition: color 0.3s ease;
}

.marquee-item:hover {
    color: var(--color-primary-red);
}

.marquee-dot {
    width: 6px;
    height: 6px;
    background-color: var(--color-primary-red);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px rgba(220, 38, 38, 0.6);
}

/* Infinite Hardware-Accelerated Keyframe Animation */
@keyframes marqueeScroll {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* --- Responsive Marquee Adjustments --- */
@media (max-width: 1024px) {
    .marquee-section {
        padding: 20px 0;
    }

    .marquee-item {
        font-size: 1.2rem;
        padding: 0 20px;
    }

    .marquee-dot {
        width: 5px;
        height: 5px;
    }
}

@media (max-width: 600px) {
    .marquee-section {
        padding: 16px 0;
    }

    .marquee-item {
        font-size: 1rem;
        padding: 0 16px;
    }

    .marquee-dot {
        width: 4px;
        height: 4px;
    }
}


/* ==========================================
   ABOUT US SECTION STYLES (STANDALONE)
   ========================================== */

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

/* --- Asymmetric 2x2 Image Grid Layout --- */
.about-collage-wrapper {
    position: relative;
    width: 100%;
}

.collage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: start;
}

.collage-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.collage-card {
    border-radius: 16px;
    overflow: hidden;
    background-color: #0d0d0e;
    position: relative;
}

.collage-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.collage-card:hover .collage-img {
    transform: scale(1.04);
}

/* Specific Card Heights for Asymmetric Layout */
.card-tall-left {
    height: 320px;
}

.card-short-left {
    height: 240px;
}

.card-short-right {
    height: 240px;
}

.card-tall-right {
    height: 320px;
}

/* Red Floating Circular "BOOK NOW" Badge */
.floating-circle-badge {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--color-primary-red);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    text-align: center;
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.4);
    z-index: 10;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.3s ease;
}

.floating-circle-badge span {
    font-family: var(--font-body);
    font-size: 0.62rem;
    font-weight: 700;
    line-height: 1.1;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.floating-circle-badge i {
    font-size: 0.72rem;
    margin-top: 4px;
    color: #ffffff;
}

.floating-circle-badge:hover {
    transform: translateX(-50%) scale(1.08);
    background-color: var(--color-primary-red-hover);
}

/* --- Right Column Content & Feature Cards --- */
.about-content {
    display: flex;
    flex-direction: column;
}

.about-tagline {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.tagline-line {
    width: 28px;
    height: 1px;
    background-color: var(--color-primary-red);
}

.tagline-text {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    color: var(--color-primary-red);
}

.about-title {
    margin-bottom: 24px;
}

.text-italic-red {
    font-style: italic;
    color: var(--color-primary-red);
    font-weight: 400;
}

.about-description {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--text-secondary);
    margin-bottom: 36px;
}

.about-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.feature-card {
    background-color: #0d0d0e;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 28px 24px;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.feature-card:hover {
    border-color: rgba(220, 38, 38, 0.3);
    transform: translateY(-3px);
}

.feature-icon-box {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background-color: rgba(220, 38, 38, 0.12);
    border: 1px solid rgba(220, 38, 38, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary-red);
    font-size: 0.85rem;
    margin-bottom: 18px;
}

.feature-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.feature-text {
    font-size: 0.82rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.about-btn-pill {
    border-radius: 50px !important;
}

/* --- Responsive Breakpoints --- */
@media (max-width: 1200px) {
    .about-container {
        gap: 40px;
    }
}

@media (max-width: 1024px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-collage-wrapper {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .about-features-grid {
        grid-template-columns: 1fr;
    }

    .card-tall-left,
    .card-tall-right {
        height: 220px;
    }

    .card-short-left,
    .card-short-right {
        height: 170px;
    }

    .floating-circle-badge {
        width: 68px;
        height: 68px;
    }

    .floating-circle-badge span {
        font-size: 0.55rem;
    }
}


/* ==========================================================================
   OUR SERVICES SHOWCASE SECTION (HOVER-REVEAL SYSTEM)
   ========================================================================== */

.services-container {
    display: flex;
    flex-direction: column;
}

/* --- Top Section Header --- */
.services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
    gap: 40px;
}

.services-header-left {
    display: flex;
    flex-direction: column;
}

.services-tagline {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.services-header-right {
    max-width: 420px;
    padding-bottom: 10px;
}

.services-intro-text {
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* --- 4-Card Grid --- */
.services-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.service-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 440px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background-color: #0d0d0e;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    cursor: pointer;
    transition: border-color 0.4s ease, transform 0.4s ease;
}

.service-card:hover {
    border-color: rgba(220, 38, 38, 0.5);
    transform: translateY(-4px);
}

/* Background Image Zoom on Hover */
.service-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: brightness(0.7);
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), filter 0.6s ease;
}

.service-card:hover .service-card-bg {
    transform: scale(1.08);
    filter: brightness(0.5);
}

/* Dynamic Gradient Overlay */
.service-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.98) 0%,
            rgba(0, 0, 0, 0.65) 50%,
            rgba(0, 0, 0, 0.20) 100%);
    z-index: 2;
    transition: opacity 0.4s ease;
}

/* --- Content Wrapper & Smooth Hover Reveal Effects --- */
.service-card-content {
    position: relative;
    z-index: 3;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
}

.service-number {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--color-primary-red);
    margin-bottom: 8px;
    display: block;
}

.service-card-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 0;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), margin 0.4s ease;
}

/* Move Title up slightly on hover to make room for description */
.service-card:hover .service-card-title {
    margin-bottom: 10px;
}

/* Hidden Description: Appears on Hover */
.service-card-desc {
    font-size: 0.8rem;
    line-height: 1.55;
    color: rgba(245, 245, 245, 0.85);
    max-height: 0;
    opacity: 0;
    transform: translateY(15px);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    margin-bottom: 0;
}

.service-card:hover .service-card-desc {
    max-height: 100px;
    opacity: 1;
    transform: translateY(0);
    margin-bottom: 16px;
}

/* Card Button Link */
.service-card-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-top: 12px;
    width: fit-content;
}

.service-card-btn span {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

/* Icon Container Circle */
.service-btn-arrow {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--color-primary-red);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.3s ease;
}

.service-btn-arrow i {
    color: #ffffff !important;
    display: inline-block;
}

.service-card-btn:hover span {
    color: var(--color-primary-red);
}

.service-card:hover .service-btn-arrow {
    transform: scale(1.15) rotate(5deg);
    background-color: var(--color-primary-red-hover);
}

/* --- Bottom Horizontal Banner --- */
.services-bottom-banner {
    background-color: #0b0505;
    border: 1px solid rgba(220, 38, 38, 0.18);
    border-radius: 20px;
    padding: 28px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.bottom-banner-text {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--text-primary);
    font-weight: 500;
}

.services-banner-btn {
    border-radius: 50px !important;
    padding: 14px 28px !important;
    font-size: 0.78rem !important;
}

/* ==========================================
   RESPONSIVE BREAKPOINTS
   ========================================== */

@media (max-width: 1200px) {
    .services-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .service-card {
        height: 380px;
    }
}

@media (max-width: 1024px) {
    .services-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .services-header-right {
        max-width: 100%;
    }

    /* On mobile/tablets, show description by default for better touch UX */
    .service-card-desc {
        max-height: 100px;
        opacity: 1;
        transform: translateY(0);
        margin-bottom: 12px;
    }

    .bottom-banner-text {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .services-bottom-banner {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
    }

    .services-banner-btn {
        width: 100% !important;
        max-width: 100% !important;
    }
}

@media (max-width: 600px) {
    .services-cards-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        height: 360px;
    }

    .bottom-banner-text {
        font-size: 1.15rem;
    }
}

/* ==========================================================================
   WHY CHOOSE US SECTION STYLES
   ========================================================================== */

.why-us-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

/* --- Left Column Layout --- */
.why-us-content {
    display: flex;
    flex-direction: column;
}

.why-us-tagline {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.why-us-title {
    margin-bottom: 24px;
    line-height: 1.15;
}

.why-us-description {
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 520px;
}

/* --- Checkmark Feature List --- */
.why-us-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.why-us-checklist li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-primary);
}

.check-icon-circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--color-primary-red);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    flex-shrink: 0;
}

/* --- Action Group (Button + Contact Box) --- */
.why-us-actions {
    display: flex;
    align-items: center;
    gap: 32px;
}

.why-us-btn-pill {
    border-radius: 50px !important;
    padding: 16px 32px !important;
    font-size: 0.8rem !important;
}

.why-us-phone-box {
    display: flex;
    align-items: center;
    gap: 12px;
}

.phone-icon-circle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.3);
    color: var(--color-primary-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.phone-meta {
    display: flex;
    flex-direction: column;
}

.phone-label {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--text-secondary);
    text-transform: uppercase;
}

.phone-number {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone-number:hover {
    color: var(--color-primary-red);
}

/* --- Right Column Visual Card --- */
.why-us-visual {
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

.why-us-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 540px;
    border-radius: 24px;
}

.why-us-img {
    width: 100%;
    height: 580px;
    object-fit: cover;
    border-radius: 24px;
    display: block;
    filter: brightness(0.9);
}

/* Top-Right Floating "NOW BOOKING" Badge */
.floating-booking-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background-color: rgba(18, 18, 20, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 18px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.floating-booking-badge span {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--text-primary);
}

.status-dot {
    width: 7px;
    height: 7px;
    background-color: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 8px #22c55e;
}

/* Bottom-Left Floating Red Stat Card */
.floating-stat-card {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background-color: var(--color-primary-red);
    padding: 24px 28px;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(220, 38, 38, 0.3);
    z-index: 5;
}

.stat-percentage {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-text {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    display: block;
}

/* ==========================================
   WHY CHOOSE US RESPONSIVE BREAKPOINTS
   ========================================== */

@media (max-width: 1200px) {
    .why-us-container {
        gap: 40px;
    }

    .why-us-img {
        height: 520px;
    }
}

@media (max-width: 1024px) {
    .why-us-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .why-us-visual {
        justify-content: center;
    }

    .why-us-image-wrapper {
        max-width: 600px;
    }
}

@media (max-width: 600px) {
    .why-us-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .why-us-btn-pill {
        width: 100% !important;
        max-width: 100% !important;
    }

    .why-us-img {
        height: 420px;
    }

    .floating-stat-card {
        bottom: -15px;
        left: 10px;
        padding: 18px 22px;
    }

    .stat-percentage {
        font-size: 1.8rem;
    }
}

/* ==========================================================================
   OUR ARTISTS SHOWCASE SECTION
   ========================================================================== */

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

.artists-container {
    display: flex;
    flex-direction: column;
}

/* --- Top Section Header --- */
.artists-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
    gap: 40px;
}

.artists-header-left {
    display: flex;
    flex-direction: column;
}

.artists-tagline {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.artists-title {
    margin-bottom: 0;
    line-height: 1.15;
}

.artists-header-right {
    max-width: 420px;
    padding-bottom: 10px;
}

.artists-intro-text {
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* --- 4-Card Artist Grid --- */
.artists-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.artist-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    height: 460px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background-color: #0d0d0e;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.4s ease, box-shadow 0.4s ease;
}

.artist-card:hover {
    transform: translateY(-6px);
    border-color: rgba(220, 38, 38, 0.4);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6);
}

/* Background Image: Grayscale by default -> Color + Zoom on hover */
.artist-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: grayscale(100%) brightness(0.85);
    transition: filter 0.6s ease, transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.artist-card:hover .artist-card-bg {
    filter: grayscale(0%) brightness(0.95);
    transform: scale(1.06);
}

/* Overlay gradient for text readability */
.artist-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.95) 0%,
            rgba(0, 0, 0, 0.60) 45%,
            rgba(0, 0, 0, 0.20) 100%);
    z-index: 2;
}

/* --- Top-Right Clickable Instagram Badge --- */
.artist-insta-btn {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(18, 18, 20, 0.7);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 5;
    opacity: 0;
    transform: translateY(-8px) scale(0.9);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.artist-insta-btn i {
    font-size: 0.95rem;
    color: #ffffff !important;
    line-height: 1 !important;
}

/* Reveal Instagram link button on card hover */
.artist-card:hover .artist-insta-btn {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Hover state on the Instagram icon button itself */
.artist-insta-btn:hover {
    background-color: var(--color-primary-red);
    border-color: var(--color-primary-red);
    transform: scale(1.1) !important;
}

/* --- Content Container --- */
.artist-card-content {
    position: relative;
    z-index: 3;
    padding: 26px 22px;
    display: flex;
    flex-direction: column;
}

.artist-name {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 6px;
}

.artist-role {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--color-primary-red);
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

.artist-specialty {
    font-size: 0.8rem;
    line-height: 1.5;
    color: rgba(245, 245, 245, 0.75);
    margin-bottom: 8px;
}

.artist-handle {
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(245, 245, 245, 0.5);
    transition: color 0.3s ease;
}

.artist-card:hover .artist-handle {
    color: rgba(245, 245, 245, 0.85);
}

/* --- Bottom Center Button --- */
.artists-bottom-action {
    display: flex;
    justify-content: center;
    align-items: center;
}

.artists-team-btn {
    border-radius: 50px !important;
    padding: 14px 32px !important;
    font-size: 0.78rem !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    background-color: rgba(255, 255, 255, 0.03) !important;
}

.artists-team-btn:hover {
    background-color: #ffffff !important;
    color: var(--text-black) !important;
    border-color: #ffffff !important;
}

.artists-team-btn:hover i {
    color: var(--text-black) !important;
}

/* ==========================================
   RESPONSIVE BREAKPOINTS
   ========================================== */

@media (max-width: 1200px) {
    .artists-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .artist-card {
        height: 400px;
    }
}

@media (max-width: 1024px) {
    .artists-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .artists-header-right {
        max-width: 100%;
    }

    /* Keep button visible on touch screens */
    .artist-insta-btn {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 600px) {
    .artists-cards-grid {
        grid-template-columns: 1fr;
    }

    .artist-card {
        height: 380px;
    }
}


/* ==========================================================================
   TESTIMONIALS & GOOGLE REVIEWS SECTION STYLES
   ========================================================================== */

.testimonials-section {
    background-color: var(--color-bg-main, #0a0a0b);
}

.testimonials-container {
    display: flex;
    flex-direction: column;
}

/* --- Header --- */
.testimonials-header {
    text-align: center;
    margin-bottom: 55px;
}

.testimonials-tagline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
}

.testimonials-title {
    margin-bottom: 0;
    line-height: 1.15;
}

/* --- Featured Testimonial Slider Wrapper --- */
.testimonial-slider-wrapper {
    position: relative;
    max-width: 980px;
    margin: 0 auto;
    width: 100%;
}

.testimonial-slider-track {
    position: relative;
    min-height: 380px;
}

/* Single Slide */
.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 50px;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transform: translateX(30px);
    transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s;
    pointer-events: none;
}

.testimonial-slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    pointer-events: auto;
}

/* Image Card & Quote Badge */
.slide-image-col {
    width: 100%;
}

.slide-img-card {
    position: relative;
    width: 100%;
    height: 360px;
    border-radius: 20px;
    overflow: hidden;
    background-color: #121214;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

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

.slide-quote-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: var(--color-primary-red, #dc2626);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.35);
}

.slide-quote-badge i {
    font-size: 1.3rem;
    line-height: 1 !important;
    transform: rotate(180deg);
}

/* Content Area */
.slide-content-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 60px;
}

.red-stars i {
    color: var(--color-primary-red, #dc2626) !important;
    font-size: 0.85rem;
    margin-right: 3px;
}

.testimonial-quote {
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: 1.65rem;
    font-weight: 500;
    line-height: 1.38;
    color: #ffffff;
    margin: 22px 0 28px 0;
}

.testimonial-meta {
    display: flex;
    flex-direction: column;
}

.client-name {
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 4px;
}

.client-role {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--color-primary-red, #dc2626);
    text-transform: uppercase;
}

/* Slider Controls (< > Buttons) */
.slider-controls {
    position: absolute;
    bottom: 10px;
    right: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
}

.slider-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-btn i {
    font-size: 0.75rem;
    line-height: 1 !important;
    color: inherit !important;
}

.slider-btn:hover {
    border-color: #ffffff;
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.08);
}

/* --- Section Divider --- */
.testimonials-divider {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.08);
    margin: 65px 0 50px 0;
}

/* --- Google Reviews Sub-section --- */
.google-reviews-wrapper {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

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

.google-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.google-g-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: #ffffff;
    color: #000000;
    font-family: Arial, sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.google-meta {
    display: flex;
    flex-direction: column;
}

.google-title {
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: 1.15rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 2px;
}

.google-sub-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

.google-view-all-link {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-primary-red, #dc2626);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.google-view-all-link:hover {
    opacity: 0.8;
}

/* 4 Google Cards Grid */
.google-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.google-card {
    background-color: #111113;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    padding: 22px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 160px;
}

.card-stars {
    margin-bottom: 12px;
}

.google-review-text {
    font-size: 0.78rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
}

.google-review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.7rem;
}

.reviewer-name {
    font-weight: 700;
    color: #ffffff;
}

.review-time {
    color: rgba(255, 255, 255, 0.4);
}

/* --- Responsive Rules --- */
@media (max-width: 1024px) {
    .testimonial-slide {
        grid-template-columns: 300px 1fr;
        gap: 30px;
    }

    .slide-content-col {
        padding-right: 0;
    }

    .testimonial-quote {
        font-size: 1.35rem;
    }

    .google-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonial-slide {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .slide-img-card {
        height: 280px;
    }

    .slider-controls {
        position: relative;
        bottom: 0;
        margin-top: 20px;
        justify-content: flex-end;
    }

    .google-summary-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .google-cards-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   INSTAGRAM FEED GALLERY SECTION STYLES
   ========================================================================== */

.insta-section {
    background-color: var(--color-bg-alt, #0d0d0e);
}

.insta-container {
    display: flex;
    flex-direction: column;
}

/* --- Header Layout --- */
.insta-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 36px;
}

.insta-tagline {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.insta-title {
    margin-bottom: 0;
    line-height: 1.15;
}

.insta-follow-btn {
    border-radius: 50px !important;
    padding: 12px 26px !important;
    font-size: 0.75rem !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    background-color: rgba(255, 255, 255, 0.02) !important;
}

.insta-follow-btn:hover {
    background-color: #ffffff !important;
    color: var(--text-black, #000000) !important;
    border-color: #ffffff !important;
}

.insta-follow-btn:hover i {
    color: var(--text-black, #000000) !important;
}

/* --- 6-Column Grid Layout --- */
.insta-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.insta-item {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    display: block;
    background-color: #121214;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.insta-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Hover Red Overlay with Centered Icon */
.insta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(220, 38, 38, 0.82);
    /* Primary Red tint */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 2;
}

.insta-icon {
    font-size: 1.45rem;
    color: #ffffff !important;
    line-height: 1 !important;
    transform: scale(0.8);
    transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

/* --- Hover Effects --- */
.insta-item:hover .insta-overlay {
    opacity: 1;
}

.insta-item:hover .insta-icon {
    transform: scale(1);
}

.insta-item:hover .insta-img {
    transform: scale(1.08);
}

/* ==========================================
   RESPONSIVE BREAKPOINTS
   ========================================== */

@media (max-width: 1200px) {
    .insta-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }
}

@media (max-width: 768px) {
    .insta-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .insta-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

/* Dynamic wrapper inheriting page defaults */
.faq-section {
    width: 100%;
    background-color: inherit;
    padding-top: var(--section-padding-top, 80px);
    padding-bottom: var(--section-padding-bottom, 80px);
    box-sizing: border-box;
}

.faq-container {
    max-width: var(--site-container-width, 1400px);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--site-gutter, 20px);
    padding-right: var(--site-gutter, 20px);
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: start;
    box-sizing: border-box;
}

/* Header Section */
.faq-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.sub-heading {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.sub-heading .line {
    width: 24px;
    height: 2px;
    background-color: #e52e2e;
}

.sub-heading .sub-text {
    color: #e52e2e;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.main-heading {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 24px;
    color: #ffffff;
}

.accent-text {
    font-style: italic;
    color: #e52e2e;
}

.description {
    color: #a1a1a1;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 420px;
}

.cta-button {
    display: inline-block;
    background-color: #e52e2e;
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 14px 28px;
    border-radius: 50px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
    background-color: #c42323;
    transform: translateY(-2px);
}

/* Accordion Outer Container */
.accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.accordion-item {
    background-color: #121212;
    border: 1px solid #222222;
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.accordion-item.active {
    border-color: #4a1515;
}

/* Header Button */
.accordion-header {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    padding: 24px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    cursor: pointer;
    color: #ffffff;
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 600;
}

/* Plus / Minus Icon */
.icon {
    width: 32px;
    height: 32px;
    background-color: #1e1e1e;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
    transition: background-color 0.3s ease;
}

.icon::before,
.icon::after {
    content: '';
    position: absolute;
    background-color: #888888;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease, background-color 0.3s ease, opacity 0.3s ease;
}

.icon::before {
    width: 12px;
    height: 2px;
}

.icon::after {
    width: 2px;
    height: 12px;
}

.accordion-item.active .icon {
    background-color: #e52e2e;
}

.accordion-item.active .icon::before {
    background-color: #ffffff;
}

.accordion-item.active .icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

/* Anti-Jerk Content Wrapper Setup */
.accordion-content {
    display: none;
    overflow: hidden;
    will-change: height, opacity;
}

.accordion-item.active>.accordion-content {
    display: block;
}

/* Keep padding exclusively inside the child wrapper */
.content-inner {
    padding: 0 28px 24px 28px;
    color: #a1a1a1;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .faq-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .accordion-header {
        padding: 15px 15px;
    }

    .accordion-header {
        font-size: 16px;
    }
}

/* Main CTA Section Container */
.cta-section {
    position: relative;
    width: 100%;
    padding-top: var(--section-padding-top, 100px);
    padding-bottom: var(--section-padding-bottom, 100px);
    /* Darkened background image with studio imagery */
    background: url('https://images.unsplash.com/photo-1598371839696-5c5bb00bdc28?q=80&w=1600&auto=format&fit=crop') center center / cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    box-sizing: border-box;
}

/* Dark overlay to match image contrast */
.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 10, 10, 0.82);
    z-index: 1;
}

/* Content Box */
.cta-container {
    position: relative;
    z-index: 2;
    max-width: var(--site-container-width, 1200px);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--site-gutter, 20px);
    padding-right: var(--site-gutter, 20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-sizing: border-box;
}

/* Centered Sub-Heading */
.sub-heading.center {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

.sub-heading .line {
    width: 30px;
    height: 1.5px;
    background-color: #e52e2e;
}

.sub-heading .sub-text {
    color: #e52e2e;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Main Heading */
.cta-heading {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 500;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 20px;
    max-width: 600px;
}

.cta-heading .accent-text {
    font-style: italic;
    color: #e52e2e;
    font-weight: 400;
}

/* Description Text */
.cta-description {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #c4c4c4;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 36px;
    max-width: 500px;
}

/* Button Group Wrapper */
.cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Common Button Base */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

/* Primary Filled Button */
.btn-primary {
    background-color: #e52e2e;
    color: #ffffff;
    border: 1px solid #e52e2e;
}

.btn-primary:hover {
    background-color: #c42323;
    border-color: #c42323;
    transform: translateY(-2px);
}

/* Secondary Outline Button */
.btn-outline {
    background-color: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
    background-color: #ffffff;
    color: #0b0b0b;
    border-color: #ffffff;
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .cta-heading {
        font-size: 38px;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
    }

    .btn {
        width: 100%;
    }
}


/* Footer Container */
.site-footer {
    width: 100%;
    background-color: #0b0b0b;
    color: #a1a1a1;
    padding-top: var(--section-padding-top, 80px);
    padding-bottom: 40px;
    box-sizing: border-box;
}

.footer-container {
    max-width: var(--site-container-width, 1400px);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--site-gutter, 20px);
    padding-right: var(--site-gutter, 20px);
    box-sizing: border-box;
}

/* Grid Layout */
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 1.2fr 1.2fr;
    gap: 40px;
    padding-bottom: 60px;
}

/* Brand Column & Logo Image */
.footer-logo {
    display: inline-block;
    margin-bottom: 16px;
    text-decoration: none;
}

.footer-logo-img {
    max-height: 73px;
    width: auto;
    display: block;
    object-fit: contain;
}

.brand-description {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #888888;
    margin-bottom: 24px;
    max-width: 300px;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #222222;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a1a1a1;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    border-color: #e52e2e;
    color: #ffffff;
    background-color: rgba(229, 46, 46, 0.1);
}

/* Column Headings */
.col-title {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

/* Navigation Links */
.footer-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0;
    margin: 0;
}

.footer-nav a {
    color: #888888;
    text-decoration: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #ffffff;
}

/* Contact List */
.contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 0;
    margin: 0;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    color: #888888;
    line-height: 1.4;
}

.contact-icon {
    width: 16px;
    height: 16px;
    color: #e52e2e;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-list a {
    color: #888888;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-list a:hover {
    color: #ffffff;
}

/* Newsletter */
.newsletter-desc {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #888888;
    margin-bottom: 20px;
}

.newsletter-form {
    position: relative;
    display: flex;
    align-items: center;
}

.newsletter-form input {
    width: 100%;
    background-color: #121212;
    border: 1px solid #222222;
    border-radius: 50px;
    padding: 12px 48px 12px 20px;
    color: #ffffff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    outline: none;
    transition: border-color 0.3s ease;
}

.newsletter-form input:focus {
    border-color: #e52e2e;
}

.newsletter-form button {
    position: absolute;
    right: 4px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: #e52e2e;
    border: none;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
    background-color: #c42323;
}

/* Bottom Copyright Bar */
.footer-bottom {
    border-top: 1px solid #1a1a1a;
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    color: #666666;
}

.legal-links {
    display: flex;
    gap: 20px;
}

.legal-links a {
    color: #666666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: #a1a1a1;
}

/* Fixed Floating Widgets (Bottom Right Corner as in image) */
.fixed-widgets {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.widget-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.widget-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.6);
}

.whatsapp-btn {
    background-color: #25d366;
    color: #ffffff;
}

.phone-btn {
    background-color: #e52e2e;
    color: #ffffff;
}

/* Responsive Grid */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}


/* About Us Hero Banner */
/* About Us Banner with Dark Linear Gradient Overlay */
.about-banner {
    position: relative;
    width: 100%;
    padding: 140px 20px 90px;
    background-image:
        linear-gradient(90deg,
            rgb(0, 0, 0) 0%,
            rgb(11, 11, 11) 50%,
            rgba(11, 11, 11, 0.9) 100%),
        url('assest/about-banner.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    text-align: center;
    box-sizing: border-box;
}

.banner-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Sub-Heading with Red Lines */
.banner-subheading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 16px;
}

.subheading-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #e52e2e;
    text-transform: uppercase;
}

.subheading-line {
    display: inline-block;
    width: 35px;
    height: 1px;
    background-color: #e52e2e;
}

/* Main Banner Title */
.banner-title {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 16px 0;
    line-height: 1.1;
}

/* Breadcrumb Styling */
.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
}

.breadcrumb a {
    color: #a1a1a1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #ffffff;
}

.breadcrumb .separator {
    color: #555555;
}

.breadcrumb .current {
    color: #e52e2e;
    font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .about-banner {
        padding: 80px 15px 50px;
    }

    .banner-title {
        font-size: 38px;
    }

    .subheading-line {
        width: 20px;
    }
}

/* Values Section Styling */
.values-section {
    background-color: #0b0b0b;
    padding: 100px 0;
    width: 100%;
    box-sizing: border-box;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 600;
    color: #ffffff;
    margin-top: 10px;
}

.section-title .ampersand {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    color: #ffffff;
}

.section-title .italic-accent {
    font-style: italic;
    color: #e52e2e;
    font-weight: 400;
}

/* Grid Layout inside 1400px Container */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Base Card Styling (Default dark border on all cards) */
.value-card {
    background-color: #121212;
    border: 1px solid #1a1a1a;
    border-radius: 12px;
    padding: 32px 24px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Icon Box Default State */
.value-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(229, 46, 46, 0.1);
    border: 1px solid rgba(229, 46, 46, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: #e52e2e;
    transition: all 0.3s ease;
}

.value-icon svg {
    width: 22px;
    height: 22px;
}

/* Card Content Typography */
.card-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 12px 0;
}

.card-desc {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #888888;
    margin: 0;
}

/* Red Border ONLY on Hover */
.value-card:hover {
    border-color: #e52e2e;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(229, 46, 46, 0.08);
}

.value-card:hover .value-icon {
    background-color: rgba(229, 46, 46, 0.18);
    border-color: #e52e2e;
}

/* Responsive Grid Adjustments */
@media (max-width: 992px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .values-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 32px;
    }
}

/* Services Hero Banner */
.services-banner {
  position: relative;
  width: 100%;
  padding: 140px 0 90px;
  background-color: #0b0b0b;
  background-image: 
    linear-gradient(
      180deg, 
      rgba(11, 11, 11, 0.92) 0%, 
      rgba(11, 11, 11, 0.80) 50%, 
      rgba(11, 11, 11, 0.95) 100%
    ),
    url("assest/about-banner.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  text-align: center;
  box-sizing: border-box;
}

.banner-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Sub-Heading Styling */
.banner-subheading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 16px;
}

.subheading-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #e52e2e;
  text-transform: uppercase;
}

.subheading-line {
  display: inline-block;
  width: 35px;
  height: 1px;
  background-color: #e52e2e;
}

/* Main Banner Title */
.banner-title {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 16px 0;
  line-height: 1.1;
}

/* Breadcrumb Styling */
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
}

.breadcrumb a {
  color: #a1a1a1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: #ffffff;
}

.breadcrumb .separator {
  color: #555555;
}

.breadcrumb .current {
  color: #e52e2e;
  font-weight: 500;
}

/* Responsive Scaling */
@media (max-width: 768px) {
  .services-banner {
    padding: 100px 0 60px;
  }

  .banner-title {
    font-size: 38px;
  }

  .subheading-line {
    width: 20px;
  }
}


/* ==========================================================================
   EXPLORE TATTOO SECTION SPECIFIC STYLES
   ========================================================================== */

.explore-tattoo-section {
  width: 100%;
}

/* Header Area */
.explore-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px auto;
}

.subheading-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 12px;
}

.badge-text {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--color-primary-red);
  text-transform: uppercase;
}

.badge-line {
  width: 32px;
  height: 1px;
  background-color: var(--color-primary-red);
  display: inline-block;
}

.explore-title {
  font-family: var(--font-heading);
  font-size: 3.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.explore-title .italic-red {
  font-style: italic;
  font-weight: 400;
  color: var(--color-primary-red);
}

.explore-subtitle {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* 3-Column Layout */
.tattoo-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Card Styling */
.tattoo-card {
  background-color: var(--color-bg-alt);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s cubic-bezier(0.25, 1, 0.5, 1), transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.tattoo-card:hover {
  border-color: var(--color-primary-red);
  transform: translateY(-4px);
}

/* Card Image Box */
.card-media {
  width: 100%;
  height: 230px;
  overflow: hidden;
  position: relative;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.tattoo-card:hover .card-media img {
  transform: scale(1.05);
}

/* Card Text Body */
.card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-count {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-primary-red);
  margin-bottom: 12px;
  display: block;
  letter-spacing: 0.5px;
}

.card-heading {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.card-text {
  font-family: var(--font-body);
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 24px;
  flex-grow: 1;
}

/* Enquire Action Link */
.card-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
  width: fit-content;
}

.circle-arrow {
  width: 28px;
  height: 28px;
  background-color: var(--color-primary-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.circle-arrow svg {
  width: 13px;
  height: 13px;
}

.card-cta:hover .circle-arrow {
  transform: translate(2px, -2px);
  background-color: var(--color-primary-red-hover);
}

/* Responsive Overrides */
@media (max-width: 992px) {
  .tattoo-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

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

@media (max-width: 600px) {
  .tattoo-cards-grid {
    grid-template-columns: 1fr;
  }

  .card-media {
    height: 200px;
  }

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


/* ==========================================================================
   BENEFITS SECTION SPECIFIC STYLES
   ========================================================================== */

.benefits-section {
  width: 100%;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Media Box */
.benefits-media {
  width: 100%;
  height: 520px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.benefits-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Content Area */
.benefits-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.benefits-title {
  font-family: var(--font-heading);
  font-size: 3.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-top: 10px;
  margin-bottom: 16px;
}

.benefits-title .italic-red {
  font-style: italic;
  font-weight: 400;
  color: var(--color-primary-red);
}

.benefits-subtitle {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 32px;
}

/* 2-Column Checklist */
.benefits-checklist {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 24px;
  margin-bottom: 40px;
  width: 100%;
}

.benefits-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text-primary);
}

.check-icon {
  width: 22px;
  height: 22px;
  background-color: var(--color-primary-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  flex-shrink: 0;
}

.check-icon svg {
  width: 14px;
  height: 14px;
}

/* Responsive Overrides */
@media (max-width: 992px) {
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .benefits-media {
    height: 380px;
  }

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

@media (max-width: 576px) {
  .benefits-checklist {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .benefits-media {
    height: 280px;
  }

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


/* ==========================================================================
   GALLERY BANNER SPECIFIC STYLES
   ========================================================================== */

.gallery-banner {
  position: relative;
  width: 100%;
  padding-top: 140px;
  padding-bottom: 90px;
  background-color: var(--color-bg-main);
  background-image: 
    linear-gradient(
      180deg, 
      rgba(1, 1, 2, 0.92) 0%, 
      rgba(1, 1, 2, 0.80) 50%, 
      rgba(1, 1, 2, 0.95) 100%
    ),
    url("assest/about-banner.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  text-align: center;
  box-sizing: border-box;
}

.banner-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.subheading-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 12px;
}

.badge-text {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--color-primary-red);
  text-transform: uppercase;
}

.badge-line {
  width: 32px;
  height: 1px;
  background-color: var(--color-primary-red);
  display: inline-block;
}

.banner-title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 16px 0;
  line-height: 1.1;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.88rem;
}

.breadcrumb a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: var(--text-primary);
}

.breadcrumb .separator {
  color: rgba(255, 255, 255, 0.3);
}

.breadcrumb .current {
  color: var(--color-primary-red);
  font-weight: 500;
}

/* Responsive Overrides */
@media (max-width: 768px) {
  .gallery-banner {
    padding-top: 100px;
    padding-bottom: 60px;
  }

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

  .badge-line {
    width: 20px;
  }
}

/* ==========================================================================
   MASONRY GALLERY SECTION (TRUE MASONRY WITH PROPORTIONAL SCALING)
   ========================================================================== */

.gallery-masonry-section {
  width: 100%;
}

/* CSS Column-Based Masonry Grid Layout */
.masonry-grid {
  column-count: 4; /* 4 columns on large screens to scale image sizes down naturally */
  column-gap: 16px;
  width: 100%;
}

/* Individual Masonry Item Card */
.masonry-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background-color: var(--color-bg-alt);
  position: relative;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), 
              border-color 0.4s ease;
}

.masonry-item img {
  width: 100%;
  height: auto; /* Natural aspect ratio maintained for true masonry */
  display: block;
  transition: transform 0.5s ease;
}

/* Hover Accent Effects */
.masonry-item:hover {
  transform: translateY(-4px);
  border-color: var(--color-primary-red);
}

.masonry-item:hover img {
  transform: scale(1.03);
}

/* ==========================================================================
   RESPONSIVE OVERRIDES (PROPORTIONAL COLUMN SCALING)
   ========================================================================== */

/* Laptops & Standard Displays (1025px - 1399px) */
@media (max-width: 1399px) {
  .masonry-grid {
    column-count: 3;
    column-gap: 16px;
  }
}

/* Tablets (577px - 1024px) */
@media (max-width: 1024px) {
  .masonry-grid {
    column-count: 2;
    column-gap: 14px;
  }

  .masonry-item {
    margin-bottom: 14px;
    border-radius: 12px;
  }
}

/* Mobile Devices (up to 576px) */
@media (max-width: 576px) {
  .masonry-grid {
    column-count: 2; /* Maintains 2-column masonry grid on mobile */
    column-gap: 10px;
  }

  .masonry-item {
    margin-bottom: 10px;
    border-radius: 8px;
  }
}

/* ==========================================================================
   CONTACT BANNER SPECIFIC STYLES
   ========================================================================== */

.contact-banner {
  position: relative;
  width: 100%;
  padding-top: 140px;
  padding-bottom: 90px;
  background-color: var(--color-bg-main);
  background-image: 
    linear-gradient(
      180deg, 
      rgba(1, 1, 2, 0.92) 0%, 
      rgba(1, 1, 2, 0.80) 50%, 
      rgba(1, 1, 2, 0.95) 100%
    ),
    url("assest/about-banner.jpg" );
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  text-align: center;
  box-sizing: border-box;
}

.banner-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.subheading-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 12px;
}

.badge-text {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--color-primary-red);
  text-transform: uppercase;
}

.badge-line {
  width: 32px;
  height: 1px;
  background-color: var(--color-primary-red);
  display: inline-block;
}

.banner-title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 16px 0;
  line-height: 1.1;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.88rem;
}

.breadcrumb a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: var(--text-primary);
}

.breadcrumb .separator {
  color: rgba(255, 255, 255, 0.3);
}

.breadcrumb .current {
  color: var(--color-primary-red);
  font-weight: 500;
}

/* --- Responsive Breakpoints --- */
@media (max-width: 768px) {
  .contact-banner {
    padding-top: 100px;
    padding-bottom: 60px;
  }

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

  .badge-line {
    width: 20px;
  }
}


/* ==========================================================================
   CONTACT FORM & APPOINTMENT SECTION STYLES
   ========================================================================== */

.contact-form-section {
  width: 100%;
}

.contact-layout-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 50px;
  align-items: start;
}

/* --- Left Info Column --- */
.contact-info-col {
  display: flex;
  flex-direction: column;
}

.contact-heading {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-top: 10px;
  margin-bottom: 12px;
}

.contact-heading .italic-red {
  font-style: italic;
  font-weight: 400;
  color: var(--color-primary-red);
}

.contact-desc {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 32px;
}

/* Info Cards Stack */
.info-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}

.info-card {
  background-color: var(--color-bg-alt);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: border-color 0.3s ease;
}

.info-card:hover {
  border-color: rgba(220, 38, 38, 0.5);
}

.info-icon {
  width: 42px;
  height: 42px;
  background-color: rgba(220, 38, 38, 0.12);
  border: 1px solid rgba(220, 38, 38, 0.25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary-red);
  flex-shrink: 0;
}

.info-icon svg {
  width: 20px;
  height: 20px;
}

.info-details {
  display: flex;
  flex-direction: column;
}

.info-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.info-value {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-primary);
  text-decoration: none;
}

/* Business Hours Box */
.hours-card {
  background-color: var(--color-bg-alt);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 32px;
}

.hours-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--color-primary-red);
}

.hours-header svg {
  width: 18px;
  height: 18px;
}

.hours-header h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-body);
  font-size: 0.85rem;
}

.hours-row .day {
  color: var(--text-secondary);
}

.hours-row .time {
  color: var(--text-primary);
  font-weight: 700;
}

/* Social Circles */
.social-links {
  display: flex;
  gap: 12px;
}

.social-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-circle svg {
  width: 16px;
  height: 16px;
}

.social-circle:hover {
  background-color: var(--color-primary-red);
  border-color: var(--color-primary-red);
  transform: translateY(-2px);
}

/* --- Right Column: Appointment Form --- */
.appointment-card {
  background-color: var(--color-bg-alt);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 40px 36px;
}

.form-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.form-subtitle {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 28px;
}

.appointment-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-group label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-secondary);
}

/* Inputs, Selects, Textarea Controls */
.appointment-form input[type="text"],
.appointment-form input[type="tel"],
.appointment-form input[type="email"],
.appointment-form input[type="date"],
.appointment-form input[type="time"],
.appointment-form select,
.appointment-form textarea {
  width: 100%;
  background-color: #030304;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text-primary);
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box;
}

.appointment-form input:focus,
.appointment-form select:focus,
.appointment-form textarea:focus {
  border-color: var(--color-primary-red);
  box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.2);
}

/* Custom Select Dropdown Styling */
.select-wrapper {
  position: relative;
}

.select-wrapper select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 40px;
}

.select-wrapper::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 6px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
}

.appointment-form textarea {
  resize: vertical;
  min-height: 120px;
}

/* Submit Button */
.submit-btn {
  width: 100%;
  background-color: var(--color-primary-red);
  color: var(--text-primary);
  border: none;
  border-radius: 50px;
  padding: 16px 28px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.submit-btn svg {
  width: 16px;
  height: 16px;
}

.submit-btn:hover {
  background-color: var(--color-primary-red-hover);
  transform: translateY(-2px);
}

/* Left-Aligned Subheading Badge Component */
.contact-info-col .subheading-badge {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  margin-bottom: 12px;
  width: 100%;
}

.contact-info-col .badge-text {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--color-primary-red);
  text-transform: uppercase;
}

.contact-info-col .badge-line {
  width: 32px;
  height: 1px;
  background-color: var(--color-primary-red);
  display: inline-block;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */

@media (max-width: 992px) {
  .contact-layout-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .appointment-card {
    padding: 30px 24px;
  }
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .form-group.full-width {
    grid-column: span 1;
  }

  .contact-heading {
    font-size: 2.25rem;
  }

  .form-title {
    font-size: 1.6rem;
  }
}

/* ==========================================================================
   LOCATION MAP SECTION STYLES
   ========================================================================== */

.location-map-section {
  width: 100%;
}

.map-wrapper {
  width: 100%;
  height: 480px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: border-color 0.3s ease;
}

.map-wrapper:hover {
  border-color: var(--color-primary-red);
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  display: block;
  /* Dark mode filter to match the dark theme canvas */
  filter: grayscale(100%) invert(92%) contrast(83%);
}

/* Responsive Overrides */
@media (max-width: 992px) {
  .map-wrapper {
    height: 380px;
    border-radius: 16px;
  }
}

@media (max-width: 576px) {
  .map-wrapper {
    height: 300px;
    border-radius: 12px;
  }
}

/* ==========================================================================
   OUR ARTISTS SECTION (ISOLATED UNIQUE CLASSES)
   ========================================================================== */

.artist-sec-wrapper {
  width: 100%;
}

/* Vertical Stacked Header */
.artist-sec-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 64px auto;
}

.artist-sec-badge-center {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 12px;
  width: auto;
}

.artist-sec-badge-left {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  margin-bottom: 12px;
  width: auto;
}

.artist-sec-badge-text {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--color-primary-red);
  text-transform: uppercase;
}

.artist-sec-badge-line {
  width: 32px;
  height: 1px;
  background-color: var(--color-primary-red);
  display: inline-block;
}

.artist-sec-main-title {
  font-family: var(--font-heading);
  font-size: 3.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-top: 10px;
  margin-bottom: 0;
}

.artist-sec-main-title .artist-sec-italic {
  font-style: italic;
  font-weight: 400;
  color: var(--color-primary-red);
}

/* Artist Row List */
.artist-sec-list {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.artist-sec-row {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 50px;
  align-items: center;
}

/* Alternating Grid Row Layout */
.artist-sec-row.artist-sec-reverse {
  grid-template-columns: 1.1fr 1fr;
}

.artist-sec-row.artist-sec-reverse .artist-sec-media-box {
  order: 2;
}

.artist-sec-row.artist-sec-reverse .artist-sec-content-box {
  order: 1;
}

/* Image Container */
.artist-sec-media-box {
  width: 100%;
  height: 480px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background-color: var(--color-bg-alt);
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.artist-sec-media-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.artist-sec-row:hover .artist-sec-media-box {
  border-color: var(--color-primary-red);
}

.artist-sec-row:hover .artist-sec-media-box img {
  transform: scale(1.03);
}

/* Text Content Area */
.artist-sec-content-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.artist-sec-name {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--text-primary);
  text-transform: uppercase;
  margin-top: 4px;
  margin-bottom: 20px;
}

.artist-sec-bio {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.artist-sec-bio:last-child {
  margin-bottom: 0;
}

/* Responsive Overrides */
@media (max-width: 992px) {
  .artist-sec-row,
  .artist-sec-row.artist-sec-reverse {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .artist-sec-row.artist-sec-reverse .artist-sec-media-box {
    order: 1;
  }

  .artist-sec-row.artist-sec-reverse .artist-sec-content-box {
    order: 2;
  }

  .artist-sec-media-box {
    height: 380px;
  }

  .artist-sec-main-title {
    font-size: 2.5rem;
  }

  .artist-sec-list {
    gap: 60px;
  }
}

@media (max-width: 576px) {
  .artist-sec-media-box {
    height: 300px;
    border-radius: 12px;
  }

  .artist-sec-name {
    font-size: 1.75rem;
  }

  .artist-sec-main-title {
    font-size: 2rem;
  }
}