/* =====================================================
   YALLA - Professional Website Styles
   ===================================================== */

/* ---------- CSS Variables ---------- */
:root {
    /* Colors */
    --primary: #00b4d8;
    --primary-dark: #0096c7;
    --primary-light: #90e0ef;
    --accent: #ff6b35;
    --dark: #1a1a2e;
    --dark-secondary: #16213e;
    --light: #f8f9fa;
    --white: #ffffff;
    --gray-100: #f1f3f5;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;

    /* Typography */
    --font-primary: 'Quicksand', system-ui, sans-serif;
    --font-display: 'Quicksand', sans-serif;

    /* Spacing */
    --section-padding: 100px 0;
    --container-max: 1200px;

    /* Effects */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.16);
    --shadow-glow: 0 0 40px rgba(0, 180, 216, 0.3);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

body {
    font-family: var(--font-primary);
    background-color: var(--white);
    color: var(--gray-800);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ---------- Typography ---------- */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: 1.25rem;
}

p {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ---------- Utilities ---------- */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    margin-bottom: 16px;
}

.section-label::before {
    content: '';
    width: 40px;
    height: 2px;
    background: var(--primary);
}

.text-center {
    text-align: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(0, 180, 216, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 180, 216, 0.4);
}

.btn-outline {
    background: transparent;
    border-color: var(--white);
    color: var(--white);
    border-width: 2px;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
}

/* ---------- Animations ---------- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- Header ---------- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: background 0.3s ease, backdrop-filter 0.3s ease, -webkit-backdrop-filter 0.3s ease, border-bottom 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
    background: rgba(0, 0, 0, 0);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    border-bottom: 1px solid rgba(255, 255, 255, 0);
}

header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-md);
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

header.scrolled .logo {
    color: var(--dark);
}

header.scrolled .logo span {
    color: var(--primary);
}

header.scrolled .nav-links a {
    color: var(--gray-700);
    text-shadow: none;
}

header.scrolled .nav-links a:hover {
    color: var(--primary);
}

header.scrolled .nav-links a::after {
    background: var(--primary);
}

header.scrolled .btn-primary {
    background: var(--primary);
    color: var(--white);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.02em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
}

.logo span {
    color: var(--primary-light);
    font-weight: 800;
}

.logo-img {
    height: 42px;
    width: auto;
    display: block;
}

.logo-img--dark {
    display: none;
}

header.scrolled .logo-img--light {
    display: none;
}

header.scrolled .logo-img--dark {
    display: block;
}

.logo--footer {
    text-shadow: none;
    font-size: 0;
    line-height: 0;
}

.logo-img--footer {
    height: 56px;
}

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

.nav-links a {
    font-size: 1.07rem;
    font-weight: 600;
    color: var(--white);
    position: relative;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-links a:hover {
    color: var(--white);
    transform: translateY(-2px);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    margin-left: 24px;
    padding: 10px 40px;
    height: auto;
    min-width: 140px;
}

.nav-cta svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

header .btn-primary {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

header .btn-primary:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* ---------- HERO SECTION - Creative Design ---------- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: url('images/banner_1.png') center/cover no-repeat;
    padding-top: 100px;
}

/* Mobile banner image */
@media (max-width: 768px) {
    .hero {
        background-image: url('images/banner_mobile.png');
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(0, 180, 216, 0.08) 0%, transparent 60%);
    z-index: 0;
}

.hero-wrapper {
    display: none;
}

.hero-content {
    animation: slideIn 1s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 24px;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero-title {
    margin-bottom: 24px;
    line-height: 1.1;
    color: var(--white);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.hero-title span {
    display: block;
    color: var(--primary-light);
    text-shadow: 0 2px 15px rgba(144, 224, 239, 0.5);
}

.hero-description {
    font-size: 1.2rem;
    max-width: 500px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-main {
    position: relative;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

.hero-image-main img {
    max-height: 500px;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.2));
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
}

.hero-shape-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-light) 0%, rgba(0, 180, 216, 0.2) 100%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-shape-2 {
    width: 120px;
    height: 120px;
    background: var(--accent);
    top: 10%;
    right: 10%;
    animation: float 4s ease-in-out infinite 0.5s;
}

.hero-shape-3 {
    width: 80px;
    height: 80px;
    background: var(--primary);
    bottom: 20%;
    left: 5%;
    animation: float 5s ease-in-out infinite 1s;
}

/* ---------- About Section ---------- */
.about {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--white) 0%, rgba(0, 180, 216, 0.04) 100%);
}

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

.about-image {
    position: relative;
}

.about-image img {
    border-radius: var(--radius-xl);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.12);
}

.about-image::before {
    content: none;
}

.about-content h2 {
    margin-bottom: 24px;
}

.about-lead {
    color: var(--gray-700);
    font-weight: 600;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 28px;
}

.about-highlight {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-lg);
    padding: 18px 18px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
}

.about-highlight h4 {
    margin-bottom: 6px;
    font-size: 1.05rem;
}

.about-highlight p {
    margin: 0;
    font-size: 0.98rem;
}

/* ---------- Video Section ---------- */
.video-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.hero-video.zoom-in {
    transform: scale(1.2);
}

.hero-video.zoom-out {
    transform: scale(1);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.3) 0%,
            rgba(0, 0, 0, 0.1) 50%,
            rgba(0, 0, 0, 0.3) 100%);
    pointer-events: none;
    z-index: 1;
}

/* Responsive adjustments for video section */
@media (max-width: 768px) {
    .video-section {
        height: 70vh;
        min-height: 400px;
    }
}

@media (max-width: 480px) {
    .video-section {
        height: 60vh;
        min-height: 300px;
    }
}

/* ---------- Products Section ---------- */
.products {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.05) 0%, rgba(144, 224, 239, 0.1) 50%, rgba(255, 255, 255, 0.95) 100%);
}

.products-header {
    text-align: center;
    max-width: 700px;
    /* Reduce gap between heading and category cards */
    margin: 0 auto 48px;
}

.products-header h2 {
    margin-bottom: 16px;
}

.products-header p {
    font-size: 1.1rem;
    color: var(--gray-600);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    align-items: stretch;
    margin-top: 100px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: visible;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    display: flex;
    flex-direction: column;
    margin: 0;
    height: 100%;
    padding-top: 100px;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(0, 180, 216, 0.2);
}

.product-image-wrapper {
    height: 200px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    overflow: visible;
    margin: 0;
    width: 100%;
    z-index: 2;
}

.product-image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(0, 180, 216, 0.03) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card:hover .product-image-wrapper::after {
    opacity: 1;
}

.product-image-wrapper img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.15));
    margin: 0 auto;
    display: block;
    position: relative;
    z-index: 1;
}

.product-card:hover .product-image-wrapper img {
    transform: scale(1.05) translateY(-4px);
}

.product-info {
    padding: 20px 24px 32px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    margin: 0;
}

.product-category {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--primary);
    margin: 0 0 10px 0;
    display: block;
    text-align: center;
}

.product-info h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 12px 0;
    line-height: 1.3;
    text-align: center;
}

.product-info p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
    text-align: center;
    max-width: 100%;
}

/* Category Cards for Home Page */
.categories-grid {
    display: grid;
    /* 4-up layout (we only show 4 categories) */
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    align-items: stretch;
    margin-top: 24px;
}

.category-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 180, 216, 0.15);
    border-color: rgba(0, 180, 216, 0.2);
}

.category-image-wrapper {
    width: 100%;
    height: 240px;
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.05) 0%, rgba(144, 224, 239, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.category-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    border-radius: var(--radius-md);
}

.category-card:hover .category-image-wrapper img {
    transform: scale(1.1);
}

.category-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 5px 10px;
    border-radius: var(--radius-sm);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.category-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-grow: 1;
    text-align: center;
}

.category-info h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
    line-height: 1.3;
}

.category-info p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.5;
    margin: 0;
}

/* ---------- Services Section (Home) ---------- */
.services {
    padding: 90px 0;
    background: linear-gradient(180deg, rgba(144, 224, 239, 0.25) 0%, rgba(255, 255, 255, 0.9) 45%, rgba(144, 224, 239, 0.25) 100%);
}

.services-header {
    text-align: center;
    margin-bottom: 26px;
}

.services-header h2 {
    margin: 0;
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    letter-spacing: -0.02em;
}

.services-brand {
    color: var(--primary);
}

.services-panel {
    border-radius: 22px;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.78) 100%),
        radial-gradient(circle at 20% 20%, rgba(0, 180, 216, 0.22) 0%, transparent 55%),
        radial-gradient(circle at 80% 10%, rgba(144, 224, 239, 0.18) 0%, transparent 55%),
        linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(10, 10, 10, 0.95) 100%);
    box-shadow: 0 14px 50px rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
    padding: 34px 26px;
    align-items: stretch;
}

.service-card {
    text-align: center;
    padding: 18px 14px 20px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: var(--transition);
    color: rgba(255, 255, 255, 0.92);
}

.service-card:hover {
    transform: translateY(-6px);
    background: rgba(0, 180, 216, 0.08);
    border-color: rgba(0, 180, 216, 0.35);
    box-shadow: 0 10px 34px rgba(0, 180, 216, 0.12);
}

.service-icon {
    width: 78px;
    height: 78px;
    margin: 0 auto 12px;
    display: grid;
    place-items: center;
    color: var(--primary-light);
    filter: drop-shadow(0 6px 14px rgba(0, 180, 216, 0.18));
}

.service-icon svg {
    width: 78px;
    height: 78px;
}

.service-card h3 {
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0 0 10px 0;
    color: rgba(255, 255, 255, 0.92);
}

.service-card p {
    font-size: 0.9rem;
    line-height: 1.55;
    margin: 0;
    color: rgba(255, 255, 255, 0.75);
}

/* ---------- Showcase / Partners Carousel (Home) ---------- */
.showcase {
    padding: 90px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.showcase::before {
    content: '';
    position: absolute;
    inset: -30% -20%;
    background: radial-gradient(circle, rgba(0, 180, 216, 0.10) 0%, transparent 60%);
    z-index: 0;
}

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

.showcase-header {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 26px;
}

.showcase-header h2 {
    margin-bottom: 10px;
}

.showcase-header p {
    margin-bottom: 0;
}

.showcase-fullbleed {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 0;
}

.showcase-carousel {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    row-gap: 14px;
    align-items: center;
}

.showcase-viewport {
    width: 100%;
    border-radius: var(--radius-xl);
    background: linear-gradient(180deg, rgba(144, 224, 239, 0.45) 0%, rgba(255, 255, 255, 0.98) 65%);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 16px 54px rgba(0, 0, 0, 0.10);
    overflow: hidden;
}

.showcase-fullbleed .showcase-viewport {
    border-radius: 0;
}

.showcase-slides {
    position: relative;
}

.showcase-slide {
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
}

.showcase-slide.is-active {
    display: grid;
    animation: showcaseFadeUp 0.5s ease both;
}

@keyframes showcaseFadeUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.showcase-media {
    position: relative;
    background: rgba(255, 255, 255, 0.85);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    height: clamp(240px, 34vw, 420px);
    overflow: hidden;
}

.showcase-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(1.05) contrast(1.02);
}

.showcase-media.is-missing {
    display: grid;
    place-items: center;
}

.showcase-media.is-missing::after {
    content: 'Image unavailable';
    color: rgba(0, 0, 0, 0.65);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.85rem;
}

.showcase-content {
    padding: 46px 46px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.showcase-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--primary-dark);
    background: rgba(0, 180, 216, 0.10);
    border: 1px solid rgba(0, 180, 216, 0.18);
    padding: 8px 14px;
    border-radius: 999px;
    margin-bottom: 18px;
}

.showcase-content h3 {
    font-size: clamp(1.5rem, 2.5vw, 2.2rem);
    color: var(--dark);
    margin-bottom: 18px;
    line-height: 1.2;
}

.showcase-content p {
    margin: 0;
    color: var(--gray-800);
    font-size: 1.15rem;
    line-height: 1.85;
}

.showcase-nav {
    display: none;
}

.showcase-nav:hover {
    transform: translateY(-3px);
    background: var(--white);
    border-color: rgba(0, 180, 216, 0.6);
    box-shadow: 0 14px 40px rgba(0, 180, 216, 0.18);
}

.showcase-nav:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.showcase-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 12px;
}

.showcase-tab {
    appearance: none;
    border: 2px solid rgba(0, 180, 216, 0.22);
    background: rgba(255, 255, 255, 0.9);
    color: var(--gray-800);
    border-radius: 999px;
    padding: 10px 18px;
    font-weight: 800;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 8px 26px rgba(0, 0, 0, 0.06);
    white-space: nowrap;
}

.showcase-tab:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 180, 216, 0.45);
    box-shadow: 0 14px 40px rgba(0, 180, 216, 0.16);
}

.showcase-tab.is-active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 14px 40px rgba(0, 180, 216, 0.22);
}

/* ---------- Machines Section ---------- */
.machines {
    padding: 40px 0;
    background: var(--white);
}


.machines-header h2 {
    margin-bottom: 16px;
}

.machines-header p {
    font-size: 1.1rem;
    color: var(--gray-600);
}

.machines-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    margin-bottom: 60px;
}

.machine-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.machine-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 180, 216, 0.15);
    border-color: rgba(0, 180, 216, 0.2);
}

.machine-image-wrapper {
    width: 100%;
    height: 450px;
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.05) 0%, rgba(144, 224, 239, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.machine-image-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(0, 180, 216, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.machine-card:hover .machine-image-wrapper::before {
    opacity: 1;
}

.machine-image-wrapper img {
    width: auto;
    height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    z-index: 1;
}

.machine-card:hover .machine-image-wrapper img {
    transform: scale(1.05);
}

.machine-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-200);
    color: var(--gray-500);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    z-index: 1;
}

.machine-info {
    padding: 32px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.machine-type {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--primary);
    margin-bottom: 12px;
    display: block;
}

.machine-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.machine-info p {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.machine-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.machine-features li {
    font-size: 0.9rem;
    color: var(--gray-700);
    display: flex;
    align-items: center;
    gap: 8px;
}

.machine-features li::before {
    content: '✓';
    color: var(--primary);
    font-weight: 700;
    font-size: 1rem;
}

.machines-cta {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.05) 0%, rgba(144, 224, 239, 0.1) 100%);
    border-radius: var(--radius-lg);
    margin-top: 40px;
}

.machines-cta p {
    font-size: 1.1rem;
    color: var(--gray-700);
    margin-bottom: 24px;
}

/* Responsive adjustments for machines section */
@media (max-width: 1200px) {
    .machines-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .machine-image-wrapper {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .machines {
        padding: 30px 0;
    }

    .machines-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .machine-image-wrapper {
        height: 400px;
        padding: 20px;
    }

    .machine-info {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .machine-image-wrapper {
        height: 350px;
        padding: 15px;
    }
}

/* Responsive adjustments for showcase carousel */
@media (max-width: 992px) {
    .showcase-carousel {
        row-gap: 12px;
    }

    .showcase-nav {
        width: 100%;
        justify-self: stretch;
    }
}

@media (max-width: 768px) {
    .showcase {
        padding: 70px 0;
    }

    .showcase-slide {
        grid-template-columns: 1fr;
    }

    .showcase-media {
        border-top: 1px solid rgba(0, 0, 0, 0.06);
        height: clamp(200px, 52vw, 320px);
    }

    .showcase-content {
        padding: 28px 22px;
    }

    .showcase-content p {
        font-size: 1.05rem;
    }
}

/* Full-size machine layout for machines page */
.machines-list {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-bottom: 40px;
}

.machine-item {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: center;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.machine-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 180, 216, 0.15);
    border-color: rgba(0, 180, 216, 0.2);
}

.machine-item:nth-child(even) {
    grid-template-columns: 1.2fr 1fr;
}

.machine-item:nth-child(even) .machine-image-full {
    order: 2;
}

.machine-item:nth-child(even) .machine-details {
    order: 1;
}

.machine-image-full {
    width: 100%;
    max-width: 400px;
    max-height: 500px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.machine-image-full img {
    width: 100%;
    height: 100%;
    max-height: 500px;
    object-fit: contain;
    border-radius: var(--radius-md);
    display: block;
}

.machine-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.machine-details .machine-type {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--primary);
    margin-bottom: 8px;
    display: block;
}

.machine-details h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.machine-details p {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 0;
}

/* Responsive adjustments for full-size machine layout */
@media (max-width: 992px) {
    .machine-item {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 24px;
    }

    .machine-item:nth-child(even) {
        grid-template-columns: 1fr;
    }

    .machine-item:nth-child(even) .machine-image-full,
    .machine-item:nth-child(even) .machine-details {
        order: unset;
    }

    .machine-image-full {
        max-width: 350px;
        max-height: 450px;
    }

    .machine-image-full img {
        max-height: 450px;
    }

    .machine-details h3 {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .machines-list {
        gap: 40px;
    }

    .machine-item {
        padding: 24px;
        gap: 30px;
    }

    .machine-image-full {
        max-width: 100%;
        max-height: 400px;
    }

    .machine-image-full img {
        max-height: 400px;
    }

    .machine-details h3 {
        font-size: 1.5rem;
    }

    .machine-details p {
        font-size: 1rem;
    }
}

/* ---------- Yalla Consumer Section ---------- */
.consumers {
    padding: 80px 0;
    background: var(--white);
}

.consumers.suppliers {
    background: var(--light);
}

/* Suppliers logos - 5 columns layout */

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

.consumers-header .section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary);
    margin-bottom: 12px;
    padding: 6px 16px;
    background: rgba(0, 180, 216, 0.1);
    border-radius: 50px;
}

.consumers-header h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    color: var(--dark);
    margin-bottom: 12px;
}

.consumers-header p {
    font-size: 0.95rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

.consumers-logos {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 32px 24px;
    align-items: center;
    justify-items: center;
    width: 100%;
    margin: 0 auto;
}

.suppliers .consumers-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px 32px;
}

.suppliers .consumer-logo {
    flex: 0 0 auto;
}

#consumers .consumers-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px 32px;
}

#consumers .consumer-logo {
    flex: 0 0 auto;
}

.consumer-logo {
    width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 50%;
    padding: 0;
    box-shadow: none;
    border: none;
    transition: var(--transition);
    position: relative;
    overflow: visible;
}

.suppliers .consumer-logo {
    width: 200px;
    height: 200px;
}

#consumers .consumer-logo {
    width: 200px;
    height: 200px;
}

.consumer-logo::before {
    content: none;
}

.consumer-logo:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: none;
}

.consumer-logo:hover::before {
    opacity: 0;
}

.consumer-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-sizing: border-box;
    padding: 0;
    background: var(--white);
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08);
    filter: grayscale(0%);
    opacity: 1;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.consumer-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.08);
    box-shadow: 0 12px 40px rgba(0, 180, 216, 0.25), 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.logo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-200);
    border-radius: var(--radius-md);
    color: var(--gray-500);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    z-index: 1;
}

/* Responsive adjustments for consumer logos */
@media (min-width: 1400px) {
    .consumers-logos {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 40px 28px;
    }

    .consumer-logo {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 1200px) {
    .consumers-logos {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 28px 20px;
    }

    .consumer-logo {
        width: 130px;
        height: 130px;
    }

    .suppliers .consumers-logos {
        gap: 32px 24px;
    }

    .suppliers .consumer-logo {
        width: 180px;
        height: 180px;
    }

    #consumers .consumers-logos {
        gap: 32px 24px;
    }

    #consumers .consumer-logo {
        width: 180px;
        height: 180px;
    }
}

@media (max-width: 968px) {
    .consumers-logos {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 24px 16px;
    }

    .consumer-logo {
        width: 120px;
        height: 120px;
    }

    .suppliers .consumers-logos {
        gap: 28px 20px;
    }

    .suppliers .consumer-logo {
        width: 150px;
        height: 150px;
    }

    #consumers .consumers-logos {
        gap: 28px 20px;
    }

    #consumers .consumer-logo {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 768px) {
    .consumers {
        padding: 60px 0;
    }

    .consumers-header {
        margin-bottom: 40px;
    }

    .consumers-logos {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 20px 12px;
    }

    .consumer-logo {
        width: 100px;
        height: 100px;
    }

    .suppliers .consumers-logos {
        gap: 24px 16px;
    }

    .suppliers .consumer-logo {
        width: 140px;
        height: 140px;
    }

    #consumers .consumers-logos {
        gap: 24px 16px;
    }

    #consumers .consumer-logo {
        width: 140px;
        height: 140px;
    }
}

@media (max-width: 480px) {
    .consumers-logos {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .consumer-logo {
        width: 90px;
        height: 90px;
    }

    .suppliers .consumers-logos {
        gap: 20px 12px;
    }

    .suppliers .consumer-logo {
        width: 120px;
        height: 120px;
    }

    #consumers .consumers-logos {
        gap: 20px 12px;
    }

    #consumers .consumer-logo {
        width: 120px;
        height: 120px;
    }
}

/* ---------- Stats Section ---------- */
.stats {
    padding: 80px 0;
    background: var(--dark);
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item h3 {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.stat-item p {
    color: var(--gray-400);
    margin-bottom: 0;
}

/* ---------- CTA Section ---------- */
.cta {
    padding: var(--section-padding);
    background: linear-gradient(180deg, rgba(0, 180, 216, 0.06) 0%, var(--white) 100%);
}

.cta-card {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 28px;
    align-items: center;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-xl);
    padding: 42px 44px;
    box-shadow: 0 16px 54px rgba(0, 0, 0, 0.10);
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    inset: -40% -30%;
    background: radial-gradient(circle, rgba(0, 180, 216, 0.14) 0%, transparent 60%);
    z-index: 0;
}

.cta-card>* {
    position: relative;
    z-index: 1;
}

.cta-copy h2 {
    margin-bottom: 10px;
}

.cta-copy p {
    margin: 0;
    max-width: 52ch;
    color: var(--gray-700);
}

.cta-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    flex-wrap: wrap;
}

.cta-outline {
    border-color: var(--primary);
    color: var(--primary);
    background: transparent;
}

.cta-outline:hover {
    background: rgba(0, 180, 216, 0.08);
    border-color: var(--primary-dark);
    color: var(--primary-dark);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 24px;
}

/* ---------- Footer ---------- */
footer {
    background: var(--dark);
    color: var(--gray-400);
    padding: 100px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 80px;
    margin-bottom: 80px;
    align-items: start;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-brand .logo {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 0;
    text-decoration: none;
    transition: var(--transition);
}

.footer-brand .logo:hover {
    transform: translateY(-2px);
}

.footer-brand .logo span {
    color: var(--primary);
}

.footer-brand p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-400);
    max-width: 400px;
    margin-top: 0;
}

.footer-column h4 {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 32px;
}

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

.footer-column li {
    margin-bottom: 16px;
}

.footer-column a {
    color: var(--gray-400);
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.footer-column a:hover {
    color: var(--primary);
    transform: translateX(4px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 40px;
    text-align: center;
    font-size: 0.9rem;
    color: var(--gray-500);
}

/* ---------- Responsive ---------- */
/* ---------- Mobile Menu Toggle Button ---------- */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
    display: block;
}

header.scrolled .mobile-menu-toggle span {
    background: var(--dark);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ---------- Mobile Menu Backdrop ---------- */
.mobile-menu-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), visibility 0.4s;
}

.mobile-menu-backdrop.active {
    opacity: 1;
    visibility: visible;
}

/* ---------- Mobile Menu Overlay ---------- */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: 75%;
    height: 100vh;
    background: #00b4d8;
    z-index: 9999;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow-y: auto;
    padding: 80px 40px 40px;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.2);
}

.mobile-menu-overlay.active {
    transform: translateX(0);
}

.mobile-menu-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--white);
    padding: 8px;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-close svg {
    width: 28px;
    height: 28px;
}

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

.mobile-menu-item {
    display: block;
    padding: 20px 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.mobile-menu-item:hover {
    color: rgba(255, 255, 255, 0.8);
    padding-left: 10px;
}

.mobile-menu-item:last-child {
    border-bottom: none;
}

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

    .categories-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }

    .services-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 16px;
        padding: 28px 22px;
    }
}

@media (max-width: 992px) {

    .hero-wrapper,
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .footer-brand .logo {
        font-size: 2.5rem;
    }

    .hero-visual {
        height: 400px;
    }

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

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

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

    .services {
        padding: 80px 0;
    }

    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
        padding: 24px 18px;
    }

    .products {
        padding: 80px 0;
    }

    .products-header {
        margin-bottom: 150px;
    }

    .products-grid {
        margin-top: 80px;
    }

    .product-image-wrapper {
        height: 280px;
    }

    .nav-links,
    .nav-cta {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .logo-img {
        height: 36px;
    }

    .logo-img--footer {
        height: 48px;
    }
}

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

    .products-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

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

    .category-image-wrapper {
        height: 160px;
    }

    .category-info {
        padding: 16px;
    }

    .category-info h3 {
        font-size: 1.1rem;
    }

    .category-info p {
        font-size: 0.85rem;
    }

    .services-header h2 {
        font-size: clamp(2rem, 7vw, 2.6rem);
    }

    .services-grid {
        grid-template-columns: 1fr;
        padding: 20px 16px;
    }

    .service-icon,
    .service-icon svg {
        width: 70px;
        height: 70px;
    }

    .products {
        padding: 60px 0;
    }

    .products-header {
        margin-bottom: 120px;
    }

    .products-grid {
        margin-top: 60px;
    }

    .product-image-wrapper {
        height: 260px;
    }

    .product-info {
        padding: 24px 20px;
    }

    .about-highlights {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .cta-card {
        grid-template-columns: 1fr;
        padding: 28px 22px;
        text-align: left;
    }

    .cta-actions {
        justify-content: flex-start;
    }
}

/* ---------- Contact Page Styles ---------- */
.contact-hero {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 25%, var(--white) 50%, var(--primary-light) 75%, var(--primary-dark) 100%);
    text-align: center;
    color: var(--white);
    position: relative;
}

.contact-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.7) 0%, rgba(0, 150, 199, 0.7) 100%);
    z-index: 0;
}

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

.contact-hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.contact-hero-content .section-label {
    color: var(--white);
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.contact-hero-content .section-label::before {
    background: var(--white);
}

.contact-hero-content h1 {
    margin-bottom: 16px;
    color: var(--white);
}

.contact-hero-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

.contact-section {
    padding: 100px 0;
    background: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-form-wrapper h2,
.contact-info-wrapper h2 {
    margin-bottom: 12px;
}

.contact-form-description,
.contact-info-description {
    font-size: 1rem;
    color: var(--gray-600);
    margin-bottom: 32px;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    font-size: 1rem;
    font-family: var(--font-primary);
    color: var(--dark);
    background: var(--white);
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-md);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(0, 180, 216, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
    font-family: var(--font-primary);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    padding-right: 50px;
}

.btn-submit {
    width: 100%;
    margin-top: 8px;
    padding: 18px 32px;
    font-size: 1.05rem;
}

.form-message {
    display: none;
    padding: 16px 20px;
    border-radius: var(--radius-md);
    margin-top: 8px;
}

.form-success {
    background: rgba(0, 180, 216, 0.1);
    color: var(--primary-dark);
    border: 2px solid var(--primary);
    padding: 12px 16px;
    border-radius: var(--radius-md);
    font-weight: 600;
}

.form-error {
    background: rgba(255, 107, 53, 0.1);
    color: var(--accent);
    border: 2px solid var(--accent);
    padding: 12px 16px;
    border-radius: var(--radius-md);
    font-weight: 600;
}

/* Contact Info Cards */
.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 48px;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: var(--gray-100);
    border-radius: var(--radius-md);
    transition: var(--transition);
    border: 2px solid transparent;
}

.contact-info-card:hover {
    background: var(--white);
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-content h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--dark);
}

.contact-info-content p {
    font-size: 0.95rem;
    color: var(--gray-600);
    margin-bottom: 0;
    line-height: 1.6;
}

.contact-info-content a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

.contact-info-content a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Social Links */
.social-links {
    padding-top: 32px;
    border-top: 2px solid var(--gray-200);
}

.social-links h3 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.social-icons {
    display: flex;
    gap: 16px;
}

.social-icon {
    width: 44px;
    height: 44px;
    background: var(--gray-100);
    color: var(--dark);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.social-icon:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

/* Map Section */
.map-section {
    width: 100%;
    height: 500px;
    background: var(--gray-200);
    position: relative;
}

.map-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* Responsive adjustments for contact page */
@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contact-hero {
        padding: 140px 0 60px;
    }

    .contact-section {
        padding: 80px 0;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 120px 0 40px;
    }

    .contact-hero-content h1 {
        font-size: 2rem;
    }

    .contact-hero-content p {
        font-size: 1rem;
    }

    .contact-section {
        padding: 60px 0;
    }

    .contact-info-card {
        padding: 20px;
    }

    .map-section {
        height: 400px;
    }
}

/* ---------- Machines Page Styles ---------- */
.machines-hero {
    padding: 120px 0 40px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 25%, var(--white) 50%, var(--primary-light) 75%, var(--primary-dark) 100%);
    text-align: center;
    color: var(--white);
    position: relative;
}

.machines-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.7) 0%, rgba(0, 150, 199, 0.7) 100%);
    z-index: 0;
}

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

.machines-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.machines-hero-content .section-label {
    color: var(--white);
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.machines-hero-content .section-label::before {
    background: var(--white);
}

.machines-hero-content h1 {
    margin-bottom: 0;
    color: var(--white);
    font-size: clamp(2rem, 5vw, 3.5rem);
}

/* Bilingual Message Section */
.bilingual-message {
    padding: 40px 0;
    background: linear-gradient(135deg, var(--white) 0%, rgba(0, 180, 216, 0.03) 50%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.bilingual-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 50%, var(--primary) 100%);
}

.bilingual-content {
    max-width: 1100px;
    margin: 0 auto;
}

.bilingual-text-wrapper {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: center;
    background: var(--white);
    padding: 40px 50px;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 24px rgba(0, 180, 216, 0.1);
    border: 1px solid rgba(0, 180, 216, 0.1);
    position: relative;
}

.bilingual-text-wrapper::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, var(--primary) 100%);
    border-radius: var(--radius-xl);
    z-index: -1;
    opacity: 0.1;
}

.text-block {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.text-icon {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 4px;
}

.text-en .text-icon {
    color: var(--primary);
}

.text-ar .text-icon {
    color: var(--primary-dark);
}

.bilingual-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--dark);
    font-weight: 500;
    text-align: center;
    margin: 0;
    letter-spacing: 0.01em;
}

.text-ar .bilingual-text {
    font-family: 'Cairo', 'Arial', sans-serif;
    direction: rtl;
    font-weight: 600;
}

.text-divider {
    width: 2px;
    height: 100%;
    min-height: 120px;
    background: linear-gradient(180deg, transparent 0%, var(--primary) 20%, var(--primary-light) 50%, var(--primary) 80%, transparent 100%);
    border-radius: 2px;
    flex-shrink: 0;
}

/* Responsive adjustments for bilingual section */
@media (max-width: 992px) {
    .bilingual-text-wrapper {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 32px 28px;
    }

    .text-divider {
        width: 100%;
        height: 2px;
        min-height: 2px;
        background: linear-gradient(90deg, transparent 0%, var(--primary) 20%, var(--primary-light) 50%, var(--primary) 80%, transparent 100%);
    }

    .bilingual-text {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .bilingual-message {
        padding: 30px 0;
    }

    .bilingual-text-wrapper {
        padding: 30px 24px;
        gap: 24px;
    }

    .text-icon {
        font-size: 1.75rem;
    }

    .bilingual-text {
        font-size: 1rem;
        line-height: 1.7;
    }
}

/* Machines Features Section */
.machines-features {
    padding: 60px 0;
    background: linear-gradient(180deg, var(--white) 0%, rgba(0, 180, 216, 0.02) 100%);
    position: relative;
}

.machines-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--primary) 50%, transparent 100%);
}

.features-header {
    text-align: center;
    margin-bottom: 60px;
}

.features-header h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--dark);
    margin-bottom: 12px;
    font-weight: 700;
}

.features-header p {
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    position: relative;
    height: 100%;
}

.feature-card-inner {
    background: var(--white);
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: var(--transition);
    border: 2px solid var(--gray-200);
    position: relative;
    overflow: hidden;
}

.feature-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card:hover .feature-card-inner {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 12px 40px rgba(0, 180, 216, 0.15);
}

.feature-card:hover .feature-card-inner::before {
    transform: scaleX(1);
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 8px 24px rgba(0, 180, 216, 0.25);
    transition: var(--transition);
    position: relative;
}

.feature-card:hover .feature-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 32px rgba(0, 180, 216, 0.35);
}

.feature-icon-wrapper svg {
    width: 28px;
    height: 28px;
    color: var(--white);
    stroke: currentColor;
    fill: none;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--dark);
    font-weight: 700;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 0;
    flex-grow: 1;
}

/* Responsive adjustments for machines page */
@media (max-width: 992px) {
    .machines-hero {
        padding: 100px 0 30px;
    }

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

    .feature-card-inner {
        padding: 32px 24px;
    }

    .feature-icon-wrapper {
        width: 72px;
        height: 72px;
        margin-bottom: 20px;
    }

    .feature-icon-wrapper svg {
        width: 26px;
        height: 26px;
    }

    .feature-card h3 {
        font-size: 1.2rem;
    }

}

@media (max-width: 768px) {
    .machines-hero {
        padding: 90px 0 20px;
    }

    .machines-hero-content h1 {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card-inner {
        padding: 28px 20px;
    }

    .feature-icon-wrapper {
        width: 64px;
        height: 64px;
        margin-bottom: 16px;
    }

    .feature-icon-wrapper svg {
        width: 24px;
        height: 24px;
    }

    .feature-card h3 {
        font-size: 1.15rem;
        margin-bottom: 10px;
    }

    .feature-card p {
        font-size: 0.9rem;
    }

    .features-header {
        margin-bottom: 40px;
    }

    .features-header p {
        font-size: 1rem;
    }

    .machines-features {
        padding: 50px 0;
    }
}

/* ---------- Products Page Styles ---------- */
.products-hero {
    padding: 120px 0 40px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 25%, var(--white) 50%, var(--primary-light) 75%, var(--primary-dark) 100%);
    text-align: center;
    color: var(--white);
    position: relative;
}

.products-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.7) 0%, rgba(0, 150, 199, 0.7) 100%);
    z-index: 0;
}

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

.products-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.products-hero-content .section-label {
    color: var(--white);
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.products-hero-content .section-label::before {
    background: var(--white);
}

.products-hero-content h1 {
    margin-bottom: 16px;
    color: var(--white);
    font-size: clamp(2rem, 5vw, 3.5rem);
}

.products-hero-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0;
}

/* Products Page Section */
.products-page {
    padding: 40px 0 60px;
    background: var(--white);
}

/* Filter Buttons */
.products-filters {
    display: flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 10px;
    padding: 20px 0 30px;
    margin: 0 0 20px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--gray-200);
    position: relative;
}

.products-filters::before,
.products-filters::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 30px;
    width: 30px;
    pointer-events: none;
    z-index: 1;
}

.products-filters::before {
    left: 0;
    background: linear-gradient(to right, var(--white) 0%, rgba(255, 255, 255, 0.8) 50%, transparent 100%);
}

.products-filters::after {
    right: 0;
    background: linear-gradient(to left, var(--white) 0%, rgba(255, 255, 255, 0.8) 50%, transparent 100%);
}

.products-filters::-webkit-scrollbar {
    height: 6px;
}

.products-filters::-webkit-scrollbar-track {
    background: var(--gray-200);
    border-radius: 10px;
}

.products-filters::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

.products-filters::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

.filter-btn {
    padding: 10px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray-700);
    background: var(--white);
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-primary);
    flex-shrink: 0;
    white-space: nowrap;
    position: relative;
    z-index: 2;
}

.filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 4px 16px rgba(0, 180, 216, 0.3);
}

/* Products Grid Page */
.products-grid-page {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-top: 0;
}

.product-card-page {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    opacity: 1;
    transform: scale(1);
}

.product-card-page:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 180, 216, 0.15);
    border-color: rgba(0, 180, 216, 0.2);
}

.product-image-page {
    width: 100%;
    height: 200px;
    background: var(--gray-100);
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.product-image-page img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
    border-radius: var(--radius-md);
}

.product-card-page:hover .product-image-page img {
    transform: scale(1.05);
}

.product-image-page .product-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.product-info-page {
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-grow: 1;
}

.product-tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary);
    padding: 5px 10px;
    border-radius: var(--radius-sm);
    width: fit-content;
}

.product-info-page h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
    line-height: 1.3;
}

.product-info-page p {
    font-size: 0.85rem;
    color: var(--gray-600);
    line-height: 1.5;
    margin: 0;
    flex-grow: 1;
}

.btn-view-details {
    margin-top: 4px;
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    background: transparent;
    border: 2px solid var(--primary);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-primary);
    width: 100%;
}

.btn-view-details:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 180, 216, 0.3);
}

/* Responsive adjustments for products page */
@media (max-width: 992px) {
    .products-hero {
        padding: 100px 0 30px;
    }

    .products-grid-page {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .product-image-page {
        height: 180px;
    }
}

@media (max-width: 768px) {
    .products-hero {
        padding: 90px 0 20px;
    }

    .products-hero-content h1 {
        font-size: 2rem;
    }

    .products-hero-content p {
        font-size: 1rem;
    }

    .products-page {
        padding: 30px 0 50px;
    }

    .products-filters {
        padding: 16px 0 24px;
        margin-bottom: 16px;
        gap: 8px;
    }

    .filter-btn {
        padding: 9px 20px;
        font-size: 0.9rem;
    }

    .products-grid-page {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .product-image-page {
        height: 160px;
    }

    .product-info-page {
        padding: 16px;
        gap: 6px;
    }

    .product-info-page h3 {
        font-size: 0.95rem;
    }

    .product-info-page p {
        font-size: 0.8rem;
    }

    .btn-view-details {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .products-grid-page {
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .products-grid-page {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .product-image-page {
        height: 140px;
    }

    .product-info-page {
        padding: 12px;
        gap: 4px;
    }

    .product-info-page h3 {
        font-size: 0.85rem;
        line-height: 1.2;
    }

    .product-info-page p {
        font-size: 0.7rem;
        line-height: 1.4;
        display: -webkit-box;
        line-clamp: 2;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .product-tag {
        font-size: 0.6rem;
        padding: 4px 8px;
        top: 8px;
        left: 8px;
    }

    .btn-view-details {
        padding: 6px 12px;
        font-size: 0.75rem;
        margin-top: 4px;
    }

    .products-filters {
        padding: 12px 0 20px;
        margin-bottom: 12px;
        gap: 6px;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .products-page {
        padding: 20px 0 40px;
    }
}

/* ---------- Lifestyle Page Styles ---------- */
.lifestyle-hero {
    position: relative;
    padding: 140px 0 90px;
    color: var(--white);
    overflow: hidden;
    background: url('images/hero_background_1769098569751.png') center/cover no-repeat;
}

.lifestyle-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 10%, rgba(255, 107, 53, 0.35) 0%, transparent 45%),
        radial-gradient(circle at 80% 20%, rgba(144, 224, 239, 0.35) 0%, transparent 40%),
        linear-gradient(135deg, rgba(0, 150, 199, 0.78) 0%, rgba(0, 180, 216, 0.72) 40%, rgba(0, 0, 0, 0.35) 100%);
    z-index: 0;
}

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

/* Centered Hero Layout */
.lifestyle-hero-centered {
    padding: 160px 0 100px;
    text-align: center;
}

.lifestyle-hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.lifestyle-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    animation: floatShape 20s ease-in-out infinite;
}

.lifestyle-shape-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--accent) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.lifestyle-shape-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--secondary) 0%, transparent 70%);
    bottom: -50px;
    left: -50px;
    animation-delay: -7s;
}

.lifestyle-shape-3 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--white) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -14s;
}

@keyframes floatShape {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(20px, -20px) rotate(5deg);
    }

    50% {
        transform: translate(-10px, 10px) rotate(-3deg);
    }

    75% {
        transform: translate(15px, 15px) rotate(3deg);
    }
}

.lifestyle-hero-centered-content {
    max-width: 800px;
    margin: 0 auto 60px;
}

.lifestyle-hero-centered .lifestyle-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 24px;
}

.lifestyle-hero-centered .lifestyle-hero-subtitle {
    max-width: 650px;
    margin: 0 auto 32px;
    font-size: 1.25rem;
}

.lifestyle-hero-centered .lifestyle-hero-actions {
    justify-content: center;
    margin-bottom: 0;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.05rem;
}

/* Feature Cards */
.lifestyle-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.lifestyle-feature-card {
    padding: 32px 24px;
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
    text-align: center;
}

.lifestyle-feature-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.18);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.lifestyle-feature-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 24px rgba(0, 180, 216, 0.3);
}

.lifestyle-feature-icon svg {
    stroke: var(--white);
}

.lifestyle-feature-card h4 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.lifestyle-feature-card p {
    margin: 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

/* Hero with Background Image */
.lifestyle-hero-bg {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 140px 0 100px;
}

.lifestyle-hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(0, 119, 182, 0.85) 0%,
            rgba(0, 180, 216, 0.75) 50%,
            rgba(144, 224, 239, 0.65) 100%);
    z-index: 1;
}

.lifestyle-hero-bg .container {
    position: relative;
    z-index: 2;
}

.lifestyle-hero-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.lifestyle-hero-bg .lifestyle-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 24px;
}

.lifestyle-hero-bg .lifestyle-hero-subtitle {
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 1.25rem;
}

.lifestyle-hero-bg .lifestyle-hero-actions {
    justify-content: center;
    margin-bottom: 0;
}

/* Fullscreen Image Section */
.lifestyle-fullscreen {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.lifestyle-fullscreen-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom,
            rgba(0, 180, 216, 0.2) 0%,
            rgba(0, 119, 182, 0.3) 50%,
            rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.lifestyle-fullscreen-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-bottom: 80px;
    width: 100%;
}

.lifestyle-fullscreen .lifestyle-stats {
    display: inline-flex;
    justify-content: center;
    gap: 60px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 30px 50px;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.lifestyle-fullscreen .lifestyle-stat-number {
    font-size: 2.5rem;
    color: var(--white);
}

.lifestyle-fullscreen .lifestyle-stat-label {
    color: rgba(255, 255, 255, 0.9);
}

/* Legacy Split Hero Layout */
.lifestyle-hero-split {
    padding: 140px 0 100px;
}

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

.lifestyle-hero-split .lifestyle-hero-content {
    max-width: 100%;
}

.lifestyle-hero-split .lifestyle-hero-title {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
}

.lifestyle-hero-split .lifestyle-hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 32px;
}

.lifestyle-hero-split .lifestyle-hero-actions {
    margin-bottom: 40px;
}

/* Stats Row */
.lifestyle-stats {
    display: flex;
    gap: 40px;
}

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

.lifestyle-stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.lifestyle-stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 4px;
}

/* Image Stack */
.lifestyle-hero-images {
    position: relative;
    height: 500px;
}

.lifestyle-image-stack {
    position: relative;
    width: 100%;
    height: 100%;
}

.lifestyle-image-card {
    position: absolute;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.lifestyle-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lifestyle-image-main {
    width: 85%;
    height: 420px;
    top: 0;
    left: 0;
    z-index: 2;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.lifestyle-image-secondary {
    width: 55%;
    height: 280px;
    bottom: 0;
    right: 0;
    z-index: 3;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.lifestyle-image-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.35);
}

.lifestyle-image-main:hover {
    z-index: 4;
}

/* Grid layout for non-split hero */
.lifestyle-hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 56px;
    align-items: center;
}

.lifestyle-hero-title {
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.05;
    text-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.lifestyle-hero-subtitle {
    max-width: 560px;
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 28px;
    text-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}

.lifestyle-hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.lifestyle-intro {
    padding: 80px 0;
    background: var(--white);
    text-align: center;
}

.lifestyle-intro p {
    max-width: 800px;
    margin: 0 auto 24px;
    font-size: 1.15rem;
    color: var(--gray-700);
}

.lifestyle-mission {
    padding: 90px 0;
    background: linear-gradient(180deg, var(--white) 0%, rgba(0, 180, 216, 0.04) 70%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.lifestyle-mission::before {
    content: '';
    position: absolute;
    inset: -40% -20%;
    background: radial-gradient(circle, rgba(0, 180, 216, 0.09) 0%, transparent 60%);
    z-index: 0;
}

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

.lifestyle-mission-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.lifestyle-mission-copy h2 {
    margin-bottom: 14px;
}

.lifestyle-mission-note {
    margin: 0;
    font-weight: 700;
    color: var(--primary);
}

.lifestyle-mission-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.lifestyle-metric {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 22px 18px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: var(--transition);
}

.lifestyle-metric h3 {
    font-size: 2.1rem;
    color: var(--primary);
    margin-bottom: 6px;
}

.lifestyle-metric p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--gray-700);
}

.lifestyle-metric:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 44px rgba(0, 180, 216, 0.16);
    border-color: rgba(0, 180, 216, 0.22);
}

.core-areas {
    padding: 90px 0 110px;
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.04) 0%, rgba(144, 224, 239, 0.10) 50%, rgba(255, 255, 255, 0.95) 100%);
}

.core-areas-header {
    max-width: 800px;
    margin: 0 auto 50px;
}

.core-areas-header p {
    margin-bottom: 0;
}

/* Timeline layout for core areas */
.core-timeline {
    position: relative;
    margin-top: 60px;
}

.core-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 180, 216, 0.55) 15%, rgba(0, 180, 216, 0.25) 85%, transparent 100%);
    transform: translateX(-50%);
}

.core-item {
    display: grid;
    grid-template-columns: 1fr 76px 1fr;
    gap: 22px;
    align-items: stretch;
    position: relative;
    padding: 14px 0;
}

.core-rail {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.core-dot {
    width: 54px;
    height: 54px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    box-shadow: 0 14px 40px rgba(0, 180, 216, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.core-panel {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-xl);
    padding: 34px 30px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 12px 44px rgba(0, 0, 0, 0.10);
    overflow: hidden;
    transition: var(--transition);
}

.core-panel::before {
    content: '';
    position: absolute;
    top: -90px;
    right: -90px;
    width: 190px;
    height: 190px;
    background: radial-gradient(circle, rgba(0, 180, 216, 0.16) 0%, transparent 68%);
    border-radius: 50%;
    z-index: 0;
}

.core-panel>* {
    position: relative;
    z-index: 1;
}

.core-title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 2.6vw, 2rem);
    margin-bottom: 12px;
    color: var(--primary);
}

.core-title span {
    color: var(--dark);
}

.core-panel p {
    font-size: 1rem;
    line-height: 1.75;
}

.core-panel:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 64px rgba(0, 180, 216, 0.16);
    border-color: rgba(0, 180, 216, 0.25);
}

/* Align left/right items */
.core-item-left .core-panel {
    grid-column: 1;
}

.core-item-left .core-rail {
    grid-column: 2;
}

.core-item-left .core-spacer {
    grid-column: 3;
}

.core-item-right .core-spacer {
    grid-column: 1;
}

.core-item-right .core-rail {
    grid-column: 2;
}

.core-item-right .core-panel {
    grid-column: 3;
}

/* ---------- Brands Showcase ---------- */
.brands-showcase {
    padding: 90px 0 110px;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.brands-showcase::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 60%;
    height: 80%;
    background: radial-gradient(circle, rgba(0, 180, 216, 0.10) 0%, transparent 60%);
    z-index: 0;
}

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

.brands-header {
    max-width: 800px;
    margin: 0 auto 26px;
}

.brands-header p {
    margin-bottom: 0;
}

.brands-marquee {
    margin: 28px 0 34px;
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.06) 0%, rgba(144, 224, 239, 0.10) 100%);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.brands-track {
    display: flex;
    width: max-content;
    animation: brandsMarquee 32s linear infinite;
}

.brands-track-group {
    display: flex;
    gap: 38px;
    padding: 18px 26px;
    align-items: center;
}

.brands-track img {
    height: 34px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.75;
    transition: var(--transition);
}

.brands-marquee:hover .brands-track {
    animation-play-state: paused;
}

.brands-marquee:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes brandsMarquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.brands-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px 32px;
    align-items: stretch;
}

.brand-tile {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    padding: 32px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 140px;
    width: calc(20% - 26px);
    max-width: 220px;
    transition: var(--transition);
    overflow: hidden;
    position: relative;
    flex: 0 0 auto;
}

.brand-tile::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.08) 0%, rgba(0, 150, 199, 0.08) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.brand-tile img {
    max-height: 64px;
    width: auto;
    filter: grayscale(0%);
    opacity: 1;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.brand-tile:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 60px rgba(0, 180, 216, 0.16);
    border-color: rgba(0, 180, 216, 0.25);
}

.brand-tile:hover::before {
    opacity: 1;
}

.brand-tile:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.06);
}

@media (prefers-reduced-motion: reduce) {
    .brands-track {
        animation: none;
    }
}

@media (max-width: 992px) {
    .lifestyle-hero-bg {
        min-height: 80vh;
        padding: 120px 0 80px;
    }

    .lifestyle-hero-bg .lifestyle-hero-title {
        font-size: 2.5rem;
    }

    .lifestyle-fullscreen {
        height: 80vh;
        min-height: 500px;
        background-attachment: scroll;
    }

    .lifestyle-fullscreen .lifestyle-stats {
        gap: 40px;
        padding: 24px 40px;
    }

    .lifestyle-fullscreen .lifestyle-stat-number {
        font-size: 2rem;
    }

    .lifestyle-hero-centered {
        padding: 140px 0 80px;
    }

    .lifestyle-hero-split {
        padding: 120px 0 80px;
    }

    .lifestyle-hero-split .lifestyle-hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .lifestyle-hero-split .lifestyle-hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .lifestyle-hero-split .lifestyle-hero-actions {
        justify-content: center;
    }

    .lifestyle-stats {
        justify-content: center;
    }

    .lifestyle-hero-images {
        height: 400px;
        max-width: 500px;
        margin: 0 auto;
    }

    .lifestyle-image-main {
        width: 80%;
        height: 350px;
    }

    .lifestyle-image-secondary {
        width: 50%;
        height: 220px;
    }

    .lifestyle-features {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
        max-width: 100%;
    }

    .lifestyle-feature-card {
        padding: 24px 16px;
    }

    .lifestyle-feature-icon {
        width: 60px;
        height: 60px;
    }

    .lifestyle-feature-icon svg {
        width: 28px;
        height: 28px;
    }

    .lifestyle-hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .lifestyle-highlights {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .lifestyle-hero-bg {
        min-height: 70vh;
        padding: 100px 0 60px;
    }

    .lifestyle-hero-bg .lifestyle-hero-title {
        font-size: 2rem;
    }

    .lifestyle-hero-bg .lifestyle-hero-subtitle {
        font-size: 1.1rem;
    }

    .lifestyle-fullscreen {
        height: 70vh;
        min-height: 450px;
    }

    .lifestyle-fullscreen-content {
        padding-bottom: 40px;
    }

    .lifestyle-fullscreen .lifestyle-stats {
        gap: 30px;
        padding: 20px 30px;
        flex-wrap: wrap;
    }

    .lifestyle-fullscreen .lifestyle-stat-number {
        font-size: 1.6rem;
    }

    .lifestyle-hero-split {
        padding: 110px 0 60px;
    }

    .lifestyle-hero-images {
        height: 350px;
        max-width: 400px;
    }

    .lifestyle-image-main {
        width: 75%;
        height: 300px;
    }

    .lifestyle-image-secondary {
        width: 55%;
        height: 200px;
    }

    .lifestyle-stats {
        gap: 30px;
    }

    .lifestyle-stat-number {
        font-size: 1.6rem;
    }

    .lifestyle-features {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 400px;
        margin: 0 auto;
    }

    .lifestyle-mission-grid {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .lifestyle-mission-cards {
        grid-template-columns: repeat(3, 1fr);
    }

    .core-timeline::before {
        left: 22px;
        transform: none;
    }

    .core-item {
        grid-template-columns: 44px 1fr;
        gap: 16px;
        padding: 14px 0;
    }

    .core-item-left .core-panel,
    .core-item-right .core-panel {
        grid-column: 2;
    }

    .core-item-left .core-rail,
    .core-item-right .core-rail {
        grid-column: 1;
        justify-content: flex-start;
    }

    .core-item-left .core-spacer,
    .core-item-right .core-spacer {
        display: none;
    }

    .core-dot {
        width: 44px;
        height: 44px;
        font-size: 0.78rem;
    }
}

@media (max-width: 576px) {
    .lifestyle-hero {
        padding: 120px 0 70px;
    }

    .lifestyle-hero-bg {
        min-height: 100vh;
        padding: 100px 0 50px;
    }

    .lifestyle-hero-bg .lifestyle-hero-title {
        font-size: 1.8rem;
    }

    .lifestyle-hero-bg .lifestyle-hero-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .lifestyle-hero-bg .lifestyle-hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .lifestyle-fullscreen {
        height: 60vh;
        min-height: 400px;
        background-attachment: scroll;
    }

    .lifestyle-fullscreen-content {
        padding-bottom: 40px;
    }

    .lifestyle-fullscreen .lifestyle-stats {
        flex-direction: row;
        gap: 20px;
        padding: 20px 24px;
    }

    .lifestyle-fullscreen .lifestyle-stat-number {
        font-size: 1.3rem;
    }

    .lifestyle-fullscreen .lifestyle-stat-label {
        font-size: 0.75rem;
    }

    .lifestyle-hero-split {
        padding: 100px 0 50px;
    }

    .lifestyle-hero-split .lifestyle-hero-title {
        font-size: 1.8rem;
    }

    .lifestyle-hero-split .lifestyle-hero-subtitle {
        font-size: 1rem;
    }

    .lifestyle-hero-split .lifestyle-hero-actions {
        flex-direction: column;
        align-items: center;
        margin-bottom: 30px;
    }

    .lifestyle-stats {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }

    .lifestyle-stat {
        min-width: 80px;
        text-align: center;
    }

    .lifestyle-stat-number {
        font-size: 1.4rem;
    }

    .lifestyle-stat-label {
        font-size: 0.8rem;
    }

    .lifestyle-hero-images {
        height: 280px;
        max-width: 320px;
    }

    .lifestyle-image-main {
        width: 70%;
        height: 240px;
    }

    .lifestyle-image-secondary {
        width: 55%;
        height: 160px;
    }

    .lifestyle-hero-centered {
        padding: 120px 0 60px;
    }

    .lifestyle-hero-centered-content {
        margin-bottom: 40px;
    }

    .lifestyle-hero-centered .lifestyle-hero-title {
        font-size: 2rem;
    }

    .lifestyle-hero-centered .lifestyle-hero-subtitle {
        font-size: 1rem;
    }

    .lifestyle-hero-centered .lifestyle-hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn-lg {
        padding: 14px 28px;
        font-size: 1rem;
        width: 100%;
        max-width: 280px;
    }

    .lifestyle-feature-icon {
        width: 60px;
        height: 60px;
    }

    .lifestyle-feature-icon svg {
        width: 28px;
        height: 28px;
    }

    .lifestyle-shape-1 {
        width: 250px;
        height: 250px;
    }

    .lifestyle-shape-2 {
        width: 180px;
        height: 180px;
    }

    .lifestyle-shape-3 {
        width: 120px;
        height: 120px;
    }

    .lifestyle-mission {
        padding: 70px 0;
    }

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

    .brands-grid {
        gap: 32px 24px;
    }

    .brand-tile {
        width: calc(20% - 26px);
        max-width: 200px;
        min-height: 130px;
        padding: 30px 22px;
    }

    .brand-tile img {
        max-height: 60px;
    }
}

@media (max-width: 968px) {
    .brands-grid {
        gap: 28px 20px;
    }

    .brand-tile {
        width: calc(33.333% - 14px);
        max-width: 180px;
        min-height: 120px;
        padding: 28px 20px;
    }

    .brand-tile img {
        max-height: 56px;
    }
}

@media (max-width: 768px) {
    .brands-grid {
        gap: 24px 16px;
    }

    .brand-tile {
        width: calc(50% - 8px);
        max-width: 160px;
        min-height: 110px;
        padding: 24px 18px;
    }

    .brand-tile img {
        max-height: 50px;
    }
}

@media (max-width: 480px) {
    .brands-grid {
        gap: 20px 12px;
    }

    .brand-tile {
        width: calc(50% - 6px);
        max-width: 140px;
        min-height: 100px;
        padding: 20px 16px;
    }

    .brand-tile img {
        max-height: 44px;
    }
}