﻿/**
 * Gama Hidrolik Theme Styles
 * Modern industrial hydraulic solutions company theme
 *
 * @package Gama_Hidrolik
 */

/* ==========================================================================
   CSS Variables & Root
   ========================================================================== */
:root {
    /* Primary Colors */
    --primary-blue: #1e40af;
    --secondary-blue: #3b82f6;
    --accent-blue: #60a5fa;
    --dark-blue: #1e3a8a;
    
    /* Neutral Colors */
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    /* Accent Colors */
    --success-green: #10b981;
    --warning-orange: #f59e0b;
    --error-red: #ef4444;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    --gradient-hero: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #60a5fa 100%);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Outfit', var(--font-primary);
    
    /* Spacing */
    --container-max: 1280px;
    --section-padding: 5rem;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ==========================================================================
   Base Styles
   ========================================================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

/* Accessibility */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    clip-path: none;
    color: #21759b;
    display: block;
    font-size: 14px;
    font-weight: bold;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}

.skip-link:focus {
    position: fixed;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-orange);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    z-index: 100001;
    text-decoration: none;
    font-weight: 600;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-700);
    background: var(--gray-50);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.2;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }

a {
    color: var(--secondary-blue);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--primary-blue);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

/* ==========================================================================
   Container
   ========================================================================== */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all var(--transition-base);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-right: 1.75rem;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

/* Logo Shine Effect */
.logo::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.6) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    animation: logoShine 3s infinite;
    pointer-events: none;
    z-index: 10;
}

@keyframes logoShine {
    0% {
        left: -150%;
    }
    80% {
        left: 150%;
    }
    100% {
        left: 150%;
    }
}

.logo i {
    font-size: 2rem;
}

.logo img,
.logo .custom-logo {
    height: var(--logo-height, 50px);
    width: auto;
    max-height: 100%;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    flex: 1;
    justify-content: center;
    min-width: 0;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 0.85rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-700);
    border-radius: 8px;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary-blue);
    background: rgba(59, 130, 246, 0.1);
}

/* Mobile Call Button */
.mobile-call-btn {
    display: none;
    width: 40px;
    height: 40px;
    border: none;
    background: var(--secondary-blue);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: all var(--transition-fast);
    align-items: center;
    justify-content: center;
    text-decoration: none;
    margin-left: auto;
}

.mobile-call-btn:hover {
    background: #16a34a;
    transform: scale(1.1);
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-overlay-content {
    width: 90%;
    max-width: 600px;
    position: relative;
}

.search-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform 0.2s;
}

.search-close:hover {
    transform: rotate(90deg);
}

.search-form-overlay {
    display: flex;
    background: white;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.search-form-overlay input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    font-size: 1.1rem;
    outline: none;
}

.search-form-overlay button {
    padding: 1rem 1.5rem;
    border: none;
    background: var(--secondary-blue);
    color: white;
    cursor: pointer;
    transition: background 0.2s;
}

.search-form-overlay button:hover {
    background: var(--primary-blue);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-toggle i {
    margin-left: 0.25rem;
    font-size: 0.75rem;
    transition: transform var(--transition-fast);
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    padding: 0.75rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-fast);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--gray-700);
    border-radius: 8px;
    transition: all var(--transition-fast);
}

.dropdown-menu a:hover {
    background: var(--gray-100);
    color: var(--secondary-blue);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: 1.75rem;
    flex-shrink: 0;
}

@media (min-width: 1025px) {
    .nav-wrapper {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
        align-items: center;
        column-gap: 2rem;
        justify-content: initial;
    }

    .logo {
        margin-right: 0;
    }

    .nav-menu {
        flex: none;
        justify-self: center;
        justify-content: center;
        min-width: 0;
    }

    .nav-actions {
        margin-left: 0;
        justify-self: end;
    }
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--gray-700);
    cursor: pointer;
    padding: 0.5rem;
}

.site-announcement {
    margin-top: var(--header-height, 80px);
    background: linear-gradient(90deg, #1e3a8a 0%, #2563eb 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.site-announcement__inner {
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 0.65rem;
    padding-bottom: 0.65rem;
}

.site-announcement__text {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin: 0;
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.1px;
    flex: 1;
    min-width: 0;
}

.site-announcement__text i {
    color: #fbbf24;
    font-size: 0.95rem;
}

.site-announcement__rotator {
    display: inline-block;
    max-width: 100%;
    line-height: 1.35;
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.site-announcement__rotator.is-changing {
    opacity: 0.15;
    transform: translateY(-2px);
}

.site-announcement__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 0.8rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 600;
    white-space: nowrap;
}

.site-announcement__cta:hover {
    background: rgba(255, 255, 255, 0.24);
    color: #fff;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all var(--transition-fast);
    text-decoration: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.5);
    color: white;
}

.btn-secondary {
    background: var(--gray-100);
    color: var(--gray-700);
}

.btn-secondary:hover {
    background: var(--gray-200);
    color: var(--gray-900);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--secondary-blue);
    color: var(--secondary-blue);
}

.btn-outline:hover {
    background: var(--secondary-blue);
    color: white;
}

.btn-light {
    background: white;
    color: var(--primary-blue);
}

.btn-light:hover {
    background: var(--gray-100);
}

.btn-success {
    background: var(--success-green);
    color: white;
}

.btn-success:hover {
    background: #059669;
    color: white;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
}

/* ==========================================================================
   Section Headers
   ========================================================================== */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(59, 130, 246, 0.1);
    color: var(--secondary-blue);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    position: relative;
    min-height: 72vh;
    display: flex;
    align-items: center;
    padding-top: 16px;
    padding-bottom: 1.25rem;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #f0f9ff 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%233b82f6' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.8;
    z-index: 0;
}

#hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 50px;
    font-size: 0.875rem;
    color: var(--secondary-blue);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.hero-image {
    position: relative;
}

.image-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.image-card img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Hero Slider */
.hero-slider-wrapper {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}

.hero-slide-item {
    position: relative;
    width: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.hero-slide-item.active {
    opacity: 1;
    z-index: 2;
}

.hero-slide-item img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    z-index: 10;
}

.overlay-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    font-weight: 500;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
}

.hero-scroll a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    color: var(--secondary-blue);
    box-shadow: var(--shadow-md);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* ==========================================================================
   Centered Hero with Ken Burns Slideshow
   ========================================================================== */
.hero-centered {
    position: relative;
    min-height: 72vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-slideshow {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slideshow .slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1);
    transition: opacity 1.5s ease-in-out;
}

.hero-slideshow .slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.85) 0%, rgba(59, 130, 246, 0.7) 50%, rgba(30, 58, 138, 0.85) 100%);
    z-index: 1;
}

.hero-content-centered {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 1.25rem;
}

.hero-centered .hero-title {
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-centered .hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 2rem;
}

.hero-badge-light {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

.gradient-text-light {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stats-light {
    justify-content: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    margin-top: 2rem;
}

.hero-stats-light .stat-number {
    color: white;
}

.hero-stats-light .stat-label {
    color: rgba(255, 255, 255, 0.8);
}

.hero-centered .hero-scroll a {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Hero Centered Responsive */
@media (max-width: 768px) {
    .hero-content-centered {
        padding: 1rem;
    }
    
    .hero-centered .hero-title {
        font-size: 2rem;
    }
    
    .hero-stats-light {
        flex-direction: column;
        gap: 1rem;
    }
}

/* ==========================================================================
   Why Us Brand Logos
   ========================================================================== */
.why-us-layout {
    display: grid;
    grid-template-columns: minmax(170px, 220px) minmax(0, 1fr);
    gap: 2rem;
    align-items: start;
}

.why-us-layout--full {
    grid-template-columns: minmax(0, 1fr);
}

.why-brand-logos {
    width: 100%;
}

.hero-brand-logos__list--vertical {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.why-brand-logos .hero-brand-logos__item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 62px;
    padding: 0.45rem 0.65rem;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    background: white;
    box-shadow: var(--shadow-sm);
}

.why-brand-logos .hero-brand-logos__item img {
    height: 38px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(1) brightness(0.35) contrast(1.1);
    opacity: 0.75;
    transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

.why-brand-logos .hero-brand-logos__item:hover img {
    filter: grayscale(0) brightness(1) contrast(1);
    opacity: 1;
    transform: translateY(-2px);
}

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

    .hero-brand-logos__list--vertical {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.7rem;
    }
}

@media (max-width: 576px) {
    .hero-brand-logos__list--vertical {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .why-brand-logos .hero-brand-logos__item {
        min-height: 54px;
    }

    .why-brand-logos .hero-brand-logos__item img {
        height: 34px;
    }
}

/* Page Brand Logos Strip */
.page-brand-logos {
    padding: 1rem 0 1.25rem;
    background: white;
    border-bottom: 1px solid var(--gray-200);
}

.page-brand-logos__list {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
}

.page-brand-logos__item {
    min-height: 60px;
    min-width: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.4rem 0.75rem;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    background: white;
    box-shadow: var(--shadow-sm);
}

.page-brand-logos__item img {
    height: 38px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(1) brightness(0.35) contrast(1.1);
    opacity: 0.75;
    transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

.page-brand-logos__item:hover img {
    filter: grayscale(0) brightness(1) contrast(1);
    opacity: 1;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .page-brand-logos__list {
        gap: 0.65rem 0.9rem;
    }

    .page-brand-logos__item {
        min-width: 130px;
        min-height: 56px;
    }

    .page-brand-logos__item img {
        height: 34px;
    }
}

/* ==========================================================================
   Page Hero (Sub-pages)
   ========================================================================== */
.page-hero {
    position: relative;
    padding: 10rem 0 4rem;
    background: var(--gradient-hero);
    color: white;
    overflow: hidden;
}

.page-hero-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.hero-shape.shape-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
}

.hero-shape.shape-2 {
    width: 300px;
    height: 300px;
    bottom: -100px;
    left: -100px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.breadcrumb a {
    color: white;
    opacity: 0.8;
    transition: opacity var(--transition-fast);
}

.breadcrumb a:hover {
    opacity: 1;
    color: white;
}

.page-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: white;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
}

/* ==========================================================================
   Why Us Section
   ========================================================================== */
.why-us {
    padding: var(--section-padding) 0;
    background: white;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.why-card {
    padding: 2rem;
    background: var(--gray-50);
    border-radius: 20px;
    text-align: center;
    transition: all var(--transition-base);
}

.why-card:hover {
    background: white;
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

.why-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 16px;
    font-size: 1.75rem;
    color: white;
}

.why-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.why-card p {
    font-size: 0.95rem;
    color: var(--gray-500);
}

/* ==========================================================================
   Industries Section - Modern Full-Image Cards
   ========================================================================== */
.industries {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.industries .section-header .section-badge {
    background: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
}

.industries .section-title {
    color: white;
}

.industries .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

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

.industry-card {
    position: relative;
    height: 320px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.industry-card .industry-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

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

.industry-card .industry-bg .placeholder-bg {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
}

.industry-card .industry-bg .placeholder-bg i {
    font-size: 5rem;
    line-height: 1;
    color: rgba(255, 255, 255, 0.34);
}

.industry-card:hover .industry-bg img {
    transform: scale(1.1);
}

.industry-card .industry-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.1) 100%);
    transition: background 0.3s ease;
}

.industry-card:hover .industry-overlay {
    background: linear-gradient(to top, rgba(59, 130, 246, 0.9) 0%, rgba(59, 130, 246, 0.4) 50%, rgba(0, 0, 0, 0.2) 100%);
}

.industry-card .industry-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    z-index: 2;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.industry-card:hover .industry-content {
    transform: translateY(0);
}

.industry-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.industry-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease 0.1s;
}

.industry-card:hover p {
    opacity: 1;
    transform: translateY(0);
}

.industry-card .industry-icon-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.industry-card .industry-icon-badge i {
    font-size: 1.5rem;
    line-height: 1;
}

.industry-card:hover .industry-icon-badge {
    background: var(--secondary-blue);
    transform: rotate(10deg) scale(1.1);
}

/* Responsive */
@media (max-width: 992px) {
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .industry-card {
        height: 280px;
    }
}

@media (max-width: 576px) {
    .industries-grid {
        grid-template-columns: 1fr;
    }
    .industry-card {
        height: 250px;
    }
}

/* ==========================================================================
   Services Section
   ========================================================================== */
.services {
    padding: var(--section-padding) 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    position: relative;
    padding: 2.5rem 2rem;
    background: var(--gray-50);
    border-radius: 20px;
    transition: all var(--transition-base);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.service-card:hover {
    background: white;
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-number {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--gray-200);
}

.service-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 14px;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--gray-500);
}

/* ==========================================================================
   Technical Excellence Section
   ========================================================================== */
.technical-excellence {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
    color: white;
}

.technical-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 4rem;
    align-items: center;
}

.technical-content > * {
    min-width: 0;
}

.technical-text,
.technical-features,
.tech-feature,
.tech-feature > div {
    min-width: 0;
}

.technical-text h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.technical-text > p {
    color: var(--gray-300);
    margin-bottom: 2rem;
}

.technical-features {
    display: grid;
    gap: 1.5rem;
}

.tech-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.tech-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    color: var(--accent-blue);
    flex-shrink: 0;
}

.tech-feature h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    overflow-wrap: anywhere;
}

.tech-feature p {
    color: var(--gray-400);
    font-size: 0.9rem;
    overflow-wrap: anywhere;
}

.technical-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.stat-box {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    text-align: center;
    min-width: 0;
}

.stat-big {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-blue);
    margin-bottom: 0.5rem;
}

.stat-box p {
    font-size: 0.9rem;
    color: var(--gray-400);
}

/* ==========================================================================
   Products Section
   ========================================================================== */
.products {
    padding: var(--section-padding) 0;
    background: var(--gray-50);
}

.hose-production-highlight {
    margin: 0 auto 2rem;
    padding: 0.9rem 1rem;
    border-radius: 14px;
    background: linear-gradient(120deg, rgba(30, 64, 175, 0.1) 0%, rgba(59, 130, 246, 0.12) 100%);
    border: 1px solid rgba(30, 64, 175, 0.2);
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.hose-production-highlight > i {
    color: var(--primary-blue);
    font-size: 1rem;
    flex-shrink: 0;
}

.hose-production-highlight p {
    margin: 0;
    color: var(--gray-800);
    font-weight: 700;
    font-size: 0.98rem;
}

.hose-production-highlight .btn {
    margin-left: auto;
}

.product-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray-600);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.tab-btn:hover {
    border-color: var(--secondary-blue);
    color: var(--secondary-blue);
}

.tab-btn.active {
    background: var(--gradient-primary);
    border-color: transparent;
    color: white;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* ==========================================================================
   Gallery Section
   ========================================================================== */
.gallery-section {
    padding: var(--section-padding) 0;
    background: var(--gray-50);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.8) 0%, rgba(59, 130, 246, 0.7) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 2rem;
    color: white;
}

.gallery-caption {
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    padding: 0 1rem;
}

.gallery-more {
    text-align: center;
    margin-top: 3rem;
}

/* Gallery Responsive */
@media (max-width: 992px) {
    .gallery-grid,
    .gallery-full-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .gallery-grid,
    .gallery-full-grid {
        grid-template-columns: 1fr;
    }
}

/* Gallery Full Page */
.gallery-full-section {
    padding: var(--section-padding) 0;
    background: white;
}

.gallery-full-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.no-gallery {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--gray-50);
    border-radius: 20px;
}

.no-gallery i {
    font-size: 4rem;
    color: var(--gray-300);
    margin-bottom: 1rem;
}

.no-gallery h3 {
    margin-bottom: 0.5rem;
    color: var(--gray-600);
}

.no-gallery p {
    color: var(--gray-500);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.product-card.featured {
    border: 2px solid var(--secondary-blue);
}

.product-image {
    position: relative;
    height: 200px;
    background: var(--gray-100);
    overflow: hidden;
}

.product-image img,
.placeholder-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.placeholder-image {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--gray-300);
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.4rem 1rem;
    background: var(--secondary-blue);
    color: white;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.product-badge.new {
    background: var(--success-green);
}

.product-badge.local {
    background: var(--warning-orange);
}

.product-content {
    padding: 1.5rem;
}

.product-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.product-content p {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: 1rem;
}

.product-features {
    margin-bottom: 1.25rem;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--gray-600);
    margin-bottom: 0.5rem;
}

.product-features li i {
    color: var(--success-green);
}

.product-features li i.fa-star {
    color: var(--warning-orange);
}

/* Local Production Banner */
.local-production-banner {
    margin-bottom: 2rem;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-radius: 16px;
    border: 1px solid #fcd34d;
}

.local-production-banner .banner-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.local-production-banner .banner-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 14px;
    font-size: 1.5rem;
    color: var(--warning-orange);
}

.local-production-banner h3 {
    font-size: 1.25rem;
    color: #92400e;
    margin-bottom: 0.25rem;
}

.local-production-banner p {
    color: #a16207;
    font-size: 0.95rem;
}

/* ==========================================================================
   References Section
   ========================================================================== */
.references {
    padding: var(--section-padding) 0;
    background: white;
}

.partners-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.partners-showcase.large .partner-card {
    padding: 2.5rem;
}

.partner-card {
    padding: 2rem;
    background: var(--gray-50);
    border-radius: 16px;
    text-align: center;
    transition: all var(--transition-base);
}

.partner-card:hover,
.partner-card.featured {
    background: white;
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.partner-card.featured {
    border: 1px solid var(--gray-200);
}

.partner-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 20px;
    font-size: 2rem;
    color: var(--secondary-blue);
}

.partner-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.partner-card p {
    font-size: 0.85rem;
    color: var(--gray-500);
}

.partner-desc {
    display: block;
    margin-top: 0.75rem;
    font-size: 0.85rem;
    color: var(--gray-400);
}

/* ==========================================================================
   Reference Stats
   ========================================================================== */
.reference-stats {
    padding: var(--section-padding) 0;
    background: var(--gray-900);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
}

.stat-card .stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.2);
    border-radius: 14px;
    font-size: 1.5rem;
    color: var(--accent-blue);
}

.stat-card .stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.stat-card .stat-label {
    font-size: 0.95rem;
    color: var(--gray-400);
}

/* ==========================================================================
   CTA Section
   ========================================================================== */
.cta-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.cta-text {
    color: white;
}

.cta-text h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-text p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.cta-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.cta-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-features li i {
    color: #a5f3fc;
}

.cta-form {
    background: white;
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
}

.cta-form h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--gray-700);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1.5px solid var(--gray-200);
    border-radius: 10px;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-blue);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.quick-contact {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.contact-method {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    border-radius: 10px;
    font-weight: 600;
}

.contact-method:not(.whatsapp) {
    background: var(--gray-100);
    color: var(--gray-700);
}

.contact-method.whatsapp {
    background: #25d366;
    color: white;
}

.contact-method:hover {
    transform: translateY(-2px);
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact {
    padding: var(--section-padding) 0;
    background: var(--gray-50);
}

.contact-grid {
    display: grid;
    gap: 2rem;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.info-card {
    padding: 2rem;
    background: white;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.info-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.info-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 14px;
    font-size: 1.5rem;
    color: var(--secondary-blue);
}

.info-card h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.info-card p {
    font-size: 0.9rem;
    color: var(--gray-500);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    position: relative;
    background: linear-gradient(150deg, #050b18 0%, #0b1730 58%, #0a1427 100%);
    color: var(--gray-300);
    padding: 4.5rem 0 2rem;
    overflow: hidden;
    border-top: 1px solid rgba(59, 130, 246, 0.28);
}

.footer::before,
.footer::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.footer::before {
    width: 420px;
    height: 420px;
    top: -230px;
    right: -140px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.34) 0%, rgba(59, 130, 246, 0) 72%);
}

.footer::after {
    width: 340px;
    height: 340px;
    bottom: -170px;
    left: -120px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.26) 0%, rgba(14, 165, 233, 0) 72%);
}

.footer .container {
    position: relative;
    z-index: 1;
}

.footer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 1.9rem;
    gap: 0.9rem;
}

.footer-top-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footer-top-logo .custom-logo-link,
.footer-top-logo .footer-logo-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footer-top-logo img {
    max-height: 58px;
    width: auto;
}

.footer-brand-text {
    color: #fff;
    font-size: 1.7rem;
    font-weight: 800;
    letter-spacing: 0.2px;
}

.footer-top-description {
    max-width: 720px;
    margin: 0;
    color: rgba(226, 232, 240, 0.9);
}

.footer-social {
    justify-content: center;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2.4rem;
    padding: 2.2rem;
    margin-bottom: 1.75rem;
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.88) 0%, rgba(15, 23, 42, 0.64) 100%);
    box-shadow: 0 18px 42px rgba(2, 6, 23, 0.45);
}

.footer-section {
    min-width: 0;
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: rgba(226, 232, 240, 0.9);
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(148, 163, 184, 0.28);
    border-radius: 10px;
    color: white;
    transition: all var(--transition-fast);
}

.social-links a:hover {
    background: var(--secondary-blue);
    border-color: rgba(96, 165, 250, 0.9);
    box-shadow: 0 8px 18px rgba(37, 99, 235, 0.35);
    transform: translateY(-3px);
}

.footer-section h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1.15rem;
    position: relative;
    display: inline-block;
    padding-bottom: 0.45rem;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 46px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, #60a5fa 0%, #38bdf8 100%);
}

.footer-section ul li {
    margin-bottom: 0.65rem;
}

.footer-section ul li a {
    color: #cbd5e1;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    transition: color var(--transition-fast), transform var(--transition-fast);
}

.footer-section ul li a::before {
    content: '›';
    color: rgba(96, 165, 250, 0.95);
    font-weight: 700;
    transition: transform var(--transition-fast);
}

.footer-section ul li a:hover {
    color: #fff;
    transform: translateX(2px);
}

.footer-section ul li a:hover::before {
    transform: translateX(2px);
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #cbd5e1;
    font-size: 0.95rem;
    padding: 0.45rem 0.6rem;
    border-radius: 10px;
    border: 1px solid rgba(148, 163, 184, 0.14);
    background: rgba(255, 255, 255, 0.03);
}

.contact-list li i {
    color: #60a5fa;
    margin-top: 0.25rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.35rem;
    border-top: 1px solid rgba(148, 163, 184, 0.2);
}

.footer-bottom p {
    font-size: 0.9rem;
    color: rgba(203, 213, 225, 0.78);
}

.footer-badges {
    display: flex;
    gap: 1.5rem;
}

.footer-badges span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #cbd5e1;
    padding: 0.4rem 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.22);
    background: rgba(255, 255, 255, 0.03);
}

.footer-badges span i {
    color: #60a5fa;
}

/* ==========================================================================
   Additional Page Styles
   ========================================================================== */

/* Company Story Section */
.company-story {
    padding: var(--section-padding) 0;
    background: white;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.story-text p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.story-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.story-stat {
    text-align: center;
}

.story-image img {
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
}

/* Mission Vision Values */
.mission-vision {
    padding: var(--section-padding) 0;
    background: var(--gray-50);
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.mvv-card {
    padding: 2.5rem;
    background: white;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.mvv-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 20px;
    font-size: 2rem;
    color: white;
}

.mvv-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.mvv-card p {
    color: var(--gray-500);
    line-height: 1.7;
}

.values-list li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    color: var(--gray-600);
}

.values-list li i {
    color: var(--success-green);
}

/* Why Choose Us */
.why-choose-us {
    padding: var(--section-padding) 0;
    background: white;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.advantage-card {
    padding: 2rem;
    background: var(--gray-50);
    border-radius: 16px;
    text-align: center;
    transition: all var(--transition-base);
}

.advantage-card:hover {
    background: white;
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.advantage-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 14px;
    font-size: 1.5rem;
    color: var(--secondary-blue);
}

.advantage-card h4 {
    margin-bottom: 0.5rem;
}

.advantage-card p {
    font-size: 0.9rem;
    color: var(--gray-500);
}

/* Services Detail Cards */
.services-intro,
.main-services {
    padding: var(--section-padding) 0;
}

.main-services {
    background: var(--gray-50);
}

.intro-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.intro-text p {
    color: var(--gray-600);
    font-size: 1.1rem;
}

.service-detail-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    padding: 3rem;
    background: white;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
    align-items: center;
}

.service-detail-card.reverse {
    grid-template-columns: 1fr auto;
}

.service-detail-card.reverse .service-detail-icon {
    order: 2;
}

.service-detail-icon {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 24px;
    font-size: 3rem;
    color: white;
}

.service-detail-content {
    position: relative;
}

.service-detail-content .service-number {
    font-size: 4rem;
    color: var(--gray-100);
}

.service-detail-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-detail-content p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    color: var(--gray-600);
}

.service-features li i {
    color: var(--success-green);
}

/* Quick Contact Banner */
.quick-contact-banner {
    padding: 3rem 0;
    background: var(--gradient-primary);
}

.quick-contact-banner .banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.quick-contact-banner .banner-text h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.quick-contact-banner .banner-text p {
    color: rgba(255, 255, 255, 0.8);
}

.quick-contact-banner .banner-actions {
    display: flex;
    gap: 1rem;
}

/* Quick Contact Section */
.quick-contact-section {
    position: relative;
    padding: clamp(3rem, 6vw, 4.6rem) 0;
    background:
        radial-gradient(circle at 15% 0%, rgba(30, 64, 175, 0.14) 0%, rgba(30, 64, 175, 0) 42%),
        radial-gradient(circle at 90% 100%, rgba(14, 165, 233, 0.16) 0%, rgba(14, 165, 233, 0) 46%),
        linear-gradient(180deg, #f8fbff 0%, #edf4ff 100%);
    border-top: 1px solid rgba(148, 163, 184, 0.22);
    border-bottom: 1px solid rgba(148, 163, 184, 0.22);
}

.quick-contact-section .section-header {
    margin-bottom: 2rem;
}

.quick-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}

.quick-contact-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    padding: 1.4rem 1.35rem;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(148, 163, 184, 0.26);
    border-radius: 20px;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(8px);
    color: inherit;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.quick-contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #1d4ed8 0%, #38bdf8 100%);
    opacity: 0.86;
}

.quick-contact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15);
    border-color: rgba(59, 130, 246, 0.45);
}

.quick-contact-card.whatsapp {
    background: linear-gradient(140deg, rgba(236, 253, 245, 0.96) 0%, rgba(220, 252, 231, 0.92) 100%);
}

.quick-contact-card.whatsapp:hover {
    background: linear-gradient(130deg, #22c55e 0%, #16a34a 100%);
    color: white;
}

.quick-contact-card.whatsapp:hover .qc-icon,
.quick-contact-card.whatsapp:hover h4,
.quick-contact-card.whatsapp:hover p,
.quick-contact-card.whatsapp:hover .qc-pill,
.quick-contact-card.whatsapp:hover .qc-action,
.quick-contact-card.whatsapp:hover .qc-action i {
    color: white;
}

.quick-contact-card.whatsapp:hover .qc-icon {
    background: rgba(255, 255, 255, 0.2);
}

.quick-contact-card.whatsapp:hover .qc-pill {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.38);
}

.qc-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.65rem;
    margin-bottom: 0.2rem;
}

.qc-pill {
    display: inline-flex;
    align-items: center;
    font-size: 0.72rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-weight: 700;
    padding: 0.38rem 0.62rem;
    border-radius: 999px;
    color: #1e3a8a;
    background: rgba(191, 219, 254, 0.65);
    border: 1px solid rgba(147, 197, 253, 0.8);
}

.qc-icon {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, rgba(59, 130, 246, 0.18) 0%, rgba(14, 165, 233, 0.18) 100%);
    border: 1px solid rgba(59, 130, 246, 0.26);
    border-radius: 15px;
    color: #1d4ed8;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.qc-icon i {
    font-size: 1.45rem;
    line-height: 1;
}

.quick-contact-card.whatsapp .qc-icon {
    background: rgba(34, 197, 94, 0.14);
    border-color: rgba(34, 197, 94, 0.26);
    color: #15803d;
}

.quick-contact-card h4 {
    font-size: 1.12rem;
    margin-bottom: 0.25rem;
    color: #0f172a;
}

.quick-contact-card p {
    font-size: 0.92rem;
    color: #475569;
    margin-bottom: 0;
    line-height: 1.5;
}

.qc-action {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    width: fit-content;
    font-size: 0.86rem;
    font-weight: 700;
    color: #1d4ed8;
    padding-top: 0.5rem;
}

.qc-action i {
    font-size: 1rem;
    transition: transform var(--transition-fast);
}

.quick-contact-card:hover .qc-action i {
    transform: translateX(4px);
}

/* Contact Main Section */
.contact-main {
    padding: var(--section-padding) 0;
    background:
        radial-gradient(circle at 10% 10%, rgba(59, 130, 246, 0.12) 0%, rgba(59, 130, 246, 0) 40%),
        radial-gradient(circle at 90% 90%, rgba(14, 165, 233, 0.12) 0%, rgba(14, 165, 233, 0) 35%),
        linear-gradient(180deg, #f3f7ff 0%, #eef2f9 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: 1.7rem;
    align-items: start;
}

.contact-form-wrapper {
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(148, 163, 184, 0.26);
    padding: 2rem;
    border-radius: 24px;
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.1);
}

.contact-form-wrapper::after {
    content: '';
    position: absolute;
    width: 220px;
    height: 220px;
    right: -90px;
    top: -90px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.18) 0%, rgba(59, 130, 246, 0) 70%);
    pointer-events: none;
}

.contact-form-wrapper h3 {
    font-size: 1.55rem;
    margin-bottom: 0.5rem;
    color: #0f172a;
}

.contact-form-wrapper > p {
    color: #475569;
    margin-bottom: 1.2rem;
}

.contact-form-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-bottom: 1.5rem;
}

.contact-form-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.38rem 0.66rem;
    border-radius: 999px;
    border: 1px solid rgba(125, 211, 252, 0.68);
    background: rgba(224, 242, 254, 0.72);
    color: #0f4c81;
    font-size: 0.75rem;
    font-weight: 600;
}

.contact-form-meta span i {
    font-size: 0.95rem;
}

.contact-form-wrapper .form-group label {
    font-size: 0.84rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-weight: 700;
}

.contact-form-wrapper .form-group input,
.contact-form-wrapper .form-group select,
.contact-form-wrapper .form-group textarea {
    background: rgba(248, 250, 252, 0.92);
    border-color: rgba(148, 163, 184, 0.36);
    border-radius: 12px;
}

.contact-form-wrapper .btn {
    min-height: 50px;
    border-radius: 12px;
    font-weight: 700;
}

.contact-form-wrapper .btn i {
    font-size: 1.1rem;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.contact-info-title {
    font-size: 1.35rem;
    margin: 0;
    color: #0f172a;
}

.contact-info-wrapper .contact-info-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.9rem;
    margin-bottom: 0;
}

/* Info Cards - İletişim Kutuları */
.contact-info-wrapper .info-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.96) 0%, rgba(241, 245, 249, 0.9) 100%);
    padding: 1.35rem;
    border-radius: 18px;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(148, 163, 184, 0.28);
    position: relative;
    overflow: hidden;
}

.contact-info-wrapper .info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #1d4ed8 0%, #38bdf8 100%);
    opacity: 0.85;
}

.contact-info-wrapper .info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 30px rgba(15, 23, 42, 0.14);
    border-color: rgba(59, 130, 246, 0.42);
}

.contact-info-wrapper .info-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.18) 0%, rgba(14, 165, 233, 0.18) 100%);
    border: 1px solid rgba(125, 211, 252, 0.8);
    border-radius: 14px;
    margin-bottom: 0.85rem;
}

.contact-info-wrapper .info-icon i {
    font-size: 1.4rem;
    color: #1e40af;
}

.contact-info-wrapper .info-card h4 {
    font-size: 0.98rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.35rem;
}

.contact-info-wrapper .info-card p {
    font-size: 0.92rem;
    color: #334155;
    line-height: 1.55;
}

.contact-info-wrapper .info-card p a {
    color: inherit;
}

.map-wrapper {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(148, 163, 184, 0.28);
    border-radius: 18px;
    padding: 1rem;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.1);
}

.map-wrapper__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.8rem;
}

.map-wrapper__header h4 {
    margin: 0;
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.84rem;
    font-weight: 700;
    color: #1e40af;
    padding: 0.35rem 0.62rem;
    border-radius: 999px;
    border: 1px solid rgba(147, 197, 253, 0.9);
    background: rgba(219, 234, 254, 0.62);
}

.map-container {
    border-radius: 14px;
    border: 1px solid rgba(148, 163, 184, 0.3);
    overflow: hidden;
}

.map-container iframe {
    display: block;
}

.map-actions {
    margin-top: 0.75rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.map-action {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.46rem 0.72rem;
    border-radius: 10px;
    font-size: 0.83rem;
    font-weight: 700;
    border: 1px solid transparent;
}

.map-action--whatsapp {
    color: #166534;
    background: rgba(187, 247, 208, 0.68);
    border-color: rgba(134, 239, 172, 0.9);
}

.map-action--phone {
    color: #1e3a8a;
    background: rgba(191, 219, 254, 0.72);
    border-color: rgba(147, 197, 253, 0.85);
}

@media (max-width: 1100px) {
    .quick-contact-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .quick-contact-section .section-header {
        margin-bottom: 1.4rem;
    }

    .contact-form-wrapper {
        padding: 1.35rem;
    }

    .contact-form-meta span {
        width: 100%;
    }

    .contact-info-title {
        font-size: 1.2rem;
    }

    .map-wrapper__header {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 560px) {
    .contact-info-wrapper .contact-info-cards {
        grid-template-columns: 1fr;
    }
}

/* FAQ Section */
.faq-section {
    padding: var(--section-padding) 0;
    background: var(--gray-50);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: 1.5rem 2rem;
    border-radius: 16px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
}

.faq-item h4 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.faq-item h4 i {
    color: var(--secondary-blue);
}

.faq-item p {
    color: var(--gray-600);
    line-height: 1.7;
    margin-left: 2rem;
}

/* Clients Section */
.clients-section {
    padding: var(--section-padding) 0;
    background: white;
}

.industry-references {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.reference-category {
    padding: 2rem;
    background: var(--gray-50);
    border-radius: 16px;
}

.reference-category h4 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.reference-category h4 i {
    color: var(--secondary-blue);
}

.company-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.company-tag {
    padding: 0.5rem 1rem;
    background: white;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--gray-600);
}

/* Testimonials */
.testimonials {
    padding: var(--section-padding) 0;
    background: var(--gray-50);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.testimonial-card {
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content i {
    font-size: 2rem;
    color: var(--secondary-blue);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.testimonial-content p {
    color: var(--gray-600);
    font-style: italic;
    line-height: 1.8;
}

.author-info h5 {
    margin-bottom: 0.25rem;
}

.author-info span {
    font-size: 0.85rem;
    color: var(--gray-500);
}

/* Partners Section */
.partners-section {
    padding: var(--section-padding) 0;
    background: white;
}

/* ==========================================================================
   Notification
   ========================================================================== */
.gama-notification {
    position: fixed;
    top: 100px;
    right: 20px;
    padding: 1rem 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 10000;
    opacity: 0;
    transform: translateX(100%);
    transition: all var(--transition-base);
}

.gama-notification.show {
    opacity: 1;
    transform: translateX(0);
}

.gama-notification.success {
    border-left: 4px solid var(--success-green);
}

.gama-notification.success i {
    color: var(--success-green);
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 1200px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .hero-content,
    .technical-content,
    .cta-content,
    .story-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-image {
        order: -1;
    }

    .technical-content {
        grid-template-columns: minmax(0, 1fr);
    }

    .image-card img {
        height: auto;
    }

    .why-grid,
    .contact-info {
        grid-template-columns: repeat(2, 1fr);
    }

    .partners-showcase {
        grid-template-columns: repeat(2, 1fr);
    }

    .industries-grid,
    .services-grid,
    .mvv-grid,
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .technical-stats {
        margin-top: 3rem;
    }

    .footer-content {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.4rem;
        padding: 1.6rem;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 3.5rem;
    }

    .site-announcement__inner {
        min-height: auto;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.6rem;
    }

    .site-announcement__text {
        font-size: 0.85rem;
        line-height: 1.35;
    }

    .site-announcement__cta {
        width: 100%;
        justify-content: center;
    }

    .hero-scroll {
        bottom: 1rem;
        z-index: 10;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: white;
        padding: 1.5rem;
        flex-direction: column;
        gap: 0.5rem;
        box-shadow: var(--shadow-lg);
        transform: translateY(-150%);
        opacity: 0;
        transition: all var(--transition-base);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
    }

    .nav-link {
        padding: 0.75rem 1rem;
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: 1rem;
        background: var(--gray-50);
        margin-top: 0.5rem;
    }

    .dropdown.active .dropdown-menu {
        display: block;
        animation: fadeIn 0.3s ease;
    }

    .nav-actions {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .mobile-call-btn {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero,
    .hero-centered {
        min-height: 58vh;
        padding-top: 10px;
    }

    .page-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .technical-text h2 {
        font-size: 2rem;
    }

    .technical-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-box {
        padding: 1.25rem;
    }

    .stat-big {
        font-size: 2rem;
    }

    .hero-stats {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-cta {
        flex-direction: column;
    }

    .why-grid,
    .industries-grid,
    .services-grid,
    .product-grid,
    .contact-info,
    .mvv-grid,
    .advantages-grid,
    .quick-contact-grid,
    .catalog-grid,
    .testimonials-grid,
    .industry-references,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .products .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
    }

    .partners-showcase {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .product-tabs {
        flex-direction: column;
    }

    .hose-production-highlight {
        align-items: flex-start;
        flex-wrap: wrap;
        gap: 0.65rem;
    }

    .hose-production-highlight .btn {
        margin-left: 0;
        width: 100%;
    }

    .tab-btn {
        width: 100%;
        justify-content: center;
    }

    .cta-features {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .quick-contact {
        flex-direction: column;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1.35rem;
        border-radius: 16px;
    }

    .footer-top {
        margin-bottom: 1.2rem;
        gap: 0.7rem;
    }

    .footer-top-logo img {
        max-height: 50px;
    }

    .footer-top-description {
        font-size: 0.9rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding-top: 1rem;
    }

    .footer-badges {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.65rem;
    }

    .service-detail-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .service-detail-card.reverse {
        grid-template-columns: 1fr;
    }

    .service-detail-card.reverse .service-detail-icon {
        order: 0;
    }

    .service-detail-icon {
        margin: 0 auto;
    }

    .service-features li {
        justify-content: center;
    }

    .quick-contact-banner .banner-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .contact-info-wrapper .contact-info-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .btn-large {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    .cta-form {
        padding: 1.5rem;
    }
}

/* ==========================================================================
   Product Archive & Single Styles
   ========================================================================== */
.products-archive {
    padding: var(--section-padding) 0;
    background: var(--gray-50);
}

.products-archive .product-tabs {
    flex-wrap: wrap;
}

.products-archive .tab-btn .count {
    font-size: 0.75rem;
    opacity: 0.7;
    margin-left: 0.25rem;
}

.no-products {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 20px;
}

.no-products i {
    font-size: 4rem;
    color: var(--gray-300);
    margin-bottom: 1rem;
}

.no-products h3 {
    margin-bottom: 0.5rem;
}

.no-products p {
    color: var(--gray-500);
    margin-bottom: 1.5rem;
}

.archive-pagination {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.archive-pagination .nav-links {
    display: flex;
    gap: 0.5rem;
}

.archive-pagination .page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 10px;
    color: var(--gray-600);
    font-weight: 500;
    transition: all var(--transition-fast);
}

.archive-pagination .page-numbers:hover,
.archive-pagination .page-numbers.current {
    background: var(--secondary-blue);
    color: white;
}

.product-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

/* Product Detail Page */
.product-detail {
    padding: var(--section-padding) 0;
    background: white;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.product-detail-image {
    position: relative;
}

.product-detail-image .main-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.product-detail-image .main-image img {
    width: 100%;
    height: auto;
}

.product-detail-image .placeholder-image {
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border-radius: 20px;
    font-size: 6rem;
    color: var(--gray-300);
}

.product-detail-image .product-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
}

.product-detail-info {
    position: sticky;
    top: 100px;
}

.product-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.category-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(59, 130, 246, 0.1);
    color: var(--secondary-blue);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.category-tag:hover {
    background: var(--secondary-blue);
    color: white;
}

.product-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.product-excerpt {
    font-size: 1.1rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.product-features-section {
    margin-bottom: 2rem;
}

.product-features-section h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.product-features-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-100);
    color: var(--gray-700);
}

.product-features-list li i {
    color: var(--success-green);
}

.product-actions-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.product-description,
.product-specs {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--gray-200);
}

.product-description h2,
.product-specs h2 {
    margin-bottom: 1.5rem;
}

.product-description .content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray-700);
}

.product-description .content p {
    margin-bottom: 1rem;
}

.product-description .content ul,
.product-description .content ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.product-description .content li {
    margin-bottom: 0.5rem;
}

.specs-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: 10px;
}

.spec-item i {
    color: var(--secondary-blue);
}

/* Related Products */
.related-products {
    padding: var(--section-padding) 0;
    background: var(--gray-50);
}

/* Responsive Product */
@media (max-width: 1024px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .product-detail-info {
        position: static;
    }
}

@media (max-width: 768px) {
    .product-title {
        font-size: 1.75rem;
    }

    .product-actions-bar {
        flex-direction: column;
    }

    .specs-list {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Floating Buttons
   ========================================================================== */
/* WhatsApp Floating Button */
.floating-whatsapp {
    position: fixed;
    left: 25px;
    bottom: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.75rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all var(--transition-base);
    animation: whatsapp-pulse 3s ease-in-out infinite;
}

.floating-whatsapp::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25D366;
    opacity: 0.3;
    animation: whatsapp-wave 3s ease-out infinite;
    z-index: -1;
}

.floating-whatsapp::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25D366;
    opacity: 0.2;
    animation: whatsapp-wave 3s ease-out infinite 1s;
    z-index: -1;
}

.floating-whatsapp i {
    animation: whatsapp-shake 3s ease-in-out infinite;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    color: white;
    animation-play-state: paused;
}

.floating-whatsapp:hover i {
    animation-play-state: paused;
}

@keyframes whatsapp-pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
}

@keyframes whatsapp-wave {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

@keyframes whatsapp-shake {
    0%, 100% {
        transform: rotate(0deg);
    }
    10% {
        transform: rotate(-30deg);
    }
    20% {
        transform: rotate(30deg);
    }
    30% {
        transform: rotate(-30deg);
    }
    40% {
        transform: rotate(30deg);
    }
    50% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

.floating-whatsapp .whatsapp-tooltip {
    position: absolute;
    left: 70px;
    background: #25D366;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 700;
    white-space: nowrap;
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
    transition: all var(--transition-fast);
    animation: whatsapp-tooltip-pulse 2.4s ease-in-out infinite;
}

.floating-whatsapp .whatsapp-tooltip::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 50%;
    width: 10px;
    height: 10px;
    background: #25D366;
    border-left: 1px solid rgba(255, 255, 255, 0.35);
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
    transform: translateY(-50%) rotate(45deg);
}

.floating-whatsapp:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(2px);
}

@keyframes whatsapp-tooltip-pulse {
    0%, 100% {
        box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
    }
    50% {
        box-shadow: 0 12px 24px rgba(37, 211, 102, 0.5);
    }
}

/* Back to Top Button with Progress */
.back-to-top {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 50px;
    height: 50px;
    background: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-base);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--secondary-blue);
}

.back-to-top:hover i {
    color: white;
}

.back-to-top i {
    font-size: 1rem;
    color: var(--secondary-blue);
    position: relative;
    z-index: 2;
    transition: color var(--transition-fast);
}

.back-to-top .progress-ring {
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(-90deg);
}

.back-to-top .progress-ring-circle {
    stroke-dasharray: 138.23; /* 2 * PI * 22 */
    stroke-dashoffset: 138.23;
    transition: stroke-dashoffset 0.1s linear;
}

/* Responsive Floating Buttons */
@media (max-width: 768px) {
    .floating-whatsapp {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        left: 15px;
        bottom: 15px;
    }
    
    .floating-whatsapp .whatsapp-tooltip {
        display: inline-flex;
        align-items: center;
        left: 58px;
        font-size: 0.75rem;
        padding: 0.35rem 0.7rem;
        border-radius: 7px;
    }
    
    .back-to-top {
        width: 45px;
        height: 45px;
        right: 15px;
        bottom: 15px;
    }
    
    .back-to-top .progress-ring {
        width: 45px;
        height: 45px;
    }
}

/* ==========================================================================
   Print Styles
   ========================================================================== */
@media print {
    .navbar,
    .hero-scroll,
    .cta-section,
    .footer {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: 2rem 0;
    }

    * {
        color: black !important;
        background: white !important;
    }
}

/* Nested Dropdowns / Flyouts */
.dropdown-menu .dropdown {
    position: relative;
    width: 100%;
}

.dropdown-menu .dropdown .dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 0.5rem;
}

.dropdown-menu .dropdown .dropdown-toggle i {
    transform: rotate(0deg);
    font-size: 0.65rem;
}

.dropdown-menu .dropdown:hover > .dropdown-toggle i {
    transform: rotate(0deg) scale(1.1);
}

.dropdown-menu .dropdown .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -10px;
    margin-left: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
}

.dropdown-menu .dropdown:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Fix for mobile */
@media (max-width: 991px) {
    .dropdown-menu .dropdown .dropdown-menu {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: 1rem;
        margin-top: 0;
        display: none;
    }
    .dropdown-menu .dropdown.active > .dropdown-menu {
        display: block;
    }
}


/* Flyout Improvements */
.dropdown-menu {
    border: 1px solid rgba(0,0,0,0.05);
}

.dropdown-item {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1.25rem !important;
    font-size: 0.9rem;
    color: var(--gray-700);
    transition: all 0.2s;
}

.dropdown-item:hover {
    background: var(--gray-100) !important;
    color: var(--secondary-blue) !important;
}

.dropdown-item i {
    font-size: 0.75rem;
    opacity: 0.5;
}

/* Submenu Position */
.dropdown-submenu {
    position: relative;
    width: 100%;
}

.dropdown-submenu > .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -10px;
    margin-left: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
}

.dropdown-submenu:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Hide bullet points from wp_nav_menu fallback */
.nav-menu ul, .nav-menu li {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}


/* Clean up and Force Flyout Styles */
.dropdown-menu .dropdown-submenu > .dropdown-menu {
    top: 0 !important;
    left: 100% !important;
    margin-top: -10px !important;
    margin-left: 0 !important;
    transform: translateX(10px) !important;
}

.dropdown-submenu:hover > .dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateX(0) !important;
}

/* Ensure no bullet points or default padding mess */
.dropdown-menu, .dropdown-menu ul {
    list-style: none !important;
    padding: 0.5rem 0 !important;
    margin: 0 !important;
}

.dropdown-item {
    padding: 0.5rem 1.5rem !important;
    white-space: nowrap !important;
}

/* ==========================================================================
   Mobile Menu Styles - Accordion Style
   ========================================================================== */
@media (max-width: 992px) {
    /* Mobile menu container - full width, left aligned */
    .nav-menu {
        position: fixed !important;
        top: 70px !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        height: auto !important;
        min-height: calc(100vh - 70px) !important;
        min-height: calc(100dvh - 70px) !important;
        background: white !important;
        flex-direction: column !important;
        align-items: stretch !important;
        padding: 1rem !important;
        overflow-y: auto !important;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 9999 !important;
        display: none;
    }
    
    .nav-menu.active {
        transform: translateX(0);
        display: flex !important;
    }

    
    /* All menu links - left aligned, full width */
    .nav-menu .nav-link {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100% !important;
        padding: 1rem 1.25rem !important;
        text-align: left !important;
        font-size: 1rem !important;
        font-weight: 500 !important;
        color: var(--gray-800) !important;
        border-bottom: 1px solid var(--gray-200) !important;
        border-radius: 0 !important;
        background: transparent !important;
    }
    
    .nav-menu .nav-link:hover,
    .nav-menu .nav-link.active {
        background: var(--gray-50) !important;
        color: var(--secondary-blue) !important;
    }
    
    /* Dropdown container - full width */
    .nav-menu .dropdown {
        width: 100% !important;
        position: relative !important;
    }
    
    /* Dropdown menu in mobile - accordion style */
    .nav-menu .dropdown-menu {
        position: static !important;
        width: 100% !important;
        max-height: 0;
        overflow: hidden;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none !important;
        border: none !important;
        border-radius: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
        background: var(--gray-50) !important;
        transition: max-height 0.3s ease;
    }
    
    /* Open state for mobile dropdown */
    .nav-menu .dropdown.open > .dropdown-menu,
    .nav-menu .dropdown:focus-within > .dropdown-menu {
        max-height: 1000px;
        display: block !important;
    }
    
    /* Dropdown items - left aligned, indented */
    .nav-menu .dropdown-menu .dropdown-item {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 0.875rem 1.25rem 0.875rem 2rem !important;
        text-align: left !important;
        font-size: 0.95rem !important;
        color: var(--gray-700) !important;
        border-bottom: 1px solid var(--gray-200) !important;
        white-space: normal !important;
        background: transparent !important;
    }
    
    .nav-menu .dropdown-menu .dropdown-item:hover {
        background: var(--gray-100) !important;
        color: var(--secondary-blue) !important;
    }
    
    /* Nested submenu - further indented */
    .nav-menu .dropdown-submenu {
        width: 100% !important;
        position: relative !important;
    }
    
    .nav-menu .dropdown-submenu > .dropdown-menu {
        position: static !important;
        width: 100% !important;
        left: 0 !important;
        top: 0 !important;
        margin: 0 !important;
        transform: none !important;
        max-height: 0;
        overflow: hidden;
        background: var(--gray-100) !important;
    }
    
    .nav-menu .dropdown-submenu.open > .dropdown-menu {
        max-height: 500px;
        display: block !important;
    }
    
    .nav-menu .dropdown-submenu > .dropdown-menu .dropdown-item {
        padding-left: 3rem !important;
        font-size: 0.9rem !important;
    }
    
    /* Arrow icons rotation on open */
    .nav-menu .dropdown.open > .dropdown-toggle i,
    .nav-menu .dropdown-submenu.open > .dropdown-item i {
        transform: rotate(180deg) !important;
    }
    
    /* Icon styling */
    .nav-menu .dropdown-toggle i,
    .nav-menu .dropdown-item i {
        font-size: 0.75rem !important;
        transition: transform 0.3s ease !important;
        opacity: 0.6 !important;
    }
    
    /* Mobile toggle button visibility */
    .mobile-toggle {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    /* Hide nav-actions on mobile */
    .nav-actions {
        display: none !important;
    }
    
    /* Mobile call button */
    .mobile-call-btn {
        display: flex !important;
    }
}

/* Extra small screens */
@media (max-width: 576px) {
    .nav-menu {
        top: 60px;
    }
    
    .nav-menu .nav-link {
        padding: 0.875rem 1rem !important;
        font-size: 0.95rem !important;
    }
    
    .nav-menu .dropdown-menu .dropdown-item {
        padding: 0.75rem 1rem 0.75rem 1.75rem !important;
        font-size: 0.9rem !important;
    }
    
    .nav-menu .dropdown-submenu > .dropdown-menu .dropdown-item {
        padding-left: 2.5rem !important;
    }
}

/* ==========================================================================
   Modern Product Archive Styles
   ========================================================================== */
.page-hero-compact {
    padding: 3rem 0;
}

.page-hero-compact .page-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.products-archive-modern {
    padding: 3rem 0 5rem;
    background: var(--gray-50);
}

.archive-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    grid-template-areas: "sidebar main";
    gap: 2rem;
}

/* Sidebar Styles */
.archive-sidebar {
    grid-area: sidebar;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.archive-main {
    grid-area: main;
}

.sidebar-widget {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.sidebar-widget h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-800);
}

.sidebar-widget h4 i {
    color: var(--secondary-blue);
}

/* Search Widget */
.product-search-form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.product-search-form input {
    flex: 1;
    border: 2px solid var(--gray-200);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
    width: 100%;
}

.product-search-form input:focus {
    border-color: var(--secondary-blue);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.product-search-form button {
    background: var(--secondary-blue);
    color: white;
    border: none;
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    border-radius: 10px;
}

.product-search-form button:hover {
    background: var(--primary-blue);
}

/* Category List */
.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 8px;
    color: var(--gray-600);
    text-decoration: none;
    transition: all 0.3s;
}

.category-list li a:hover,
.category-list li a.active {
    background: rgba(59, 130, 246, 0.1);
    color: var(--secondary-blue);
}

.category-list li a .count {
    margin-left: auto;
    background: var(--gray-100);
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.category-list li a.active .count {
    background: var(--secondary-blue);
    color: white;
}

/* Filter Buttons */
.filter-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 0.75rem;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    background: white;
    color: var(--gray-600);
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
    border-color: var(--secondary-blue);
    background: rgba(59, 130, 246, 0.1);
    color: var(--secondary-blue);
}

/* CTA Widget */
.cta-widget {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: white;
}

.cta-widget .cta-content {
    text-align: center;
}

.cta-widget .cta-content i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.cta-widget .cta-content h4 {
    color: white;
    justify-content: center;
}

.cta-widget .cta-content p {
    opacity: 0.9;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.cta-widget .btn {
    background: white;
    color: var(--primary-blue);
}

/* Archive Top Bar */
.archive-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
    flex-wrap: wrap;
    gap: 1rem;
}

.results-info {
    color: var(--gray-600);
    font-size: 0.95rem;
}

.sort-options {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sort-options label {
    color: var(--gray-500);
    font-size: 0.9rem;
}

.sort-options select {
    padding: 0.5rem 2rem 0.5rem 0.75rem;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    font-size: 0.9rem;
    cursor: pointer;
    background: white;
}

.view-toggle {
    display: flex;
    gap: 0.25rem;
}

.view-btn {
    padding: 0.5rem 0.75rem;
    border: 1px solid var(--gray-200);
    background: white;
    color: var(--gray-400);
    cursor: pointer;
    transition: all 0.3s;
}

.view-btn:first-child {
    border-radius: 8px 0 0 8px;
}

.view-btn:last-child {
    border-radius: 0 8px 8px 0;
}

.view-btn.active,
.view-btn:hover {
    background: var(--secondary-blue);
    border-color: var(--secondary-blue);
    color: white;
}

/* Active Filters */
.active-filters {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.active-filters > span:first-child {
    color: var(--gray-500);
    font-size: 0.9rem;
}

.filter-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.75rem;
    background: rgba(59, 130, 246, 0.1);
    color: var(--secondary-blue);
    border-radius: 20px;
    font-size: 0.85rem;
}

.filter-tag a {
    color: var(--secondary-blue);
    opacity: 0.7;
}

.filter-tag a:hover {
    opacity: 1;
}

.clear-all {
    color: var(--error-red);
    font-size: 0.85rem;
    margin-left: auto;
}

/* Modern Product Grid */
.product-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.product-grid-modern.four-cols {
    grid-template-columns: repeat(4, 1fr);
}

/* Modern Product Card */
.product-card-modern {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.product-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.product-card-modern.featured {
    border: 2px solid var(--secondary-blue);
}

.product-image-wrap {
    position: relative;
    padding-top: 75%;
    background: var(--gray-100);
    overflow: hidden;
}

.product-image-wrap img,
.product-image-wrap .placeholder-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.product-card-modern:hover .product-image-wrap img {
    transform: scale(1.05);
}

.product-image-wrap .placeholder-image {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--gray-300);
}

.product-image-wrap .product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.4rem 0.75rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    background: var(--secondary-blue);
    color: white;
}

.product-badge.new {
    background: var(--success-green);
}

.product-badge.local {
    background: var(--warning-orange);
}

.product-actions-overlay {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    display: flex;
    gap: 0.5rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s;
}

.product-card-modern:hover .product-actions-overlay {
    opacity: 1;
    transform: translateY(0);
}

.action-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    color: var(--gray-700);
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
}

.action-btn:hover {
    background: var(--secondary-blue);
    color: white;
}

.product-info {
    padding: 1.25rem;
}

.product-info .product-category {
    font-size: 0.75rem;
    color: var(--secondary-blue);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.product-info .product-title {
    font-size: 1.1rem;
    margin: 0.5rem 0;
    font-weight: 600;
}

.product-info .product-title a {
    color: var(--gray-800);
    text-decoration: none;
}

.product-info .product-title a:hover {
    color: var(--secondary-blue);
}

.product-info .product-excerpt {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: 0.75rem;
}

.product-features-mini {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
}

.product-features-mini li {
    font-size: 0.8rem;
    color: var(--gray-600);
    padding: 0.25rem 0;
}

.product-features-mini li i {
    color: var(--success-green);
    margin-right: 0.5rem;
}

.product-footer {
    display: flex;
    gap: 0.5rem;
}

.product-footer .btn {
    flex: 1;
    text-align: center;
    font-size: 0.85rem;
    padding: 0.6rem;
}

/* No Products */
.no-products-modern {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 16px;
}

.no-products-icon {
    font-size: 4rem;
    color: var(--gray-300);
    margin-bottom: 1.5rem;
}

.no-products-modern h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.no-products-modern p {
    color: var(--gray-500);
    margin-bottom: 1.5rem;
}

.no-products-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Pagination */
.archive-pagination-modern {
    margin-top: 2rem;
}

.archive-pagination-modern .nav-links {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.archive-pagination-modern .page-numbers {
    padding: 0.6rem 1rem;
    background: white;
    border-radius: 8px;
    color: var(--gray-600);
    text-decoration: none;
    transition: all 0.3s;
}

.archive-pagination-modern .page-numbers.current,
.archive-pagination-modern .page-numbers:hover {
    background: var(--secondary-blue);
    color: white;
}

/* ==========================================================================
   Modern Product Single Styles
   ========================================================================== */
.product-single-modern {
    padding: 3rem 0 5rem;
    background: var(--gray-50);
}

.product-single-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 2rem;
}

.product-main {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    min-width: 0;
}

/* Product Header Card */
.product-header-card {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
    gap: 2rem;
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}

/* Product Gallery */
.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.main-image-container {
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--gray-200);
}

.main-product-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    background: #fff;
    padding: 0.85rem;
}

.main-image-container .placeholder-image.large {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: var(--gray-300);
}

.product-badge-large {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    background: var(--secondary-blue);
    color: white;
}

.zoom-btn {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: white;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
}

.zoom-btn:hover {
    background: var(--secondary-blue);
    color: white;
}

.thumbnail-gallery {
    display: flex;
    gap: 0.75rem;
}

.thumbnail-gallery .thumb {
    width: 70px;
    height: 70px;
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    padding: 0;
    background: #fff;
    box-shadow: var(--shadow-sm);
    transition: border-color 0.3s, transform 0.2s;
}

.thumbnail-gallery .thumb.active,
.thumbnail-gallery .thumb:hover {
    border-color: var(--secondary-blue);
    transform: translateY(-1px);
}

.thumbnail-gallery .thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #fff;
    padding: 0.2rem;
}

/* Product Info Header */
.product-info-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.product-categories-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.category-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.75rem;
    background: rgba(59, 130, 246, 0.1);
    color: var(--secondary-blue);
    border-radius: 20px;
    font-size: 0.8rem;
    text-decoration: none;
    transition: all 0.3s;
}

.category-tag:hover {
    background: var(--secondary-blue);
    color: white;
}

.product-title-large {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.3;
}

.product-excerpt-large {
    color: var(--gray-600);
    font-size: 1.05rem;
    line-height: 1.6;
}

.features-highlight h4 {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.features-highlight h4 i {
    color: var(--warning-orange);
}

.features-list-modern {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.features-list-modern li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--gray-700);
}

.features-list-modern li i {
    color: var(--success-green);
    margin-top: 0.2rem;
}

.product-cta-buttons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-top: 1rem;
    width: 100%;
}

.product-cta-buttons .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    text-align: center;
}

.btn-large {
    padding: 0.9rem 1.5rem;
    font-size: 1rem;
}

.btn-success {
    background: #25D366;
    color: white;
}

.btn-success:hover {
    background: #128C7E;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--gray-300);
    color: var(--gray-700);
}

.btn-outline:hover {
    border-color: var(--secondary-blue);
    background: transparent;
    color: var(--secondary-blue);
}

/* Product Quote Modal */
.product-quote-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
}

.product-quote-modal.is-active {
    display: block;
}

.product-quote-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.product-quote-modal__dialog {
    position: relative;
    width: min(92vw, 520px);
    margin: 8vh auto 0;
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
}

.product-quote-modal__close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    background: var(--gray-100);
    color: var(--gray-700);
    cursor: pointer;
}

.product-quote-modal__desc {
    color: var(--gray-600);
    margin: 0.5rem 0 1rem;
}

.product-quote-modal__form {
    display: grid;
    gap: 0.75rem;
}

.product-quote-modal__form label {
    display: grid;
    gap: 0.35rem;
}

.product-quote-modal__form label span {
    font-size: 0.85rem;
    color: var(--gray-600);
}

.product-quote-modal__form input,
.product-quote-modal__form textarea {
    border: 1px solid var(--gray-300);
    background: #fff;
    color: var(--gray-800);
    border-radius: 10px;
    padding: 0.75rem 0.9rem;
    font-family: var(--font-primary);
    font-size: 0.95rem;
}

.product-quote-modal__form textarea {
    min-height: 96px;
    resize: vertical;
}

.product-quote-modal__form input:focus,
.product-quote-modal__form textarea:focus {
    outline: none;
    border-color: var(--secondary-blue);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.product-quote-modal__form input[disabled] {
    border: 1px solid var(--gray-200);
    background: var(--gray-50);
    color: var(--gray-700);
    border-radius: 10px;
    padding: 0.75rem 0.9rem;
    opacity: 1;
}

.product-quote-modal__form .btn {
    margin-top: 0.25rem;
}

/* Product Tabs */
.product-tabs-section {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.tabs-nav {
    display: flex;
    border-bottom: 1px solid var(--gray-200);
    background: var(--gray-50);
}

.tab-nav-btn {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    background: none;
    font-size: 0.95rem;
    color: var(--gray-500);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s;
    border-bottom: 3px solid transparent;
}

.tab-nav-btn:hover,
.tab-nav-btn.active {
    color: var(--secondary-blue);
    background: white;
}

.tab-nav-btn.active {
    border-bottom-color: var(--secondary-blue);
}

.tabs-content {
    padding: 2rem;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.product-content-rich {
    line-height: 1.8;
    color: var(--gray-700);
}

.product-content-rich h2,
.product-content-rich h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.spec-item-modern {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: 10px;
}

.spec-item-modern i {
    color: var(--secondary-blue);
}

.shipping-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.shipping-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.shipping-item i {
    font-size: 1.5rem;
    color: var(--secondary-blue);
}

.shipping-item h5 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.shipping-item p {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin: 0;
}

/* Product Sidebar */
.product-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    min-width: 0;
}

.sidebar-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.sidebar-card h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sidebar-card h4 i {
    color: var(--secondary-blue);
}

/* Quick Info */
.quick-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quick-info-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-100);
}

.quick-info-list li:last-child {
    border: none;
}

.quick-info-list .label {
    color: var(--gray-500);
    font-size: 0.9rem;
}

.quick-info-list .value {
    font-weight: 500;
    color: var(--gray-800);
}

.quick-info-list .text-success {
    color: var(--success-green);
}

/* Contact Card */
.contact-card-header {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.contact-card-header i {
    font-size: 2rem;
    color: var(--secondary-blue);
}

.contact-card-header h4 {
    margin: 0;
}

.contact-card-header p {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin: 0;
}

.contact-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s;
}

.contact-btn.phone {
    background: rgba(59, 130, 246, 0.1);
    color: var(--secondary-blue);
}

.contact-btn.whatsapp {
    background: rgba(37, 211, 102, 0.1);
    color: #25D366;
}

.contact-btn.email {
    background: rgba(107, 114, 128, 0.1);
    color: var(--gray-600);
}

.contact-btn:hover {
    transform: translateX(5px);
}

/* Category Link */
.category-link {
    display: flex;
    align-items: center;
    padding: 0.75rem 0;
    color: var(--gray-700);
    text-decoration: none;
    border-bottom: 1px solid var(--gray-100);
    transition: color 0.3s;
}

.category-link:last-child {
    border: none;
}

.category-link:hover {
    color: var(--secondary-blue);
}

.category-link .count {
    margin-left: auto;
    font-size: 0.85rem;
    color: var(--gray-400);
}

.category-link i {
    margin-left: 0.5rem;
    font-size: 0.75rem;
}

/* Share Buttons */
.share-buttons {
    display: flex;
    gap: 0.75rem;
}

.share-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: transform 0.3s;
}

.share-btn:hover {
    transform: scale(1.1);
}

.share-btn.facebook {
    background: #1877f2;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.linkedin {
    background: #0a66c2;
}

.share-btn.whatsapp {
    background: #25d366;
}

/* Related Products Modern */
.related-products-modern {
    padding: 4rem 0;
    background: white;
}

/* Button Variants */
.btn-outline-primary {
    background: transparent;
    border: 2px solid var(--secondary-blue);
    color: var(--secondary-blue);
}

.btn-outline-primary:hover {
    background: var(--secondary-blue);
    color: white;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}


/* Responsive for Archive & Single */
@media (max-width: 1024px) {
    .archive-layout {
        grid-template-columns: 1fr;
        grid-template-areas:
            "main"
            "sidebar";
    }
    
    .archive-sidebar {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .product-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .product-single-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .product-main {
        order: 1;
    }
    
    .product-sidebar {
        order: 2;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
    .product-header-card {
        grid-template-columns: 1fr;
    }

    .single-gama_product .page-hero.page-hero-compact {
        padding: 6.5rem 0 1.5rem;
    }
}

@media (max-width: 768px) {
    .page-hero .breadcrumb {
        flex-wrap: wrap;
        gap: 0.45rem;
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }

    .page-hero .breadcrumb i,
    .page-hero .breadcrumb [aria-hidden="true"] {
        font-size: 0.65rem;
        opacity: 0.65;
    }

    .page-hero .breadcrumb > span:last-child {
        flex-basis: 100%;
        min-width: 0;
        margin-top: 0.1rem;
        font-size: 0.85rem;
        font-weight: 600;
        line-height: 1.35;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        opacity: 1;
    }

    .single-gama_product .page-hero.page-hero-compact {
        padding: 5.75rem 0 1rem;
    }

    .single-gama_product .page-hero .hero-shape.shape-1 {
        width: 240px;
        height: 240px;
        top: -70px;
        right: -70px;
        opacity: 0.55;
    }

    .single-gama_product .page-hero .hero-shape.shape-2 {
        width: 180px;
        height: 180px;
        bottom: -70px;
        left: -70px;
        opacity: 0.35;
    }

    .single-gama_product .page-hero .breadcrumb {
        margin-bottom: 0;
        padding: 0.65rem 0.75rem;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.09);
        border: 1px solid rgba(255, 255, 255, 0.18);
    }

    .single-gama_product .page-hero .breadcrumb > span:last-child {
        margin-top: 0.2rem;
        font-size: 0.82rem;
        line-height: 1.3;
    }

    .product-single-modern {
        padding: 2rem 0 3.5rem;
    }

    .product-main {
        gap: 1.5rem;
    }

    .archive-sidebar {
        grid-template-columns: 1fr;
    }

    .products-archive-modern .product-footer {
        flex-direction: column;
    }

    .products-archive-modern .product-footer .btn {
        width: 100%;
        justify-content: center;
    }

    .products-archive-modern .product-footer .btn-primary {
        display: none;
    }

    .home .products .product-card .product-content .btn {
        display: flex;
        width: 100%;
        justify-content: center;
    }
    
    .product-grid-modern,
    .product-grid-modern.four-cols {
        grid-template-columns: 1fr;
    }
    
    .archive-topbar {
        flex-direction: column;
        align-items: stretch;
    }
    
    .product-sidebar {
        grid-template-columns: 1fr;
    }

    .product-header-card {
        padding: 1.25rem;
        gap: 1.25rem;
    }

    .product-title-large {
        font-size: 1.55rem;
    }

    .product-tabs-section,
    .sidebar-card {
        border-radius: 14px;
    }

    .tabs-content,
    .sidebar-card {
        padding: 1.1rem;
    }
    
    .product-cta-buttons {
        grid-template-columns: 1fr;
    }
    
    .specs-grid,
    .shipping-info {
        grid-template-columns: 1fr;
    }
    
    .tabs-nav {
        flex-direction: column;
    }
    
    .tab-nav-btn {
        border-bottom: none;
        border-left: 3px solid transparent;
    }
    
    .tab-nav-btn.active {
        border-left-color: var(--secondary-blue);
        border-bottom-color: transparent;
    }
}

/* List View Styles */
.product-grid-modern.list-view {
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.product-grid-modern.list-view .product-card-modern {
    display: flex;
    flex-direction: row;
    height: auto;
    min-height: 220px;
}

.product-grid-modern.list-view .product-image-wrap {
    width: 300px;
    padding-top: 0;
    flex-shrink: 0;
    position: relative;
    height: auto;
}

.product-grid-modern.list-view .product-image-wrap img {
    position: relative;
    height: 100%;
}

.product-grid-modern.list-view .product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.5rem 2rem;
}

.product-grid-modern.list-view .product-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.product-grid-modern.list-view .product-excerpt {
    margin-bottom: 1rem;
    display: block; /* Ensure excerpt is visible in list view */
}

.product-grid-modern.list-view .product-features-mini {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.product-grid-modern.list-view .product-footer {
    justify-content: flex-start;
    gap: 1rem;
}

.product-grid-modern.list-view .product-footer .btn {
    flex: 0 0 auto;
    padding: 0.75rem 1.5rem;
}

@media (max-width: 768px) {
    .product-grid-modern.list-view .product-card-modern {
        flex-direction: column;
    }
    
    .product-grid-modern.list-view .product-image-wrap {
        width: 100%;
        height: 250px;
    }
}

/* Stacked CTA Widget */
.cta-content-stacked {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    padding: 0.5rem;
}

.cta-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.cta-icon i {
    font-size: 1.75rem;
    color: white;
}

.cta-text h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    justify-content: center;
}

.cta-text p {
    color: white;
    opacity: 0.9;
    font-size: 0.9rem;
    margin: 0;
}

.btn-white {
    background: white;
    color: var(--secondary-blue);
    width: 100%;
    justify-content: center;
    font-weight: 600;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: all 0.3s;
}

.btn-white:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
}



/* Fix Product Search Form Layout */
.product-search-form {
    width: 100%;
}

.product-search-form button {
    height: auto;
    margin: 0;
}

/* Mobile Product Grid - 2 Columns */
@media (max-width: 768px) {
    .product-grid-modern:not(.list-view),
    .product-grid-modern.four-cols {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.75rem !important;
    }

    /* Fix image height on mobile */
    .product-grid-modern:not(.list-view) .product-image-wrap {
        height: 160px; 
        padding-top: 0;
    }
    
    .product-grid-modern:not(.list-view) .product-info {
        padding: 0.75rem;
    }
    
    .product-grid-modern:not(.list-view) .product-title {
        font-size: 0.9rem;
        margin: 0.25rem 0;
    }
    
    /* Hide specific elements on mobile for cleaner look */
    .product-grid-modern:not(.list-view) .product-excerpt, 
    .product-grid-modern:not(.list-view) .product-features-mini {
        display: none;
    }
}
