/* CSS Variables */
:root {
    /* Colors - Premium Medical Palette */
    --primary: #d32f2f; /* Deep, accessible red */
    --primary-dark: #b71c1c; 
    --secondary: #1e293b; /* Dark slate instead of pure black for better eye comfort */
    --background: #f8fafc;
    --surface: #ffffff;
    --text-main: #0f172a;
    --text-muted: #64748b;
    --border: #e2e8f0;
    
    /* Typography */
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    
    /* Spacing & Sizes */
    --container-width: 1320px;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1);
    
    /* Transitions */
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-sans);
    background-color: var(--background);
    color: var(--text-main);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0.5rem;
}

/* --- Header Styles --- */
.header {
    background-color: var(--surface);
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 50;
}

.top-bar {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    gap: 1.5rem;
}

/* Logo Area - Marmara Medikal Brand Identity */
.logo {
    display: inline-flex;
    flex-direction: column;
    text-decoration: none;
    user-select: none;
}

.logo-top-row {
    display: flex;
    align-items: flex-end;
    position: relative;
}

.logo-icon {
    display: flex;
    align-items: flex-end;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    margin-right: -2px;
    width: auto;
    height: auto;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.35));
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.logo-pulse-svg {
    display: block;
    height: 40px;
    width: auto;
}

.logo-title-group {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    width: 100%;
}

.logo-title {
    font-size: 2.35rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    line-height: 0.95;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.35);
    white-space: nowrap;
    padding-left: 2px;
    margin-bottom: 2px;
}

.logo-line {
    height: 3.5px;
    background: #fbbf24;
    border-radius: 0 2px 2px 0;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    width: 100%;
    position: relative;
    z-index: 1;
}

.logo-slogan-row {
    display: flex;
    padding-left: calc(40px * (68 / 40) - 2px);
    margin-top: 3px;
}

.logo-slogan {
    font-size: 0.84rem;
    font-weight: 600;
    color: #ffffff;
    opacity: 0.95;
    letter-spacing: 0.01em;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
    white-space: nowrap;
    display: block;
    padding-left: 2px;
}

/* --- Header Services (Hizmetlerimiz) --- */
.header-services {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(0, 0, 0, 0.22);
    border: 1px solid rgba(251, 191, 36, 0.35);
    padding: 5px 14px 6px;
    border-radius: 8px;
    box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.25), 0 2px 8px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(4px);
}

.services-badge {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.25) 0%, rgba(245, 158, 11, 0.12) 100%);
    border: 1px solid rgba(251, 191, 36, 0.45);
    color: #fbbf24;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 2px 10px;
    border-radius: 20px;
    margin-bottom: 4px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.services-grid {
    display: grid;
    grid-template-columns: auto auto;
    column-gap: 14px;
    row-gap: 2px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.76rem;
    font-weight: 600;
    color: #ffffff;
    white-space: nowrap;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.service-item::before {
    content: "•";
    color: #fbbf24;
    font-size: 0.95rem;
    line-height: 1;
}

/* --- Header Contact --- */
.header-contact-box {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.contact-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 6px 14px;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    transition: all 0.2s ease;
}

.contact-pill:hover {
    background: rgba(0, 0, 0, 0.5);
    border-color: rgba(251, 191, 36, 0.45);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

.contact-phone-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #7f1d1d;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.contact-number {
    font-size: 1.15rem;
    font-weight: 800;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 0.2px;
    white-space: nowrap;
    transition: color 0.2s ease;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.contact-number:hover {
    color: #fbbf24;
}

.contact-sep {
    width: 1px;
    height: 18px;
    background: rgba(255, 255, 255, 0.25);
}

.contact-subtitle {
    font-size: 0.70rem;
    font-weight: 600;
    color: #fef08a;
    letter-spacing: 0.4px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    gap: 5px;
}

.contact-subtitle span.dot {
    width: 6px;
    height: 6px;
    background: #22c55e;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px #22c55e;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0% { transform: scale(0.95); opacity: 0.8; }
    50% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(0.95); opacity: 0.8; }
}

/* ================= PREMIUM MODERN NAVIGATION ================= */
.main-nav {
    background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 2px solid rgba(211, 47, 47, 0.85);
    box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.25);
    position: relative;
    z-index: 40;
}

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

.nav-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 2px;
    padding: 6px 0;
    margin: 0;
    list-style: none;
}

.nav-list li {
    display: flex;
    align-items: center;
    flex: 1 1 auto;
    justify-content: center;
}

.nav-list li:first-child {
    justify-content: flex-start;
}

.nav-list li:last-child {
    justify-content: flex-end;
}

.nav-list a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 0.85rem;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.84rem;
    letter-spacing: 0.35px;
    text-transform: uppercase;
    border-radius: 8px;
    transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    white-space: nowrap;
    text-decoration: none;
    border: 1px solid transparent;
    width: 100%;
    text-align: center;
}

.nav-list a:hover {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.09);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-1px);
}

.nav-list a.active {
    color: #ffffff;
    font-weight: 700;
    background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 14px rgba(211, 47, 47, 0.4);
}

.nav-list a.active:hover {
    background: linear-gradient(135deg, #e53935 0%, #c62828 100%);
    box-shadow: 0 6px 18px rgba(211, 47, 47, 0.5);
    transform: translateY(-1px);
}

.mobile-menu-btn {
    display: none;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 1.15rem;
    font-weight: 600;
    padding: 0.5rem;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.2s ease;
    width: auto;
}

.mobile-menu-btn:hover,
.mobile-menu-btn:focus-visible {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.4);
}

.mobile-menu-btn.is-active {
    background: rgba(255, 255, 255, 0.25);
    border-color: #fbbf24;
    color: #fbbf24;
    box-shadow: 0 0 10px rgba(251, 191, 36, 0.3);
}

/* Responsive Navigation */
@media (max-width: 1200px) {
    .nav-list a {
        padding: 0.55rem 0.5rem;
        font-size: 0.76rem;
        letter-spacing: 0.2px;
    }
}

@media (max-width: 1100px) {
    .top-bar-inner {
        justify-content: space-between;
        text-align: left;
    }
    .logo {
        gap: 0rem;
    }
    .header-services {
        display: none;
    }
}

@media (max-width: 768px) {
    .header {
        position: sticky;
        top: 0;
        z-index: 1000;
        background: transparent;
        box-shadow: none;
    }
    .top-bar {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }
    .top-bar-inner {
        position: relative;
        justify-content: center;
        align-items: center;
        padding: 0.4rem 0;
        min-height: 48px;
    }
    .header-services,
    .header-contact-box,
    .contact-inner {
        display: none;
    }
    .mobile-menu-btn {
        position: absolute;
        left: 8px;
        top: 50%;
        transform: translateY(-50%);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0.5rem;
        z-index: 100;
        pointer-events: auto;
        cursor: pointer;
    }
    .logo-wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    .logo {
        display: inline-flex;
        flex-direction: column;
    }
    .logo-top-row {
        display: flex;
        align-items: flex-end;
    }
    .logo-icon {
        margin-right: -2px;
    }
    .logo-pulse-svg {
        height: 25px;
    }
    .logo-title {
        font-size: 1.30rem;
        font-weight: 800;
        line-height: 0.95;
        letter-spacing: -0.01em;
        white-space: nowrap;
        padding-left: 1px;
        margin-bottom: 1px;
    }
    .logo-line {
        height: 2.2px;
        background: #fbbf24;
        border-radius: 0 2px 2px 0;
        width: 100%;
    }
    .logo-slogan-row {
        display: flex;
        padding-left: calc(25px * (68 / 40) - 2px);
        margin-top: 2px;
    }
    .logo-slogan {
        font-size: 0.58rem;
        font-weight: 600;
        letter-spacing: -0.01em;
        white-space: nowrap;
        opacity: 0.95;
        padding-left: 1px;
    }
}

@media (max-width: 380px) {
    .logo-pulse-svg {
        height: 22px;
    }
    .logo-title {
        font-size: 1.15rem;
    }
    .logo-line {
        height: 1.8px;
    }
    .logo-slogan-row {
        padding-left: calc(22px * (68 / 40) - 2px);
    }
    .logo-slogan {
        font-size: 0.51rem;
        padding-left: 1px;
    }
}

@media (max-width: 768px) {
    .main-nav {
        padding: 0;
        margin: 0;
        background: transparent;
        border: none;
        box-shadow: none;
    }
    .nav-container {
        padding: 0 !important;
        margin: 0 !important;
        max-width: 100% !important;
    }
    .nav-list {
        display: none;
        flex-direction: column;
        width: 100%;
        gap: 8px;
        padding: 12px 16px;
        background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
        border-bottom: 3px solid #b91c1c;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    .nav-list.active {
        display: flex !important;
        animation: navSlideDown 0.22s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }
    @keyframes navSlideDown {
        from {
            opacity: 0;
            transform: translateY(-8px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    .nav-list li {
        width: 100%;
        display: block;
    }
    .nav-list a {
        display: flex;
        width: 100%;
        box-sizing: border-box;
        padding: 0.85rem 1rem;
        font-size: 0.92rem;
        letter-spacing: 0.35px;
        justify-content: center;
        text-align: center;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.08);
    }
    .nav-list a:hover {
        background: rgba(255, 255, 255, 0.1);
    }
    .nav-list a.active {
        background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
        border-color: rgba(255, 255, 255, 0.25);
        box-shadow: 0 4px 14px rgba(211, 47, 47, 0.4);
    }
}

/* --- Main Content --- */
main {
    padding: 2.5rem 1.5rem 5rem;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Campaign Banner */
.campaign-banner {
    display: flex;
    background-color: var(--surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin-bottom: 5px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.banner-left {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 1.5rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 0 0 auto;
}

.banner-brand {
    font-size: 2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.banner-brand .arrow {
    font-size: 2.5rem;
    line-height: 1;
}

.banner-sub {
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.9;
}

.banner-right {
    padding: 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex: 1;
    overflow: hidden;
    min-width: 0;
}

.banner-badge {
    background-color: var(--primary);
    color: white;
    padding: 0.45rem 1.4rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.4px;
    margin-bottom: 0.75rem;
    box-shadow: 0 3px 10px rgba(211, 47, 47, 0.25);
    white-space: nowrap;
}

/* 2. Satır: Sola Kayan İlçe İsimleri (Infinite Ticker) */
.banner-ticker-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,1) 3%, rgba(0,0,0,1) 97%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,1) 3%, rgba(0,0,0,1) 97%, transparent 100%);
}

.banner-ticker-track {
    display: flex;
    white-space: nowrap;
    animation: bannerTicker 65s linear infinite;
    will-change: transform;
}

.banner-ticker-track:hover {
    animation-play-state: paused;
}

.banner-ticker-track span {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: 0.35px;
    padding-right: 0.5rem;
    flex-shrink: 0;
}

@keyframes bannerTicker {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.banner-locations {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.6;
}

/* Products Grid */
.products-section {
    margin-top: 0rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
}

/* Product Card */
.product-card {
    background-color: var(--surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05), 0 1px 3px rgba(0,0,0,0.1);
    transition: var(--transition);
    border: 1px solid var(--border);
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
    border-color: var(--primary);
}

.product-link {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Focus style for accessibility */
.product-link:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 2px;
    border-radius: var(--radius-lg);
}

.product-image-container {
    position: relative;
    background-color: #f1f5f9;
    overflow: hidden;
    border-bottom: 2px solid var(--border);
}

.product-image-placeholder {
    width: 100%;
    aspect-ratio: 1/1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-weight: 500;
    gap: 0.5rem;
}

.product-image {
    width: 100%;
    height: auto;
    display: block;
}

.product-content {
    padding: 0;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    align-items: stretch;
    text-align: center;
    justify-content: space-between;
}

.product-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: #1e3a8a; /* Deep blue from original design */
    padding: 1.25rem 1rem 1rem;
    margin-bottom: 0;
    line-height: 1.4;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
    color: #ffffff;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1.05rem 1.5rem;
    font-size: 0.98rem;
    font-weight: 700;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    cursor: pointer;
    width: 100%;
    margin-top: auto;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    font-family: var(--font-sans);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 4px 14px rgba(211, 47, 47, 0.35);
    position: relative;
}

.product-card:hover .btn-primary,
.btn-primary:hover {
    background: linear-gradient(135deg, #e53935 0%, #c62828 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), 0 6px 18px rgba(211, 47, 47, 0.5);
    color: #ffffff;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .campaign-banner {
        display: flex;
        flex-direction: column;
        margin-bottom: 5px;
        border-radius: var(--radius-md);
        overflow: hidden;
    }
    
    .banner-left {
        width: 100%;
        padding: 1.15rem 1.25rem;
        text-align: center;
        align-items: center;
        justify-content: center;
        border-radius: var(--radius-md) var(--radius-md) 0 0;
        box-sizing: border-box;
    }
    
    .banner-brand {
        font-size: 1.45rem;
        text-align: center;
        justify-content: center;
    }
    
    .banner-sub {
        font-size: 0.9rem;
        text-align: center;
        margin-top: 0.25rem;
    }
    
    .banner-right {
        width: 100%;
        padding: 1.15rem 0.75rem 1.35rem;
        box-sizing: border-box;
    }
    
    .banner-badge {
        font-size: 0.85rem;
        padding: 0.35rem 0.9rem;
        margin-bottom: 0.65rem;
    }
    
    .banner-ticker-track span {
        font-size: 0.92rem;
    }
    
    /* Ana sayfada mobilde üst başlık bloğunu gizleyip sadece ticker alanını göstermek için */
    .index-banner .banner-left {
        display: none;
    }
    
    .index-banner .banner-right {
        border-radius: var(--radius-md);
        padding: 0.95rem 0.75rem 1.05rem;
    }
}
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    .product-title {
        font-size: 0.85rem; /* Slightly smaller on mobile to fit */
        padding: 0.75rem 0.5rem 0.5rem;
        line-height: 1.35;
        margin-bottom: 0;
    }
    .btn-primary {
        padding: 0.85rem 0.5rem;
        font-size: 0.82rem;
        border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    }
    .product-content {
        padding: 0;
    }

    .info-section {
        padding: 1.5rem;
        margin-top: 1rem;
    }
    .info-container {
        font-size: 1rem;
    }
    .info-container h2 {
        font-size: 1.5rem;
    }
    .info-container h3 {
        font-size: 1.25rem;
    }
}

/* Info Section Styles */
.info-section {
    background-color: var(--surface);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 6px rgba(0,0,0,0.05), 0 1px 3px rgba(0,0,0,0.1);
    padding: 1rem;
    margin-top: 1rem;
    border: 1px solid var(--border);
}

.info-container {
    margin: 0 auto;
    color: var(--text-main);
    line-height: 1.8;
    font-size: 1.1rem;
}

.info-container h2 {
    color: var(--primary);
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #fee2e2;
}

.info-container h3 {
    color: #1e3a8a;
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.info-container p {
    margin-bottom: 1.25rem;
}

.info-container ul, .info-container ol {
    margin-bottom: 1.5rem !important;
    padding-left: 0 !important;
    list-style: none !important;
}

.info-container ul li {
    position: relative !important;
    padding-left: 1.75rem !important;
    margin-bottom: 1.25rem !important;
}

.info-container ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.65rem;
    width: 8px;
    height: 8px;
    background-color: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(211, 47, 47, 0.15);
}

.info-container ol li {
    margin-bottom: 0.75rem !important;
}

.info-container b {
    color: var(--text-dark);
}

.info-container blockquote {
    background-color: #f8fafc;
    border-left: 4px solid var(--primary);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-style: italic;
}

.info-container blockquote p {
    margin-bottom: 0;
}

.info-note {
    background-color: #fffbeb;
    border: 1px solid #fef3c7;
    padding: 1.25rem;
    border-radius: var(--radius-md);
    margin-top: 2rem;
    color: #92400e;
}

/* FAQ Accordion Styles */
.faq-item {
    background-color: var(--surface);
    border-radius: var(--radius-md);
    margin-bottom: 1.25rem;
    box-shadow: 0 3px 10px rgba(0,0,0,0.06);
    overflow: hidden;
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
}

details[open].faq-item {
    border-left-color: var(--primary);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.faq-summary {
    padding: 1.5rem 1.75rem;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--secondary);
    background-color: var(--surface);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none; /* Hide default triangle */
    transition: color 0.3s ease;
}

.faq-summary::-webkit-details-marker {
    display: none; /* Hide default triangle in Safari */
}

.faq-summary:hover {
    color: var(--primary);
}

details[open] .faq-summary {
    color: var(--primary);
    border-bottom: 1px solid #f1f5f9;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary);
    transition: transform 0.3s ease;
}

details[open] .faq-icon {
    transform: rotate(45deg);
}

.faq-content {
    padding: 1.75rem;
    background-color: #fcfcfc;
    color: var(--text-main);
}

/* Stats Section */
.stats-section {
    margin: 3.5rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.stat-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 1.75rem 1.5rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #d32f2f, #ef4444);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.09);
    border-color: rgba(211, 47, 47, 0.2);
}

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

.stat-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-icon {
    font-size: 2.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    border-radius: 16px;
    background: #f8fafc;
    margin-bottom: 0.75rem;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.08);
}

.stat-left h3 {
    color: #1e3a8a;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.35;
}

.stat-right p {
    color: #64748b;
    font-size: 0.88rem;
    line-height: 1.55;
    margin: 0;
}

/* Reviews Section */
.reviews-section {
    margin: 4rem 0 6rem;
}

.section-header {
    margin-bottom: 3rem;
    text-align: center;
}

.section-header h2 {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.header-line {
    width: 60px;
    height: 4px;
    background-color: var(--primary);
    margin: 0 auto;
    border-radius: 2px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.review-card {
    background-color: var(--surface);
    border-radius: var(--radius-md);
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    border: 1px solid var(--border);
}

.review-title {
    color: var(--secondary);
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.review-stars {
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.review-author {
    font-size: 1.1rem;
    color: var(--secondary);
    margin-bottom: 1rem;
    font-weight: 700;
}

.review-card p {
    color: var(--text-main);
    font-size: 0.95rem;
    line-height: 1.7;
    font-style: italic;
}

/* Rating Widget */
.rating-widget-section {
    margin: 2rem 0 3rem;
    text-align: center;
}

.rating-widget {
    display: inline-block;
    background-color: var(--surface);
    padding: 1.5rem 2.5rem;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 10px rgba(0,0,0,0.04);
    border: 1px solid var(--border);
}

.rating-stars {
    font-size: 2.2rem;
    color: #e2e8f0; /* empty star color */
    cursor: pointer;
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 0.75rem;
}

.rating-stars .star {
    transition: color 0.2s ease, transform 0.2s ease;
}

.rating-stars .star.active,
.rating-stars .star.hover {
    color: #f59e0b; /* yellow filled color */
}

.rating-stars .star:hover {
    transform: scale(1.15);
}

.rating-text {
    font-size: 1rem;
    color: var(--text-main);
}

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

.rating-thanks {
    margin-top: 1rem;
    color: #10b981;
    font-size: 0.95rem;
    font-weight: 500;
}

/* Media Queries for new sections */
@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr !important;
        gap: 0.85rem !important;
    }
    
    .stat-card {
        flex-direction: row !important;
        align-items: center !important;
        text-align: left !important;
        padding: 1.1rem 1.25rem !important;
        gap: 16px !important;
        border-radius: 14px !important;
    }
    
    .stat-card::before {
        top: 0 !important;
        bottom: 0 !important;
        left: 0 !important;
        right: auto !important;
        width: 4px !important;
        height: 100% !important;
        opacity: 1 !important;
    }
    
    .stat-left {
        width: 95px !important;
        min-width: 95px !important;
        max-width: 95px !important;
        flex-shrink: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        border-right: 1px solid rgba(0, 0, 0, 0.07) !important;
        padding-right: 12px !important;
        gap: 6px !important;
    }
    
    .stat-icon {
        width: 48px !important;
        height: 48px !important;
        font-size: 1.85rem !important;
        margin-bottom: 0 !important;
        flex-shrink: 0 !important;
        border-radius: 12px !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .stat-left h3 {
        font-size: 0.82rem !important;
        font-weight: 700 !important;
        color: #1e3a8a !important;
        margin: 0 !important;
        line-height: 1.25 !important;
        text-align: center !important;
    }
    
    .stat-right {
        flex: 1 !important;
        display: flex !important;
        align-items: center !important;
        text-align: left !important;
    }
    
    .stat-right p {
        font-size: 0.85rem !important;
        line-height: 1.48 !important;
        color: #475569 !important;
        margin: 0 !important;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    /* Footer Mobile */
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    .footer-col.text-center {
        align-items: center;
    }
    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-hours li {
        justify-content: center;
    }
    .footer-links a:hover {
        padding-left: 0;
        color: var(--primary);
    }
}

/* Footer Styles */
.site-footer {
    background-color: var(--secondary);
    color: #f8fafc;
    padding: 4rem 0 0;
    margin-top: 4rem;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}


.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-heading {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #ffffff;
    position: relative;
    display: inline-block;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 3px;
    background-color: var(--primary);
    border-radius: 2px;
}

.footer-col.text-center .footer-heading::after {
    left: 50%;
    transform: translateX(-50%);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-col.text-center {
    align-items: center;
    text-align: center;
}

.footer-socials {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-socials a {
    color: #ffffff;
    background-color: rgba(255,255,255,0.1);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.footer-socials a:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

.footer-hours {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-hours li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #cbd5e1;
    font-size: 0.95rem;
}

.check-icon {
    color: #10b981;
    font-weight: bold;
}

.dot-icon {
    color: #f59e0b;
    font-weight: bold;
}

.cross-icon {
    color: var(--primary);
    font-weight: bold;
}

.footer-bottom {
    background-color: #0f172a;
    padding: 1.5rem 0;
    text-align: center;
}

.payment-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.payment-badge {
    background: #ffffff;
    color: #0f172a;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.footer-note {
    font-size: 0.85rem;
    color: #94a3b8;
    margin-bottom: 0.5rem;
}

.footer-note a {
    color: var(--primary);
    text-decoration: underline;
    cursor: pointer;
}

.copyright {
    font-size: 0.85rem;
    color: #64748b;
}

/* Contact Cards Custom Design */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
    padding: 0 1.5rem;
}

.contact-card-custom {
    background-color: #DD3333;
    border-radius: 8px;
    padding: 1.5rem 1.5rem 1.5rem 3.5rem;
    position: relative;
    color: white;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 120px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.contact-card-icon {
    position: absolute;
    left: -25px;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background-color: #DD3333;
    border: 4px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.contact-card-custom h3 {
    color: white;
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
    font-weight: 700;
}

.contact-card-custom p, 
.contact-card-custom a {
    color: white !important;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    text-decoration: none;
    font-weight: 400;
}

.contact-card-custom a:hover {
    text-decoration: underline;
}

/* ================= LIQUID GLASS LIGHTBOX MODAL (GLOBAL) ================= */
.lightbox-modal {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle at 50% 40%, rgba(30, 41, 59, 0.88) 0%, rgba(15, 23, 42, 0.96) 100%);
    backdrop-filter: blur(28px) saturate(190%);
    -webkit-backdrop-filter: blur(28px) saturate(190%);
    z-index: 999999;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    user-select: none;
    -webkit-user-select: none;
    overflow: hidden;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
.lightbox-modal.active {
    opacity: 1;
    pointer-events: auto;
}

/* Liquid Glass Header Bar */
.lightbox-header {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px 10px;
    color: #ffffff;
    z-index: 10;
    box-sizing: border-box;
}
.lightbox-glass-capsule {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 8px 18px;
    border-radius: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}
.lightbox-counter {
    font-size: 0.92rem;
    font-weight: 700;
    color: #38bdf8;
    letter-spacing: 0.5px;
}
.lightbox-title {
    font-size: 0.95rem;
    font-weight: 500;
    color: #f1f5f9;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 400px;
}
.lightbox-close-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #ffffff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}
.lightbox-close-btn:hover {
    background: rgba(220, 38, 38, 0.85);
    border-color: rgba(239, 68, 68, 0.6);
    transform: scale(1.08) rotate(90deg);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

/* Lightbox Body (Swipe Viewport & Zoom Container) */
.lightbox-body {
    flex: 1;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 10px 20px;
    touch-action: none;
    box-sizing: border-box;
    user-select: none;
    -webkit-user-select: none;
}
.lightbox-img-wrapper {
    width: 100%;
    height: 100%;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    touch-action: none;
}
.lightbox-img-wrapper img {
    max-width: 90vw;
    max-height: 70vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 16px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.55));
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s ease;
    background: transparent;
    cursor: zoom-in;
    touch-action: none;
    will-change: transform;
    transform-origin: center center;
}

/* Lightbox Footer (Liquid Glass Dock) */
.lightbox-footer {
    width: 100%;
    padding: 10px 20px 30px;
    display: flex;
    justify-content: center;
    z-index: 10;
    box-sizing: border-box;
}
.lightbox-dock {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 24px;
    padding: 8px 14px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
    max-width: 95vw;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.lightbox-dock::-webkit-scrollbar {
    display: none;
}
.lightbox-thumb {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.25);
    overflow: hidden;
    cursor: pointer;
    opacity: 0.55;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.1);
}
.lightbox-thumb.active, .lightbox-thumb:hover {
    opacity: 1;
    border-color: #38bdf8;
    box-shadow: 0 0 16px rgba(56, 189, 248, 0.6);
    transform: scale(1.08);
}
.lightbox-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .lightbox-title { display: none; }
    .lightbox-header { padding: 15px 20px 5px; }
    .lightbox-thumb { width: 48px; height: 48px; border-radius: 8px; }
    .lightbox-dock { padding: 6px 10px; gap: 6px; }
    .lightbox-img-wrapper img {
        max-width: 94vw;
        max-height: 68vh;
    }
}

/* ================= BLOG CARDS (MATCHING PRODUCT CARD STANDARD) ================= */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-top: 1rem;
}

.blog-item {
    background-color: var(--surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05), 0 1px 3px rgba(0,0,0,0.1);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
    border-color: var(--primary);
}

.blog-item-img-wrap {
    width: 100%;
    height: 190px;
    overflow: hidden;
    background: #f1f5f9;
    border-bottom: 1px solid var(--border);
    display: block;
}

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

.blog-item:hover .blog-item-img {
    transform: scale(1.04);
}

.blog-item-content {
    padding: 1.25rem 1.25rem 1rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-item-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1e3a8a;
    line-height: 1.4;
    margin-bottom: 0.5rem;
    transition: color 0.2s ease;
}

.blog-item:hover .blog-item-title {
    color: var(--primary);
}

.blog-item-date {
    font-size: 0.8rem;
    color: #94a3b8;
    margin-bottom: 0.75rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
}

.blog-item-excerpt {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    flex-grow: 1;
}

.blog-item .btn-primary {
    margin-top: auto;
    width: 100%;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    text-align: center;
}

@media (max-width: 1200px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .blog-item-title {
        font-size: 1rem;
    }
}

/* ================= PREMIUM MODERN FOOTER ================= */
.site-footer {
    background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
    color: #e2e8f0;
    padding: 2.5rem 0 0;
    margin-top: 3.5rem;
    border-top: 3px solid var(--primary);
    position: relative;
}

/* Trust Badges Bar */
.footer-trust-bar {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 1.75rem;
    margin-bottom: 2rem;
}

.footer-trust-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    padding: 0.9rem 1.25rem;
    border-radius: 12px;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.trust-item:hover {
    transform: translateY(-2px);
    border-color: rgba(211, 47, 47, 0.4);
}

.trust-icon {
    font-size: 1.6rem;
    line-height: 1;
}

.trust-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.trust-text strong {
    color: #ffffff;
    font-size: 0.92rem;
    font-weight: 700;
}

.trust-text span {
    color: #94a3b8;
    font-size: 0.78rem;
    font-weight: 500;
}

.trust-text span a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* 4-Column Footer Container (Desktop) */
.footer-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1.25fr;
    gap: 1.75rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-heading {
    color: #ffffff;
    font-size: 1.08rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    margin-bottom: 0.85rem;
    position: relative;
    padding-bottom: 0.45rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2.5px;
    background: linear-gradient(90deg, #d32f2f, #ef4444);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.footer-links a {
    color: #cbd5e1;
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.2px;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-links a:hover {
    color: #ffffff;
    transform: translateX(3px);
}

.footer-socials {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 0.95rem;
}

.footer-socials a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-socials a:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px) scale(1.06);
    box-shadow: 0 4px 12px rgba(211, 47, 47, 0.4);
}

.footer-heading-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.85rem;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-heading-wrap .footer-heading {
    margin-bottom: 0;
}

/* Live Working Hours Status Badge */
.hours-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 20px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.hours-status-badge.open {
    background: rgba(34, 197, 94, 0.16);
    border: 1px solid rgba(34, 197, 94, 0.45);
    color: #4ade80;
}

.hours-status-badge.closed {
    background: rgba(239, 68, 68, 0.16);
    border: 1px solid rgba(239, 68, 68, 0.45);
    color: #f87171;
}

.status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    display: inline-block;
}

.hours-status-badge.open .status-dot {
    background: #22c55e;
    box-shadow: 0 0 8px #22c55e;
    animation: pulse-hours-green 2s infinite;
}

.hours-status-badge.closed .status-dot {
    background: #ef4444;
    box-shadow: 0 0 8px #ef4444;
}

@keyframes pulse-hours-green {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
    70% { transform: scale(1.15); box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.footer-hours {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 8px;
    overflow: hidden;
}

.footer-hours li {
    font-size: 0.86rem;
    font-weight: 600;
    color: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.40rem 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    box-sizing: border-box;
    transition: all 0.2s ease;
}

.footer-hours li:last-child {
    border-bottom: none;
}

.footer-hours li .day-left {
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-hours li .check-icon {
    color: #22c55e;
    font-weight: 800;
}

.footer-hours li .dot-icon {
    color: #f59e0b;
    font-weight: 800;
}

.footer-hours li .cross-icon {
    color: #ef4444;
    font-weight: 800;
}

.footer-hours li.closed-row {
    color: #94a3b8;
    background: rgba(239, 68, 68, 0.04);
}

/* Today Live Highlight */
.footer-hours li.is-today {
    background: rgba(251, 191, 36, 0.12);
    color: #ffffff;
    font-weight: 700;
    position: relative;
}

.footer-hours li.is-today.is-open {
    background: rgba(34, 197, 94, 0.14);
    border-left: 3px solid #22c55e;
}

.footer-hours li.is-today.is-closed {
    background: rgba(239, 68, 68, 0.14);
    border-left: 3px solid #ef4444;
}

.today-pill {
    font-size: 0.62rem;
    font-weight: 800;
    padding: 1px 5px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.2px;
    margin-left: 4px;
}

.is-open .today-pill {
    background: #22c55e;
    color: #064e3b;
}

.is-closed .today-pill {
    background: #ef4444;
    color: #ffffff;
}

/* Footer Bottom */
.footer-bottom {
    padding: 1.25rem 0 1.5rem;
    text-align: center;
    background: #090e17;
}

.payment-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-bottom: 0.85rem;
}

.payment-badge {
    background: #ffffff;
    color: #1e293b;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.15);
    letter-spacing: 0.2px;
}

.footer-note {
    font-size: 0.82rem;
    color: #94a3b8;
    margin-bottom: 0.4rem;
    line-height: 1.45;
}

.footer-note a {
    color: #38bdf8;
    cursor: pointer;
    text-decoration: underline;
}

.copyright {
    font-size: 0.78rem;
    color: #64748b;
    margin: 0;
}

/* Tablet (max-width: 1024px) */
@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.75rem;
    }
}

/* Mobile App Card Layout (max-width: 768px) */
@media (max-width: 768px) {
    .site-footer {
        padding: 1.5rem 0 0;
        margin-top: 2rem;
    }
    
    .footer-trust-bar {
        padding-bottom: 1.25rem;
        margin-bottom: 1.25rem;
    }
    
    .footer-trust-inner {
        grid-template-columns: 1fr;
        gap: 0.65rem;
    }
    
    .trust-item {
        padding: 0.65rem 0.9rem;
        gap: 10px;
        border-radius: 10px;
    }
    
    .trust-icon {
        font-size: 1.35rem;
    }
    
    .trust-text strong {
        font-size: 0.86rem;
    }
    
    .trust-text span {
        font-size: 0.74rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 0.85rem;
        padding-bottom: 1.5rem;
    }
    
    /* Modern Glass Card for each footer column on mobile */
    .footer-col {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 12px;
        padding: 1rem 0.85rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }
    
    .footer-heading {
        font-size: 0.98rem;
        margin-bottom: 0.75rem;
        padding-bottom: 0.35rem;
        text-align: left;
    }
    
    .footer-heading::after {
        left: 0;
        transform: none;
    }
    
    /* 2-Column Touch Grid for Links on Mobile */
    .footer-links {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.45rem;
    }
    
    .footer-links li {
        width: 100%;
    }
    
    .footer-links a {
        width: 100%;
        box-sizing: border-box;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.07);
        border-radius: 8px;
        padding: 0.55rem 0.6rem;
        font-size: 0.82rem;
        font-weight: 600;
        color: #e2e8f0;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        text-align: left;
        line-height: 1.25;
        transition: all 0.15s ease;
    }
    
    .footer-links a:active {
        background: rgba(211, 47, 47, 0.25);
        border-color: var(--primary);
        color: #ffffff;
        transform: scale(0.97);
    }
    
    .footer-socials {
        margin-top: 0.85rem;
        justify-content: center;
        gap: 10px;
    }
    
    .footer-socials a {
        width: 36px;
        height: 36px;
        background: rgba(255, 255, 255, 0.06);
    }
    
    .footer-hours {
        border-radius: 8px;
    }
    
    .footer-hours li {
        font-size: 0.82rem;
        padding: 0.35rem 0.6rem;
    }
    
    .payment-icons {
        gap: 4px;
    }
    
    .payment-badge {
        font-size: 0.68rem;
        padding: 2px 6px;
    }
}

/* ================= PRODUCT PAGE CTA ACTION BUTTONS ================= */
.cta-actions {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.cta-actions .cta-btn,
.product-info-col .cta-btn,
.cta-btn-phone,
.cta-btn-whatsapp {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    padding: 13px 26px !important;
    border-radius: 50px !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    text-align: center !important;
    width: auto !important;
    min-width: 210px !important;
    height: auto !important;
    transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1) !important;
    box-sizing: border-box !important;
    position: relative !important;
    overflow: hidden !important;
    letter-spacing: 0.2px !important;
}

.cta-actions .cta-btn svg,
.cta-btn-phone svg,
.cta-btn-whatsapp svg {
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

/* Phone Call Button (Red gradient + glow) */
.cta-btn-phone,
.cta-actions .cta-btn-phone {
    background: linear-gradient(135deg, #e11d48 0%, #be123c 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 16px rgba(225, 29, 72, 0.35) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
}

.cta-btn-phone:hover,
.cta-actions .cta-btn-phone:hover {
    background: linear-gradient(135deg, #be123c 0%, #9f1239 100%) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 24px rgba(225, 29, 72, 0.45) !important;
}

.cta-btn-phone:hover svg {
    transform: rotate(15deg) scale(1.1);
}

/* WhatsApp Button (Green gradient + glow) */
.cta-btn-whatsapp,
.cta-actions .cta-btn-whatsapp {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.35) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
}

.cta-btn-whatsapp:hover,
.cta-actions .cta-btn-whatsapp:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.45) !important;
}

.cta-btn-whatsapp:hover svg {
    transform: scale(1.12);
}

@media (max-width: 768px) {
    .cta-actions {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }
    .cta-actions .cta-btn,
    .cta-btn-phone,
    .cta-btn-whatsapp {
        width: 100% !important;
        min-width: 100% !important;
        padding: 14px 20px !important;
        font-size: 1.02rem !important;
    }
}
