/*
Theme Name: Taykon EAS
Theme URI: https://taykon.com.tr
Author: Taykon Team
Author URI: https://taykon.com.tr
Description: Custom WordPress theme converted from static HTML for Taykon EAS.
Version: 2.7
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: taykonaes
*/

:root {
    /* Brand Colors */
    --primary-navy: #1F2B3A;
    --accent-yellow: #F2B702;
    --light-grey: #F5F7FA;
    --text-dark: #1A1F26;
    --text-muted: #64748B;
    --white: #FFFFFF;

    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing & Borders */
    --section-padding: 100px 0;
    --container-width: 1200px;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;

    /* Shadows */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);

    /* Animations */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

html {
    overflow-x: hidden;
    width: 100%;
}

h1,
h2,
h3,
h4,
.brand-name {
    font-family: var(--font-heading);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* --- Layout Utility --- */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: var(--section-padding);
}

.flex {
    display: flex;
}

.align-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.grid {
    display: grid;
}

/* --- Navbar --- */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--white);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

header.scrolled {
    padding: 5px 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

header.scrolled .main-logo {
    height: 45px;
}

.nav-container {
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.main-logo {
    height: 60px;
    /* Adjust height as needed */
    width: auto;
    display: block;
}

.footer-logo-img {
    height: 50px;
    /* Adjust height for footer */
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
    /* If logo needs to be white in footer */
}

.nav-links .nav-menu-list {
    display: flex;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links .nav-menu-list>li {
    position: relative;
}

.nav-links .nav-menu-list a {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-navy);
    text-transform: uppercase;
    position: relative;
    padding: 8px 0;
    display: block;
}

.nav-links .nav-menu-list>li>a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-yellow);
    transition: width 0.3s ease;
}

.nav-links .nav-menu-list>li:hover>a::after,
.nav-links .nav-menu-list .current-menu-item>a::after,
.nav-links .nav-menu-list .current-menu-ancestor>a::after,
.nav-links .nav-menu-list .current-category-ancestor>a::after,
.nav-links .nav-menu-list a.active::after {
    width: 100%;
}

/* Premium Sub-menu Dropdown */
.nav-links .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 220px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: block !important;
}

.nav-links li:hover>.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-links .sub-menu li {
    width: 100%;
    list-style: none;
}

.nav-links .sub-menu a {
    padding: 10px 20px;
    text-transform: none;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-navy);
    transition: all 0.2s ease;
    display: block;
}

.nav-links .sub-menu a:hover {
    background: #F8FAFC;
    color: var(--accent-yellow);
    padding-left: 25px;
}

.nav-links .sub-menu a::after {
    display: none !important;
}

.nav-links a:hover {
    color: var(--primary-navy);
}

.nav-cta {
    padding: 10px 24px;
    background: #25D366;
    /* WhatsApp Green */
    color: var(--white);
    border-radius: 50px;
    /* Capsule shape */
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.nav-cta i {
    width: 18px;
    height: 18px;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.login-nav-btn {
    background: #121A2A;
}

.login-nav-btn:hover {
    background: var(--primary-navy);
}

/* User Dropdown Menu - Premium Design */
.user-dropdown-wrapper {
    position: relative;
}

.user-dropdown-trigger {
    cursor: pointer;
    border: none;
    outline: none;
    background: linear-gradient(135deg, var(--primary-navy) 0%, #2a3f54 100%);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    color: var(--white);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(31, 43, 58, 0.2);
    position: relative;
    overflow: hidden;
}

.user-dropdown-trigger::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(242, 183, 2, 0.3), transparent);
    transition: left 0.5s ease;
}

.user-dropdown-trigger:hover::before {
    left: 100%;
}

.user-dropdown-trigger:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(31, 43, 58, 0.3);
    background: linear-gradient(135deg, #2a3f54 0%, var(--primary-navy) 100%);
}

.user-dropdown-trigger .user-name {
    font-weight: 700;
    letter-spacing: 0.3px;
}

.user-dropdown-trigger i {
    width: 18px;
    height: 18px;
}

.user-dropdown-trigger .dropdown-icon {
    width: 16px;
    height: 16px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-left: -2px;
}

.user-dropdown-wrapper.active .user-dropdown-trigger {
    background: var(--primary-navy);
    box-shadow: 0 4px 20px rgba(242, 183, 2, 0.25);
}

.user-dropdown-wrapper.active .user-dropdown-trigger .dropdown-icon {
    transform: rotate(180deg);
}

.user-dropdown-menu {
    position: absolute;
    top: calc(100% + 16px);
    right: 0;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(31, 43, 58, 0.15),
        0 0 0 1px rgba(31, 43, 58, 0.05);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px) scale(0.95);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    overflow: hidden;
    border: 2px solid transparent;
}

.user-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -10px;
    right: 24px;
    width: 20px;
    height: 20px;
    background: var(--white);
    transform: rotate(45deg);
    box-shadow: -3px -3px 5px rgba(31, 43, 58, 0.04);
    z-index: -1;
}

.user-dropdown-wrapper.active .user-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    border-color: rgba(242, 183, 2, 0.15);
}

.user-dropdown-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 22px;
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 600;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(31, 43, 58, 0.06);
    position: relative;
    overflow: hidden;
}

.user-dropdown-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: var(--accent-yellow);
    transform: translateX(-3px);
    transition: transform 0.3s ease;
}

.user-dropdown-item:last-child {
    border-bottom: none;
}

.user-dropdown-item i {
    width: 20px;
    height: 20px;
    color: var(--text-muted);
    transition: all 0.25s ease;
}

.user-dropdown-item span {
    letter-spacing: 0.2px;
}

.user-dropdown-item:hover {
    background: linear-gradient(90deg, rgba(242, 183, 2, 0.08) 0%, rgba(242, 183, 2, 0.02) 100%);
    color: var(--primary-navy);
    padding-left: 26px;
}

.user-dropdown-item:hover::before {
    transform: translateX(0);
}

.user-dropdown-item:hover i {
    color: var(--accent-yellow);
    transform: scale(1.1);
}

.user-dropdown-item.logout {
    border-top: 2px solid rgba(31, 43, 58, 0.06);
    margin-top: 4px;
}

.user-dropdown-item.logout::before {
    background: #dc2626;
}

.user-dropdown-item.logout:hover {
    background: linear-gradient(90deg, rgba(220, 38, 38, 0.08) 0%, rgba(220, 38, 38, 0.02) 100%);
    color: #dc2626;
}

.user-dropdown-item.logout:hover i {
    color: #dc2626;
}

/* Animation when dropdown appears */
@keyframes dropdownSlideIn {
    0% {
        opacity: 0;
        transform: translateY(-15px) scale(0.95);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.user-dropdown-wrapper.active .user-dropdown-menu {
    animation: dropdownSlideIn 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Hero Section --- */
.hero {
    height: 100vh;
    background: var(--primary-navy);
    position: relative;
    overflow: hidden;
    color: var(--white);
}

.hero-slider,
.hero-slide {
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 1s;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hero-container {
    max-width: var(--container-width);
    /* Align with the header container (1200px) */
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-tagline {
    font-size: 14px;
    font-weight: 700;
    color: var(--accent-yellow);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-tagline::before {
    content: '';
    width: 40px;
    height: 2px;
    background: var(--accent-yellow);
}

.hero h1 {
    font-size: 72px;
    line-height: 1.05;
    margin-bottom: 24px;
    font-weight: 800;
}

.hero p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.hero-btns {
    display: flex;
    gap: 16px;
}

.btn {
    padding: 16px 32px;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-base);
    border: none;
}

.btn-primary {
    background: var(--accent-yellow);
    color: var(--primary-navy);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(242, 183, 2, 0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-navy);
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    /* Simplified Premium Overlay */
    background: linear-gradient(to right,
            rgba(31, 43, 58, 0.95) 0%,
            rgba(31, 43, 58, 0.6) 40%,
            transparent 100%);
    z-index: 2;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9);
    transition: transform 8s ease-out;
}



/* Subtle pan-zoom effect for background */
.hero-slide.active .hero-bg img {
    transform: scale(1.05);
}

/* Slide Content Animations */
.hero-slide.active .hero-tagline {
    animation: fadeInUp 0.8s ease forwards 0.2s;
    opacity: 0;
}

.hero-slide.active h1 {
    animation: fadeInUp 0.8s ease forwards 0.4s;
    opacity: 0;
}

.hero-slide.active p {
    animation: fadeInUp 0.8s ease forwards 0.6s;
    opacity: 0;
}

.hero-slide.active .hero-btns {
    animation: fadeInUp 0.8s ease forwards 0.8s;
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Global Scroll Reveal Classes --- */
.reveal,
.reveal-up,
.reveal-left,
.reveal-right,
.reveal-scale {
    will-change: auto;
    /* Respect browser optimizations */
}

.reveal,
.reveal-up {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right {
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.98);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.revealed {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
}

.reveal-fade {
    opacity: 0;
    transition: opacity 1.2s ease;
}

.reveal-fade.revealed {
    opacity: 1;
}

/* Staggered Delays */
.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

.reveal-delay-5 {
    transition-delay: 0.5s;
}

.hero-nav {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: var(--container-width);
    padding: 0 24px;
    display: flex;
    gap: 12px;
    z-index: 10;
    pointer-events: none;
    /* Allow clicks to pass to dots */
}

.hero-dot {
    pointer-events: auto;
    /* Enable clicks for dots */
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition-base);
}

.hero-dot.active {
    background: var(--accent-yellow);
    transform: scale(1.2);
}

.hero-dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

.hero-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    z-index: 10;
    pointer-events: none;
}

.hero-arrow {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-base);
    pointer-events: auto;
}

.hero-arrow:hover {
    background: var(--accent-yellow);
    color: var(--primary-navy);
    border-color: var(--accent-yellow);
    transform: scale(1.1);
}

.hero-arrow i {
    width: 24px;
    height: 24px;
}

/* --- Info Cards --- */
/* --- Info Section Redesign --- */
.info-section {
    padding: 100px 0;
    background: #FDFDFD;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.info-card {
    background: var(--white);
    padding: 35px 30px;
    border-radius: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    border: 2px solid transparent;
    /* Prepare for yellow border */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
    border-color: var(--accent-yellow);
}

.info-icon-box {
    width: 52px;
    height: 52px;
    background: #FFF7ED;
    /* Light orange/cream */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    color: #F97316;
    transition: all 0.4s ease;
}

.info-card:hover .info-icon-box {
    background: var(--accent-yellow);
    color: var(--primary-navy);
}

.info-icon-box i {
    width: 20px;
    height: 20px;
    stroke-width: 2.5px;
}

.info-card:hover .info-icon-box {
    background: var(--accent-yellow);
}

.info-card:hover .info-icon-box i {
    color: var(--white);
}

.info-card h3 {
    font-size: 22px;
    font-weight: 800;
    color: #101828;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.info-card p {
    font-size: 15px;
    color: #64748B;
    line-height: 1.7;
    margin: 0;
    font-weight: 500;
}

@media (max-width: 1024px) {
    .info-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 500px) {
    .info-grid {
        grid-template-columns: 1fr;
    }
}

.info-cta {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.info-cta .btn {
    padding: 18px 48px;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* --- Product Categories --- */
.categories-section {
    background: var(--light-grey);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header span {
    color: var(--accent-yellow);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.section-header h2 {
    font-size: 36px;
    margin: 12px 0 20px;
    color: var(--primary-navy);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 20px;
}

.category-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    background: #111;
}

.category-card.card-v1,
.category-card.card-v2 {
    grid-row: span 2;
    height: 100%;
}

.category-card.card-h1,
.category-card.card-h2 {
    height: 100%;
}

@media (max-width: 1024px) {
    .category-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .category-card.card-v1,
    .category-card.card-v2 {
        grid-row: span 1;
        height: 400px;
    }

    .category-card.card-h1,
    .category-card.card-h2 {
        height: 400px;
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .category-grid {
        grid-template-columns: 1fr;
    }

    .category-card.card-h1,
    .category-card.card-h2 {
        grid-column: span 1;
    }
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card:hover img {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    inset: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    color: var(--white);
}

.category-overlay h3 {
    font-size: 20px;
    color: var(--accent-yellow);
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.2;
    max-width: 250px;
}

.btn-category {
    background: var(--accent-yellow);
    color: var(--primary-navy);
    padding: 10px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    text-transform: none;
    transition: var(--transition-base);
}

.btn-category:hover {
    background: var(--white);
    transform: translateY(-2px);
}

/* --- Best Sellers --- */
.best-sellers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.product-card {
    background: var(--white);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    border: 1px solid #E2E8F0;
    transition: var(--transition-base);
}

.product-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--accent-yellow);
}

.product-img {
    height: 250px;
    background: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    position: relative;
    overflow: hidden;
}

.product-img img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
    transition: var(--transition-base);
}

.product-card:hover .product-img img {
    transform: scale(1.08);
}

.badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent-yellow);
    color: var(--primary-navy);
    font-size: 11px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
}

.product-info {
    padding: 24px;
}

.product-info h4 {
    margin-bottom: 8px;
    font-size: 16px;
}

.product-info p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* --- Success Stories (Reference Image Layout) --- */
.success-stories {
    background: #FFFFFF;
    padding: 100px 0;
    overflow: hidden;
}

.success-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.tag-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #F1F5F9;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 24px;
}

.success-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: #000;
    margin-bottom: 20px;
    line-height: 1.1;
}

.success-header p {
    font-size: 16px;
    color: #64748B;
    max-width: 600px;
}

.btn-brand-cta {
    background: var(--accent-yellow);
    color: var(--primary-navy);
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
}

.btn-brand-cta:hover {
    background: var(--primary-navy);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.trust-band-section {
    background: #FDFDFD;
    padding: 40px 0;
    border-top: 1px solid #F1F5F9;
    border-bottom: 1px solid #F1F5F9;
}

.trust-badges {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.badge-item img {
    height: 20px;
    width: auto;
    object-fit: contain;
    filter: brightness(0);
    /* Makes the logo solid black like the other icons */
    opacity: 0.8;
}

.badge-name {
    font-weight: 800;
    font-size: 16px;
    color: #101828;
    letter-spacing: -0.5px;
}

.badge-rating {
    font-weight: 600;
    font-size: 15px;
    color: #3B82F6;
    /* Premium blue for score */
}

.success-slider-container {
    position: relative;
    width: 100%;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--white);
    border: 1px solid #E2E8F0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-base);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.slider-nav:hover {
    background: var(--accent-yellow);
    color: var(--primary-navy);
    border-color: var(--accent-yellow);
}

.slider-nav.success-prev {
    left: -25px;
}

.slider-nav.success-next {
    right: -25px;
}

.success-slider {
    display: flex;
    gap: 40px;
    overflow-x: auto;
    padding: 24px 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
}

.success-slider::-webkit-scrollbar {
    display: none;
}

.success-card {
    flex: 0 0 calc(44% - 20px);
    /* Show 2 full cards and a hint of the 3rd */
    min-width: 440px;
    scroll-snap-align: start;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.success-img-box {
    position: relative;
    width: 100%;
    height: 320px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 30px;
    background: #F1F5F9;
}

.success-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.img-overlay-link {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    padding: 10px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    color: #000;
    display: flex;
    align-items: center;
    gap: 8px;
    transform: translateY(-10px);
    opacity: 0;
    transition: all 0.3s ease;
}

.success-card:hover .img-overlay-link {
    transform: translateY(0);
    opacity: 1;
}

.success-card:hover .success-img-box img {
    transform: scale(1.05);
}

.brand-name {
    font-size: 28px;
    font-weight: 900;
    text-transform: uppercase;
    color: #111;
    margin-bottom: 20px;
}

.success-quote {
    font-size: 18px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 24px;
    font-weight: 500;
}

.success-person {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}

.success-person strong {
    font-size: 16px;
    color: #1a1f26;
}

.success-person span {
    font-size: 14px;
    color: #94a3b8;
}

.success-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 10px;
}

.stat-item {
    background: #F8FAFC;
    /* Softer neutral background */
    padding: 12px 14px;
    border-radius: 14px;
    border: 1.5px solid #F1F5F9;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.3s ease;
    height: 100%;
}

.stat-item:hover {
    border-color: var(--accent-yellow);
    background: #FFF;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
}

.stat-value {
    font-size: 17px;
    font-weight: 900;
    color: var(--primary-navy);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4px;
    line-height: 1.1;
    margin-bottom: 4px;
}

.stat-value i {
    flex-shrink: 0;
    width: 14px;
    height: 14px;
    color: #10B981;
}

.stat-label {
    font-size: 10px;
    color: #64748B;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.3;
}

@media (max-width: 480px) {
    .success-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1024px) {
    .success-card {
        flex: 0 0 80%;
        min-width: 0;
    }

    .success-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }
}

/* --- Client Reviews (Google Style) --- */
.client-reviews {
    background: #F8FAFC;
    padding: 100px 0;
}

.reviews-slider-wrapper {
    position: relative;
    width: 100%;
    margin-top: 60px;
}

.slider-nav.review-prev {
    left: -25px;
}

.slider-nav.review-next {
    right: -25px;
}

.reviews-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 0 40px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
}

.reviews-slider::-webkit-scrollbar {
    display: none;
}

.review-card {
    flex: 0 0 450px;
    background: #FFFFFF;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    scroll-snap-align: start;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    height: 100%;
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.review-brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: #1a1f26;
    font-weight: 800;
    font-size: 18px;
    text-transform: uppercase;
}

.review-brand-logo i {
    color: var(--accent-yellow);
    width: 20px;
    height: 20px;
}

.review-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.review-stars i.fill {
    color: #FBBC04;
    /* Google Star Yellow */
    fill: #FBBC04;
    width: 18px;
    height: 18px;
}

.review-text {
    font-size: 16px;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 30px;
    font-weight: 500;
    flex-grow: 1;
}

.review-user {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid #F1F5F9;
    padding-top: 20px;
}

.review-user img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.user-info strong {
    display: block;
    font-size: 16px;
    color: #1a1f26;
}

.user-info span {
    font-size: 13px;
    color: #64748B;
}

.google-badge {
    position: absolute;
    bottom: 25px;
    right: 25px;
    font-size: 11px;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
}

.google-badge i {
    width: 12px;
    height: 12px;
}

@media (max-width: 768px) {
    .review-card {
        flex: 0 0 85vw;
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .testimonial-card {
        flex: 0 0 85vw;
        padding: 30px;
    }
}

/* --- Highlight Band (CTA) --- */
/* --- Highlight Band (Premium CTA) --- */
.section-cta-premium {
    background: #FFFFFF;
    padding: 60px 0;
}

.cta-premium-card {
    background: #101828;
    /* Deep Navy */
    background-image: radial-gradient(circle at 100% 0%, rgba(242, 183, 2, 0.05) 0%, transparent 40%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, transparent 100%);
    border-radius: 24px;
    padding: 60px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.1);
}

.cta-premium-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg width="400" height="400" viewBox="0 0 400 400" xmlns="http://www.w3.org/2000/svg"><path d="M0 400C150 400 250 300 400 0" stroke="rgba(255,255,255,0.03)" fill="none" /></svg>');
    background-size: 800px;
    opacity: 0.5;
    pointer-events: none;
}

.cta-premium-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.cta-premium-text h2 {
    font-size: 36px;
    color: #FFF;
    font-weight: 800;
    margin-bottom: 12px;
}

.cta-premium-text .text-yellow {
    color: var(--accent-yellow);
}

.cta-premium-text p {
    color: #94A3B8;
    font-size: 18px;
    max-width: 500px;
}

.cta-premium-form {
    width: 100%;
}

.form-group-inline {
    display: flex;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px;
    border-radius: 16px;
    gap: 8px;
}

.input-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    padding: 0 16px;
    border-radius: 10px;
}

.input-wrapper i {
    width: 18px;
    height: 18px;
    color: #64748B;
}

.input-wrapper input {
    background: transparent;
    border: none;
    color: #FFF;
    padding: 14px 0;
    width: 100%;
    font-size: 15px;
}

.input-wrapper input:focus {
    outline: none;
}

.form-notice {
    display: block;
    margin-top: 15px;
    font-size: 12px;
    color: #475569;
}

.btn-yellow {
    background: var(--accent-yellow);
    color: #101828;
    border: none;
    padding: 0 32px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.btn-yellow:hover {
    background: #FFF;
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .form-group-inline {
        flex-direction: column;
        background: transparent;
        border: none;
        padding: 0;
    }

    .input-wrapper {
        min-height: 56px;
    }

    .btn-yellow {
        padding: 18px;
        justify-content: center;
    }

    .cta-premium-card {
        padding: 40px;
        text-align: center;
    }

    .cta-premium-text p {
        margin: 0 auto;
    }
}

/* --- Blog Section (Premium) --- */
.blog-section {
    background: #FFFFFF;
    padding: 100px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.blog-card {
    background: #FFFFFF;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    border: 1px solid #F1F5F9;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
}

.blog-img {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-date {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(16, 24, 40, 0.8);
    backdrop-filter: blur(8px);
    color: #FFF;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
}

.blog-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-category {
    font-size: 11px;
    font-weight: 800;
    color: var(--accent-yellow);
    margin-bottom: 12px;
    letter-spacing: 1.5px;
}

.blog-card h3 {
    font-size: 20px;
    color: #101828;
    line-height: 1.4;
    margin-bottom: 15px;
    font-weight: 800;
}

.blog-card p {
    font-size: 15px;
    color: #64748B;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #101828;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
}

.blog-link i {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.blog-card:hover .blog-img img {
    transform: scale(1.1);
}

.blog-card:hover .blog-link {
    color: var(--accent-yellow);
}

.blog-card:hover .blog-link i {
    transform: translateX(5px);
}

@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Internal Blog Page Specifics --- */
.blog-page-hero {
    background: var(--primary-navy);
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.blog-page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 100% 0%, rgba(242, 183, 2, 0.1) 0%, transparent 40%);
}

.blog-page-hero h1 {
    color: white;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.blog-page-hero p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.blog-main-section {
    padding: 80px 0;
    background: #F8FAFC;
}

/* Pagination Styling */
.pagination-wrapper {
    margin-top: 60px;
    display: flex;
    justify-content: center;
}

.pagination {
    display: flex;
    gap: 10px;
    align-items: center;
}

.pagination .page-numbers {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    color: var(--primary-navy);
    font-weight: 700;
    transition: all 0.3s ease;
    text-decoration: none;
}

.pagination .page-numbers:hover {
    border-color: var(--accent-yellow);
    color: var(--accent-yellow);
    transform: translateY(-2px);
}

.pagination .page-numbers.current {
    background: var(--accent-yellow);
    border-color: var(--accent-yellow);
    color: var(--primary-navy);
}

.pagination .page-numbers.next,
.pagination .page-numbers.prev {
    width: auto;
    padding: 0 20px;
}

/* --- Footer --- */
footer {
    background: var(--primary-navy);
    color: var(--white);
    padding: 100px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.footer-logo {
    margin-bottom: 24px;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 24px;
}

.footer-links h4 {
    margin-bottom: 24px;
    font-size: 18px;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.footer-links ul li a:hover {
    color: var(--accent-yellow);
    padding-left: 8px;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
}

/* --- Floating Buttons --- */
.floating-container-left {
    position: fixed;
    bottom: 30px;
    left: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1000;
    pointer-events: none;
}

.floating-container-left.visible {
    pointer-events: auto;
}

.floating-container-left .float-btn {
    opacity: 0;
    visibility: hidden;
    transform: translateX(-30px);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-container-left.visible .float-btn {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.floating-container-left.visible .float-btn:nth-child(1) {
    transition-delay: 0.1s;
}

.floating-container-left.visible .float-btn:nth-child(2) {
    transition-delay: 0.2s;
}

.floating-container-left.visible .float-btn:nth-child(3) {
    transition-delay: 0.3s;
}

.floating-container-right {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    pointer-events: none;
}

.floating-container-right.visible {
    pointer-events: auto;
}

@media (max-width: 768px) {
    .floating-container-right {
        right: 20px;
        bottom: 20px;
    }
}

.floating-container-right .float-btn {
    opacity: 0;
    visibility: hidden;
    transform: translateX(30px);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@media (max-width: 768px) {
    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

.floating-container-right.visible .float-btn {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    transition: var(--transition-base), transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.float-btn:hover {
    transform: scale(1.1);
}

.float-wa {
    background: #25D366;
}

.float-offer {
    background: var(--accent-yellow);
    color: var(--primary-navy);
}

.float-call {
    background: var(--primary-navy);
}

.float-top {
    background: var(--white);
    color: var(--primary-navy);
    display: none;
}

.float-top.visible {
    display: flex;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .best-sellers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero {
        height: auto;
        padding: 120px 0 80px;
    }

    .hero h1 {
        font-size: 40px;
    }

    .nav-links {
        display: none;
    }

    .hero-bg {
        width: 100%;
        opacity: 0.2;
        right: 0;
    }

    .hero-bg::before {
        background: radial-gradient(circle at center, transparent, var(--primary-navy));
    }

    .info-grid,
    .category-grid,
    .best-sellers-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .soft-cta {
        flex-direction: column;
        padding: 40px;
        text-align: center;
        gap: 30px;
    }

    .cta-form {
        flex-direction: column;
        width: 100%;
    }

    .cta-form input {
        width: 100%;
    }

    .refs-container {
        grid-template-columns: 1fr;
    }
}

/* Footer CTA Buttons */
.footer-cta-btns {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition-base);
    text-decoration: none;
}

.footer-btn i {
    width: 18px;
    height: 18px;
}

.footer-wa {
    background: rgba(37, 211, 102, 0.1);
    color: #25D366;
    border: 1px solid rgba(37, 211, 102, 0.2);
}

.footer-wa:hover {
    background: #25D366;
    color: var(--white);
    transform: translateY(-2px);
}

.footer-tel {
    background: rgba(242, 183, 2, 0.1);
    color: var(--accent-yellow);
    border: 1px solid rgba(242, 183, 2, 0.2);
}

.footer-tel:hover {
    background: var(--accent-yellow);
    color: var(--primary-navy);
    transform: translateY(-2px);
}

/* --- Contact Page Styles --- */

/* Page Hero */
.page-hero {
    background: var(--primary-navy);
    padding: 180px 0 80px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(31, 43, 58, 0.8) 0%, var(--primary-navy) 100%);
    z-index: 1;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-subtitle {
    display: block;
    color: var(--accent-yellow);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 24px;
}

.page-hero p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
}

/* Contact Info Grid */
.contact-info-section {
    background: #F8FAFC;
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: -60px;
}

.contact-card {
    background: var(--white);
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    border: 1px solid #E2E8F0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(242, 183, 2, 0.3);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: #F1F5F9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--primary-navy);
    font-size: 24px;
    transition: all 0.3s ease;
}

.contact-card:hover .card-icon {
    background: var(--primary-navy);
    color: var(--accent-yellow);
}

.contact-card h3 {
    font-size: 16px;
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-card p {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 24px;
    font-weight: 500;
}

.card-link {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-navy);
    text-transform: uppercase;
    position: relative;
    padding-bottom: 5px;
    display: inline-block;
}

.link-underline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent-yellow);
    transition: width 0.3s ease;
}

.card-link:hover .link-underline {
    width: 50%;
}

@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Form Section */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.form-header h2 {
    font-size: 32px;
    color: var(--primary-navy);
    margin-bottom: 12px;
}

.form-header p {
    color: var(--text-muted);
    margin-bottom: 32px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
    color: var(--primary-navy);
}

.input-with-icon {
    position: relative;
}

.input-with-icon i,
.input-with-icon svg {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: #94A3B8;
}

.input-with-icon input,
.input-with-icon select,
textarea {
    width: 100%;
    padding: 14px 16px 14px 44px;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-dark);
    transition: all 0.3s ease;
    background: #F8FAFC;
}

textarea {
    padding: 16px;
    resize: vertical;
}

.input-with-icon input:focus,
.input-with-icon select:focus,
textarea:focus {
    outline: none;
    border-color: var(--accent-yellow);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(242, 183, 2, 0.1);
}

.btn-block {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

@media (max-width: 768px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Map Section */
.contact-map-wrapper {
    position: relative;
    height: 600px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-overlay-info {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--white);
    padding: 20px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 250px;
}

.overlay-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.overlay-item i {
    color: var(--accent-yellow);
    width: 20px;
    height: 20px;
    margin-top: 2px;
}

.overlay-item strong {
    display: block;
    color: var(--primary-navy);
    font-size: 14px;
}

.overlay-item p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
}

/* --- Reference Page Styles --- */

/* Stats Section */
.ref-stats-section {
    background: #F8FAFC;
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 0;
}

.stat-card {
    background: var(--white);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    /* Soft strong shadow */
    transition: transform 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-icon {
    color: var(--accent-yellow);
    margin-bottom: 15px;
}

.stat-icon i {
    width: 32px;
    height: 32px;
}

.stat-number {
    font-size: 32px;
    font-weight: 900;
    color: var(--primary-navy);
    line-height: 1.2;
    margin-bottom: 5px;
    font-family: var(--font-heading);
}

.stat-label {
    font-size: 13px;
    font-weight: 700;
    color: #94A3B8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Projects Section */
.project-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 60px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* Split View */
    align-items: center;
    border: 1px solid #F1F5F9;
}

.project-info {
    padding: 60px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Left align everything */
    text-align: center;
    justify-content: center;
    align-items: center;
}

.project-logo {
    height: 80px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-logo img {
    max-height: 100%;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.project-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 20px;
    line-height: 1.3;
    text-transform: uppercase;
}

.project-desc {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 90%;
}

.btn-quote-wa {
    background: var(--accent-yellow);
    color: var(--primary-navy);
    border-radius: 8px;
    padding: 14px 28px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-quote-wa:hover {
    background: #e5ac02;
    transform: translateY(-2px);
}

/* Project Slider */
.project-slider-wrapper {
    width: 100%;
    height: 500px;
    /* Fixed height for consistency */
    position: relative;
    background: #000;
    overflow: hidden;
}

.ref-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.ref-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.ref-slide.active {
    opacity: 1;
    z-index: 2;
}

.ref-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ref-slider-nav {
    position: absolute;
    bottom: 30px;
    right: 30px;
    display: flex;
    gap: 10px;
    z-index: 10;
}

.ref-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-navy);
    transition: all 0.3s ease;
}

.ref-nav-btn:hover {
    background: var(--accent-yellow);
}

.ref-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.ref-dot {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
}

.ref-dot.active {
    background: var(--accent-yellow);
    transform: scale(1.2);
}

/* Responsive */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        margin-top: -60px;
    }

    .project-card {
        grid-template-columns: 1fr;
    }

    .project-slider-wrapper {
        height: 350px;
        order: -1;
        /* Image on top on mobile */
    }
}

@media (max-width: 600px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .project-info {
        padding: 30px 20px;
    }
}

/* --- Floating Action Button (FAB) Left --- */
.fab-container-left {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 9990;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 15px;
}

@media (max-width: 992px) {
    .fab-container-left {
        left: 20px;
        bottom: 20px;
    }

    .fab-main-btn {
        width: 58px;
        height: 58px;
    }
}

@media (max-width: 768px) {
    .fab-main-btn {
        width: 52px;
        height: 52px;
    }

    .fab-icon-main,
    .fab-icon-close {
        width: 22px !important;
        height: 22px !important;
    }
}

@media (max-width: 480px) {
    .fab-main-btn {
        width: 48px;
        height: 48px;
    }

    .fab-icon-main,
    .fab-icon-close {
        width: 20px !important;
        height: 20px !important;
    }

    .fab-items {
        gap: 8px;
    }

    .fab-item {
        width: 44px;
        height: 44px;
    }
}

.fab-main-btn {
    width: 64px;
    height: 64px;
    background: var(--primary-navy);
    border-radius: 50%;
    color: var(--accent-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(31, 43, 58, 0.25), 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 2;
    border: 2px solid rgba(242, 183, 2, 0.1);
    /* Subtle yellow border ring */
}



/* Pulse Animation */
.fab-main-btn::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid var(--accent-yellow);
    opacity: 0;
    animation: fabPulse 2s infinite;
    pointer-events: none;
}

@keyframes fabPulse {
    0% {
        transform: scale(0.9);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 0;
    }

    100% {
        transform: scale(0.9);
        opacity: 0;
    }
}

.fab-main-btn:hover {
    transform: scale(1.05);
    background: #151e29;
    /* Slightly darker navy */
    box-shadow: 0 15px 35px rgba(31, 43, 58, 0.35);
    border-color: var(--accent-yellow);
}

.fab-icon-main,
.fab-icon-close {
    width: 28px;
    height: 28px;
    position: absolute;
    top: 50%;
    left: 50%;
    /* Use translate for perfect centering, combining with rotation logic below is key */
    transform-origin: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Default State */
.fab-icon-main {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(0) scale(1);
}

.fab-icon-close {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(-180deg) scale(0.5);
}

/* Active State */
.fab-container-left.active .fab-icon-main {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(180deg) scale(0.5);
}

.fab-container-left.active .fab-icon-close {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(0) scale(1);
    color: #ef4444;
}

/* Sub Items */
.fab-items {
    display: flex;
    flex-direction: column-reverse;
    /* Bottom to top */
    gap: 12px;
    margin-bottom: 10px;
}

.fab-item {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px) scale(0.5);
    visibility: hidden;
    transition: all 0.3s ease;
    background: #333;
}

.fab-item i {
    width: 20px;
    height: 20px;
}

/* Specific Colors */
.item-instagram {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
}

.item-whatsapp {
    background: #25D366;
}

.item-call {
    background: #0ea5e9;
}

.item-quote {
    background: var(--accent-yellow);
    color: var(--primary-navy);
}

/* Reveal Animation */
.fab-container-left.active .fab-item {
    opacity: 1;
    transform: translateY(0) scale(1);
    visibility: visible;
}

.fab-container-left.active .fab-item:nth-child(1) {
    transition-delay: 0.05s;
}

.fab-container-left.active .fab-item:nth-child(2) {
    transition-delay: 0.1s;
}

.fab-container-left.active .fab-item:nth-child(3) {
    transition-delay: 0.15s;
}

.fab-container-left.active .fab-item:nth-child(4) {
    transition-delay: 0.2s;
}

/* Tooltips */
.fab-item::after {
    content: attr(title);
    position: absolute;
    left: 60px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
    transform: translateX(-10px);
}

.fab-item:hover::after {
    opacity: 1;
    transform: translateX(0);
}

/* --- Mini Quote Form Popup --- */
.mini-quote-form {
    position: fixed;
    bottom: 110px;
    /* Sit right above the button */
    left: 30px;
    /* Align with the button */
    width: 300px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 9995;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.9);
    transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    overflow: visible;
    /* ALLOW ARROW */
    border: 1px solid #E2E8F0;
}

/* Speech Bubble Arrow */
.mini-quote-form::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 22px;
    /* Center of FAB (64/2=32) minus half arrow (10) = 22 */
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 10px 0 10px;
    border-color: white transparent transparent transparent;
    filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.05));
    z-index: 9996;
}

.mini-quote-form.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.mini-form-header {
    background: var(--primary-navy);
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.mini-form-header h4 {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
}

.mini-form-header button {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    display: flex;
}

.mini-form-header button:hover {
    color: white;
}

.mini-form-content {
    padding: 20px;
}

.form-group-mini {
    margin-bottom: 12px;
}

.form-group-mini input,
.form-group-mini textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #E2E8F0;
    border-radius: 6px;
    font-size: 13px;
    font-family: var(--font-body);
}

.form-group-mini textarea {
    resize: none;
}

.btn-mini-submit {
    width: 100%;
    background: var(--accent-yellow);
    color: var(--primary-navy);
    border: none;
    padding: 10px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-mini-submit:hover {
    background: #e5ac02;
}

/* Overlay for mobile mainly */
.mini-quote-form-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9991;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.mini-quote-form-overlay.active {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 480px) {
    .mini-quote-form {
        left: 20px;
        right: 20px;
        bottom: 110px;
        width: auto;
    }
}

/* --- Reference Page Tab System --- */
.ref-tabs-section {
    padding: 20px 0 60px;
    background: #F8FAFC;
    margin-top: -30px;
    /* Pull closer to stats */
    position: relative;
    z-index: 5;
}

.ref-tabs-control {
    display: flex;
    justify-content: center;
    gap: 20px;
    background: white;
    padding: 10px;
    border-radius: 50px;
    width: fit-content;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #E2E8F0;
}

.ref-tab-btn {
    padding: 12px 30px;
    border-radius: 40px;
    border: none;
    background: transparent;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ref-tab-btn i {
    width: 18px;
    height: 18px;
}

.ref-tab-btn.active {
    background: var(--primary-navy);
    color: var(--accent-yellow);
    box-shadow: 0 4px 12px rgba(31, 43, 58, 0.2);
}

.ref-tab-btn:hover:not(.active) {
    color: var(--primary-navy);
    background: #F1F5F9;
}

/* Tab Content Visibility */
.ref-tab-content {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.ref-tab-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* All References (Logos) Grid */
.ref-logos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding: 40px 0;
}

.ref-logo-item {
    background: white;
    height: 140px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    border: 1px solid #F1F5F9;
    transition: all 0.3s ease;
    padding: 20px;
}

.ref-logo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    border-color: rgba(242, 183, 2, 0.3);
}

.ref-logo-item img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.ref-logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Bottom CTA for Tabs */
.ref-bottom-cta {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: var(--primary-navy);
    border-radius: 20px;
    color: white;
}

.ref-bottom-cta p {
    font-size: 20px;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 1024px) {
    .ref-logos-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .ref-logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* --- Form Mode for FAB (When Form is Open) --- */
/* Hide sub-items when form is open */
.fab-container-left.form-mode .fab-items {
    display: none !important;
}

/* Force Close Icon when form is open */
.fab-container-left.form-mode .fab-icon-main {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(180deg) scale(0.5);
}

.fab-container-left.form-mode .fab-icon-close {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(0) scale(1);
    color: #ef4444;
}

/* Active State for Button to Match Form */
.fab-container-left.form-mode .fab-main-btn {
    background: white;
    border-color: #E2E8F0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* In form mode, close icon should probably be Navy or Red, not yellow if background is white */
.fab-container-left.form-mode .fab-icon-close {
    color: var(--primary-navy);
}

/* --- Product Detail Premium Upgrade (v3) --- */
.product-detail-premium {
    padding-top: 150px;
    padding-bottom: 120px;
    background-color: #F8FAFC;
    color: var(--primary-navy);
}

/* Breadcrumbs */
.pro-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.pro-breadcrumbs a {
    transition: var(--transition-fast);
}

.pro-breadcrumbs a:hover {
    color: var(--accent-yellow);
}

.pro-breadcrumbs i {
    width: 14px;
    height: 14px;
    color: #CBD5E1;
}

.pro-breadcrumbs .active {
    color: var(--primary-navy);
}

.product-hero-section {
    display: grid !important;
    grid-template-columns: 55% 45% !important;
    gap: 50px;
    margin-bottom: 80px;
    align-items: start;
    width: 100%;
}

.title-area {
    grid-column: 2;
    grid-row: 1;
    margin-bottom: 20px;
}

.product-visuals {
    grid-column: 1;
    grid-row: 1 / span 3;
    width: 100% !important;
}

.product-essential {
    grid-column: 2;
    grid-row: 2;
}

/* Gallery & Thumbnails */
.gallery-container {
    display: grid !important;
    grid-template-columns: 100px 1fr !important;
    /* Slightly slimmer thumb col */
    gap: 30px;
    height: auto;
}

.thumbnail-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.thumb-item {
    cursor: pointer;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #E2E8F0;
    transition: all 0.3s ease;
    aspect-ratio: 1/1;
    background: #FFFFFF;
    width: 80px;
    /* Fixed width thumbnails */
    height: 80px;
}

.thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 5px;
}

.thumb-item.active {
    border-color: var(--accent-yellow);
}

.main-stage {
    background: #FFFFFF;
    border-radius: 32px;
    position: relative;
    box-shadow: 0 30px 60px rgba(31, 43, 58, 0.06);
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 30px !important;
    /* Increased padding for better framing */
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.02);
    width: 100%;
    aspect-ratio: 1 / 1;
    /* Fixed square aspect ratio */
    max-height: 600px;
}


.premium-badge {
    position: absolute;
    top: 24px;
    left: 24px;
    background: rgba(31, 43, 58, 0.04);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
    border: 1px solid rgba(31, 43, 58, 0.1);
}

.premium-badge i {
    width: 14px;
    height: 14px;
    color: var(--accent-yellow);
}

.image-zoom-area {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.slider-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease-out;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.05));
    mix-blend-mode: multiply;
}



/* Gallery Navigation Arrows */
.gallery-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
    z-index: 15;
    pointer-events: none;
}

.nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #1f2b3a;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    pointer-events: auto;
}

.nav-btn:hover {
    background: #f2b702;
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(242, 183, 2, 0.3);
    border-color: transparent;
}

.nav-btn i {
    width: 20px;
    height: 20px;
}

.nav-btn.prev:active {
    transform: scale(0.9) translateX(-4px);
}

.nav-btn.next:active {
    transform: scale(0.9) translateX(4px);
}


/* Info Summary */
.product-essential {
    padding-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Force left alignment for all children */
}

.entry-title {
    font-size: 32px;
    line-height: 1.25;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    font-weight: 700;
    text-align: left;
}

.product-tagline {
    font-size: 16px;
    line-height: 1.6;
    color: #64748b;
    margin: 0 0 16px;
    max-width: 600px;
}

.sku {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 40px;
    text-align: left;
}


.sku span {
    color: var(--primary-navy);
}

/* Meta Cards */
.meta-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}


.meta-card {
    background: #FFFFFF;
    padding: 16px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid #F1F5F9;
}

.meta-card.highlight {
    background: #FEFCE8;
    border-color: #FEF08A;
}

.card-icon {
    width: 36px;
    height: 36px;
    background: var(--light-grey);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-navy);
}

.card-icon i {
    width: 18px;
    height: 18px;
}

.meta-card.highlight .card-icon {
    background: var(--accent-yellow);
    color: var(--primary-navy);
}

.card-text {
    display: flex;
    flex-direction: column;
}

.card-text .cap {
    font-size: 10px;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 700;
    letter-spacing: 1px;
}

.card-text .val {
    font-size: 14px;
    font-weight: 800;
}

/* Excerpt */
.pro-excerpt {
    font-size: 16px;
    line-height: 1.8;
    color: #4A5568;
    margin-bottom: 40px;
    padding: 0;
    max-width: 100%;
    overflow-wrap: break-word;
    /* Prevents overflow of long words */
    word-wrap: break-word;
    word-break: break-word;
}


/* Trust Bar */
.trust-check-bar {
    grid-column: 2;
    /* Align with main image (2nd col) */
    display: flex;
    justify-content: space-between;
    /* Spread items across the image width */
    gap: 20px;
    margin-top: 0px;
    padding: 16px 0;
    border-top: 1px solid #F1F5F9;
    border-bottom: 1px solid #F1F5F9;
}


.check-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #059669;
}

.check-item i {
    width: 16px;
    height: 16px;
}

/* Action Stack */
.action-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cta-prime {
    display: flex;
    align-items: center;
    padding: 20px 32px;
    border-radius: 20px;
    gap: 20px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}

.cta-prime.whatsapp {
    background: #25D366;
    color: #FFFFFF;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.2);
}

.cta-prime.phone {
    background: var(--accent-yellow);
    color: var(--primary-navy);
    box-shadow: 0 10px 25px rgba(242, 183, 2, 0.2);
}

.cta-prime:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.cta-prime i {
    width: 32px;
    height: 32px;
}

.cta-prime div {
    display: flex;
    flex-direction: column;
}

.cta-prime strong {
    font-size: 20px;
}

.cta-prime span {
    font-size: 13px;
    opacity: 0.9;
    font-weight: 500;
}

.cta-note {
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

/* Value Proposition */
.value-proposition {
    margin-bottom: 100px;
    padding: 80px;
    background: #FFFFFF;
    border-radius: 40px;
    box-shadow: 0 20px 60px rgba(31, 43, 58, 0.03);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 32px;
    margin-bottom: 12px;
}

.section-title p {
    color: var(--text-muted);
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.value-card {
    text-align: center;
}

.v-icon {
    width: 64px;
    height: 64px;
    background: #F1F5F9;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--accent-yellow);
    transition: 0.3s;
}

.value-card:hover .v-icon {
    background: var(--primary-navy);
    transform: rotate(10deg);
}

.value-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.value-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Tabs Styling */
.product-details-tabs {
    background: #FFFFFF;
    border-radius: 40px;
    overflow: hidden;
    margin-bottom: 80px;
    box-shadow: 0 20px 60px rgba(31, 43, 58, 0.03);
}

.tabs-header {
    display: flex;
    background: #F8FAFC;
    border-bottom: 1px solid #F1F5F9;
}

.t-btn {
    padding: 30px 40px;
    border: none;
    background: transparent;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 15px;
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.t-btn.active {
    color: var(--primary-navy);
    background: #FFFFFF;
}

.t-btn.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-yellow);
}

.t-btn i {
    width: 18px;
    height: 18px;
}

.tabs-body {
    padding: 80px;
}

.t-pane {
    display: none;
    animation: fadeInTab 0.5s ease;
}

.t-pane.active {
    display: block;
}

@keyframes fadeInTab {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Zebra Table */
.zebra-table {
    width: 100%;
    border-collapse: collapse;
}

.zebra-table tr:nth-child(odd) {
    background: #F8FAFC;
}

.zebra-table td {
    padding: 20px 30px;
    font-size: 15px;
}

.zebra-table td:first-child {
    font-weight: 700;
    color: var(--text-muted);
    width: 30%;
}

.zebra-table td:last-child {
    font-weight: 800;
    color: var(--primary-navy);
}

/* Dist Grid Premium */
.dist-grid-premium {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.d-item {
    background: #F8FAFC;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border: 1px solid #F1F5F9;
}

.d-item strong {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.d-item span {
    font-size: 28px;
    font-weight: 900;
    color: var(--accent-yellow);
}

/* Rich Description */
.rich-description {
    max-width: 800px;
    line-height: 2;
    font-size: 17px;
    color: #4A5568;
}

/* Pre-footer CTA */
.pre-footer-cta {
    margin-bottom: 80px;
}

.cta-box {
    background: var(--primary-navy);
    padding: 80px;
    border-radius: 40px;
    text-align: center;
    color: #FFFFFF;
}

.cta-box h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.cta-box p {
    font-size: 18px;
    opacity: 0.8;
    margin-bottom: 40px;
}

.cta-btn {
    display: inline-block;
    background: var(--accent-yellow);
    color: var(--primary-navy);
    padding: 20px 48px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 18px;
    text-decoration: none;
    transition: 0.3s;
}

.cta-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(242, 183, 2, 0.4);
}

/* Responsive Premium Upgrade */
@media (max-width: 1200px) {
    .product-hero-section {
        gap: 40px;
    }

    .entry-title {
        font-size: 36px;
    }

    .gallery-container {
        min-height: 600px;
        height: auto;
    }

    .value-proposition,
    .tabs-body,
    .cta-box {
        padding: 40px;
    }
}

@media (max-width: 992px) {
    .product-hero-section {
        grid-template-columns: 1fr;
    }

    .value-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .gallery-container {
        flex-direction: column-reverse;
        height: auto;
    }

    .thumbnail-list {
        flex-direction: row;
        width: 100%;
        height: 80px;
    }

    .main-stage {
        min-height: 500px;
        height: auto;
    }

    .meta-cards-grid {
        grid-template-columns: 1fr;
    }

    .dist-grid-premium {
        grid-template-columns: 1fr 1fr;
    }

    .tabs-header {
        overflow-x: auto;
    }

    .t-btn {
        padding: 20px;
        white-space: nowrap;
    }
}

@media (max-width: 480px) {
    .dist-grid-premium {
        grid-template-columns: 1fr;
    }
}

/* --- Auth Pages (Login / Register) --- */
.auth-page {
    background: var(--light-grey);
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 80px;
    /* Top padding to clear fixed header */
}

.auth-container {
    width: 100%;
    max-width: 500px;
}

.auth-card {
    background: var(--white);
    padding: 48px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.auth-header {
    text-align: center;
    margin-bottom: 32px;
}

.auth-header h1 {
    font-size: 32px;
    color: var(--primary-navy);
    margin-bottom: 8px;
}

.auth-header p {
    color: var(--text-muted);
    font-size: 16px;
}

.auth-form .form-group {
    margin-bottom: 24px;
}

.auth-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
}

.auth-form .form-row .form-group {
    margin-bottom: 0;
}

.auth-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 8px;
}

.auth-form input[type="text"],
.auth-form input[type="email"],
.auth-form input[type="password"],
.auth-form input[type="number"] {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #E2E8F0;
    border-radius: var(--border-radius-md);
    font-family: var(--font-body);
    font-size: 15px;
    transition: var(--transition-base);
}

.auth-form input:focus {
    outline: none;
    border-color: var(--accent-yellow);
    box-shadow: 0 0 0 4px rgba(242, 183, 2, 0.1);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    font-size: 14px;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: var(--text-muted);
}

.forgot-pass {
    color: var(--accent-yellow);
    font-weight: 600;
}

.btn-auth {
    width: 100%;
    background: var(--primary-navy);
    color: var(--white);
    border: none;
    padding: 16px;
    border-radius: var(--border-radius-md);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-base);
}

.btn-auth:hover {
    background: #2D3E52;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.auth-footer {
    margin-top: 24px;
    text-align: center;
    font-size: 14px;
    color: var(--text-muted);
}

.auth-footer a {
    color: var(--accent-yellow);
    font-weight: 700;
}

.auth-alert {
    padding: 14px 16px;
    border-radius: var(--border-radius-md);
    margin-bottom: 24px;
    font-size: 14px;
    font-weight: 500;
}

.auth-alert.error {
    background: #FFF5F5;
    color: #C53030;
    border: 1px solid #FEB2B2;
}

.auth-alert.success {
    background: #F0FFF4;
    color: #2F855A;
    border: 1px solid #9AE6B4;
}

@media (max-width: 600px) {
    .auth-form .form-row {
        grid-template-columns: 1fr;
    }

    .auth-card {
        padding: 32px 24px;
    }
}

/* --- Quote Request Page & CTA --- */
.quote-page .quote-container {
    max-width: 700px;
}

.action-stack .cta-prime.quote {
    background: #00D26A;
    /* Fresh Green for Quote */
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    border-radius: var(--border-radius-md);
    transition: var(--transition-base);
}

.action-stack .cta-prime.quote:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 210, 106, 0.2);
    filter: brightness(1.05);
}

.action-stack .cta-prime.quote i {
    width: 32px;
    height: 32px;
    stroke-width: 1.5;
}

.action-stack .cta-prime.quote strong {
    display: block;
    font-size: 20px;
    font-weight: 800;
}

.action-stack .cta-prime.quote span {
    font-size: 14px;
    opacity: 0.9;
}

.form-section-title {
    font-size: 18px;
    color: var(--primary-navy);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--light-grey);
}

.quote-product-display {
    background: #F8FAFC;
    padding: 20px;
    border-radius: var(--border-radius-md);
    border: 1px solid #E2E8F0;
    margin-bottom: 30px;
}

.q-prod-box {
    display: flex;
    align-items: center;
    gap: 20px;
}

.q-prod-box img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 12px;
}

.q-prod-info strong {
    font-size: 18px;
    display: block;
    margin-bottom: 4px;
}

.q-prod-info span {
    color: var(--text-muted);
    font-size: 14px;
}

/* --- Mobile Menu & Responsive Improvements --- */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--primary-navy);
    cursor: pointer;
    padding: 8px;
}

@media (max-width: 1024px) {
    header .container {
        padding: 0 20px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: var(--white);
        padding: 100px 40px;
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
        z-index: 1001;
        display: flex;
        flex-direction: column;
        overflow-y: auto;
    }

    header.nav-active .nav-links {
        right: 0;
    }

    /* Overlay for mobile menu */
    header::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(15, 23, 42, 0.6);
        backdrop-filter: blur(4px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 1000;
    }

    header.nav-active::after {
        opacity: 1;
        visibility: visible;
    }

    .nav-links .nav-menu-list {
        flex-direction: column;
        gap: 25px !important;
        width: 100%;
    }

    .nav-links .nav-menu-list li {
        width: 100%;
    }

    .nav-links .nav-menu-list a {
        font-size: 18px;
        font-weight: 700;
        padding: 10px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        width: 100%;
    }

    .nav-links .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        display: block !important;
        box-shadow: none;
        padding-left: 20px;
        transform: none;
        background: rgba(0, 0, 0, 0.02);
        margin-top: 10px;
        border-radius: 8px;
        border: none;
        max-height: none;
    }

    .mobile-menu-toggle {
        display: block;
        z-index: 1002;
    }

    .nav-cta {
        padding: 8px 16px;
        font-size: 13px;
    }

    .user-name {
        display: none;
    }
}

/* Homepage Responsiveness */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }

    .hero h1 {
        font-size: 60px;
    }
}

@media (max-width: 992px) {
    .best-sellers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .success-top {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .hero h1 {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .hero-slide {
        text-align: center;
        padding: 120px 0 60px;
    }

    .hero {
        height: auto;
        min-height: 100vh;
    }

    .hero h1 {
        font-size: 36px !important;
        line-height: 1.2;
    }

    .hero p {
        font-size: 16px;
        padding: 0 10px;
    }

    .hero-bg::before {
        background: radial-gradient(circle at center, rgba(31, 43, 58, 0.8) 0%, rgba(31, 43, 58, 0.95) 100%);
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-tagline {
        justify-content: center;
        margin-bottom: 16px;
    }

    .hero-tagline::before {
        display: none;
    }

    .hero-btns {
        justify-content: center;
        flex-direction: column;
        gap: 12px;
        padding: 0 20px;
    }

    .hero-btns .btn {
        width: 100%;
    }

    .hero-arrows {
        display: none;
        /* Hide arrows on mobile to focus on content */
    }

    .hero-nav {
        bottom: 30px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .info-section,
    .section,
    .client-reviews,
    .blog-section {
        padding: 60px 0;
    }

    .cta-premium-card {
        padding: 30px 20px;
    }

    .cta-form-grid .form-group-inline {
        flex-direction: column;
    }

    .cta-premium-text h2 {
        font-size: 28px;
    }

    .success-img-box {
        height: 240px;
    }

    .brand-name {
        font-size: 22px;
    }

    .success-quote {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .best-sellers-grid {
        grid-template-columns: 1fr;
    }

    .trust-badges {
        flex-direction: column;
        gap: 20px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Pages Mobile Optimization (Comprehensive)
   ========================================================================== */

/* 1. Global Container Adjustments */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .section {
        padding: 60px 0;
    }

    /* Ensure tables don't break layout */
    table {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    /* Generic scrollable wrappers */
    .premium-table-wrapper,
    .quote-table-wrapper,
    .table-responsive {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin-bottom: 20px;
    }

    /* Force images to stay within bounds */
    img {
        max-width: 100% !important;
        height: auto !important;
    }
}

/* 2. Products Archive Page */
@media (max-width: 992px) {
    .products-archive-premium .archive-layout {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }

    .products-archive-premium .archive-sidebar {
        order: 2;
        /* Sidebar below content on mobile */
        display: none;
        /* User requested "design changing without" but usually sidebar is hidden or moved. I'll hide for now as per archive-product.php pattern */
    }

    .archive-hero h1 {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .products-premium-grid {
        grid-template-columns: 1fr !important;
    }

    .pro-img-box {
        height: 220px;
    }

    .pro-title {
        font-size: 16px;
    }
}

/* 3. Single Product Page - Premium Mobile Upgrade */
@media (max-width: 992px) {
    .product-detail-premium {
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .product-detail-premium .product-hero-section {
        display: flex !important;
        flex-direction: column !important;
        gap: 30px !important;
    }

    .product-detail-premium .title-area {
        order: 1 !important;
        width: 100% !important;
        text-align: center;
        margin-bottom: 10px !important;
    }

    .product-detail-premium .product-visuals {
        order: 2 !important;
        width: 100% !important;
    }

    .product-detail-premium .product-essential {
        order: 3 !important;
        width: 100% !important;
        align-items: center;
    }

    .product-detail-premium .gallery-container {
        grid-template-columns: 1fr !important;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .product-detail-premium .entry-title {
        font-size: 28px;
        text-align: center;
        width: 100% !important;
    }

    .product-detail-premium .sku {
        text-align: center;
        width: 100% !important;
        margin-bottom: 20px !important;
    }

    .product-detail-premium .pro-excerpt {
        text-align: center;
    }
}

@media (max-width: 768px) {

    /* Breadcrumbs - Truly Responsive */
    .product-detail-premium .pro-breadcrumbs {
        display: flex;
        flex-wrap: nowrap;
        white-space: nowrap;
        overflow-x: auto;
        padding: 5px 0 15px;
        margin-bottom: 20px;
        -webkit-overflow-scrolling: touch;
        gap: 8px;
        justify-content: flex-start;
        mask-image: linear-gradient(to right, black 90%, transparent 100%);
    }

    .product-detail-premium .pro-breadcrumbs::-webkit-scrollbar {
        display: none;
    }

    /* Stacking Gallery Elements */
    .product-detail-premium .gallery-container {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
    }

    /* 1. Main Image */
    .product-detail-premium .main-stage {
        order: 1 !important;
        width: 100% !important;
        max-width: 450px !important;
        margin: 0 auto !important;
        border-radius: 20px !important;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    }

    .product-detail-premium .image-zoom-area {
        position: absolute !important;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: block !important;
    }

    .product-detail-premium .slider-wrapper {
        display: flex !important;
        height: 100% !important;
    }

    .product-detail-premium .slide {
        flex: 0 0 100% !important;
        height: 100% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    /* 2. Thumbnails (Horizontal Scroll) */
    .product-detail-premium .thumbnail-list {
        order: 2 !important;
        display: flex !important;
        flex-direction: row !important;
        justify-content: center !important;
        gap: 12px !important;
        padding: 10px 0 !important;
        width: 100% !important;
        overflow-x: auto !important;
    }

    .product-detail-premium .thumb-item {
        width: 64px !important;
        height: 64px !important;
        flex: 0 0 64px !important;
        border-radius: 12px !important;
    }

    /* 3. Actions (Integrated Buttons) */
    .pro-mobile-actions {
        order: 3 !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
        width: 100% !important;
        margin-top: 10px !important;
    }

    .pro-mobile-actions .fab-item {
        width: 100% !important;
        padding: 16px 20px !important;
        border-radius: 14px !important;
        background: #fff;
        display: flex !important;
        align-items: center !important;
        gap: 15px !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
        border-left: 4px solid #eee;
    }

    /* 4. Trust Bar (Bottom of Gallery) */
    .product-detail-premium .trust-check-bar {
        order: 4 !important;
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 15px !important;
        padding: 20px !important;
        background: #F1F5F9;
        border-radius: 16px !important;
        margin-top: 10px !important;
        border: none !important;
    }

    .product-detail-premium .check-item {
        font-size: 12px !important;
        white-space: nowrap !important;
    }

    /* Integrated Actions Style Fix */
    .pro-mobile-actions .item-instagram {
        border-left-color: #E1306C !important;
    }

    .pro-mobile-actions .item-whatsapp {
        border-left-color: #25D366 !important;
    }

    .pro-mobile-actions .item-call {
        border-left-color: var(--primary-navy) !important;
    }

    .pro-mobile-actions .item-quote {
        border-left-color: var(--accent-yellow) !important;
    }

    /* Meta Cards Reset */
    .product-detail-premium .meta-cards-grid {
        grid-template-columns: 1fr !important;
        gap: 10px;
        width: 100%;
    }

    /* Tab Controls */
    .product-detail-premium .tabs-header {
        overflow-x: auto;
        white-space: nowrap;
        justify-content: flex-start;
        padding: 0 10px;
    }

    .product-detail-premium .t-btn {
        padding: 15px 20px;
        font-size: 13px;
    }

    /* Global FAB remains visible via base styles */
}

@media (max-width: 480px) {
    .product-detail-premium .value-grid {
        grid-template-columns: 1fr !important;
    }

    .product-detail-premium .action-stack {
        width: 100%;
    }

    .product-detail-premium .trust-check-bar {
        border: none;
        background: #fff;
        padding: 20px;
        border-radius: 20px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    /* Mobile Integrated Actions (FAB items moved below thumbnails) */
    .pro-mobile-actions {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
        width: 100% !important;
        margin-top: 20px !important;
        order: 3 !important;
        /* Below main-stage (1) and thumbnails (2) */
    }

    .pro-mobile-actions .fab-item {
        display: flex !important;
        align-items: center !important;
        gap: 15px !important;
        width: 100% !important;
        padding: 18px 24px !important;
        border-radius: 16px !important;
        background: #fff !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05) !important;
        text-decoration: none !important;
        color: var(--primary-navy) !important;
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
    }

    .pro-mobile-actions .fab-item span {
        display: inline-block !important;
        font-weight: 700 !important;
        font-size: 15px !important;
    }

    .pro-mobile-actions .fab-item i {
        width: 24px !important;
        height: 24px !important;
    }

    .pro-mobile-actions .item-instagram {
        border-left: 4px solid #E1306C;
    }

    .pro-mobile-actions .item-whatsapp {
        border-left: 4px solid #25D366;
    }

    .pro-mobile-actions .item-call {
        border-left: 4px solid var(--primary-navy);
    }

    .pro-mobile-actions .item-quote {
        border-left: 4px solid var(--accent-yellow);
    }

    /* FAB handled globally */
}

/* 4. Contact Page Improvements */
@media (max-width: 992px) {
    .contact-info-section .contact-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        margin-top: 0;
        padding-top: 40px;
    }
}

@media (max-width: 576px) {
    .contact-info-section .contact-grid {
        grid-template-columns: 1fr !important;
    }

    .contact-form-section .contact-layout {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .contact-form-wrapper {
        padding: 25px !important;
    }

    .contact-map-wrapper {
        height: 350px !important;
    }
}

/* 5. Services (Hizmetler) Page */
@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 36px !important;
    }

    .services-grid {
        grid-template-columns: 1fr !important;
        margin-top: 30px !important;
    }

    .service-card {
        padding: 30px !important;
    }

    .services-why .flex.align-center.justify-between {
        flex-direction: column !important;
    }

    .services-why .why-content {
        padding-right: 0 !important;
        text-align: center;
    }

    .services-why .why-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px !important;
    }

    .services-why .why-image {
        margin-top: 40px;
        width: 100%;
    }

    .services-why .why-image img {
        height: 300px !important;
    }
}

/* 6. Profile Page */
@media (max-width: 768px) {
    .profile-tabs-nav {
        flex-direction: column;
    }

    .quote-table th:nth-child(4),
    .quote-table td:nth-child(4) {
        display: none;
    }

    .profile-container .auth-form .form-row {
        grid-template-columns: 1fr !important;
    }
}

/* 7. Quote (Teklif) Page Specifics */
@media (max-width: 768px) {
    .quote-page .q-prod-card-premium {
        flex-direction: column !important;
        text-align: center;
    }

    .quote-page .q-prod-img {
        width: 100% !important;
        height: 180px !important;
    }

    .quote-page .product-selection-header {
        font-size: 14px !important;
    }
}

/* --- Single Blog Post Premium --- */
.single-post-hero {
    background: var(--primary-navy);
    padding: 180px 0 100px;
    position: relative;
    text-align: center;
    color: white;
}

.post-meta-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.meta-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-yellow);
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.single-post-hero h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    max-width: 900px;
    margin: 0 auto;
}

.post-container-premium {
    max-width: 900px;
    margin: -60px auto 100px;
    position: relative;
    z-index: 10;
}

.post-featured-image {
    width: 100%;
    height: 500px;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
    margin-bottom: 60px;
}

.post-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-content-inner {
    background: white;
    padding: 80px;
    border-radius: 32px;
    box-shadow: 0 20px 60px rgba(31, 43, 58, 0.05);
}

/* Typography for Single Post */
.post-content-inner p {
    font-size: 18px;
    line-height: 1.8;
    color: #334155;
    margin-bottom: 30px;
}

.post-content-inner h2 {
    font-size: 32px;
    margin: 60px 0 30px;
    color: var(--primary-navy);
}

.post-content-inner h3 {
    font-size: 24px;
    margin: 40px 0 20px;
}

.post-content-inner blockquote {
    background: #F8FAFC;
    padding: 40px;
    border-radius: 20px;
    border-left: 6px solid var(--accent-yellow);
    margin: 40px 0;
}

.post-content-inner blockquote p {
    font-size: 22px;
    font-style: italic;
    color: var(--primary-navy);
    font-weight: 600;
    margin-bottom: 0;
}

.post-footer-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 80px;
}

.nav-box {
    background: white;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #E2E8F0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-decoration: none;
}

.nav-box span {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-muted);
}

.nav-box strong {
    font-size: 18px;
    color: var(--primary-navy);
}

.nav-box:hover {
    border-color: var(--accent-yellow);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.nav-box.next {
    text-align: right;
}

@media (max-width: 992px) {
    .single-post-hero h1 {
        font-size: 40px;
    }

    .post-content-inner {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .post-featured-image {
        height: 300px;
        border-radius: 20px;
    }

    .post-footer-nav {
        grid-template-columns: 1fr;
    }
}

/* Pagination handled in Internal Blog Page Specifics */
@media (max-width: 576px) {
    .auth-page {
        padding: 100px 15px 40px !important;
    }

    .auth-card {
        padding: 30px 20px !important;
    }

    .auth-header h1 {
        font-size: 24px !important;
    }
}

/* Final Polish */
img {
    max-width: 100%;
    height: auto;
}