﻿/* ============================================
   AL HAMIDIYAH GEN TR LLC (HAMI) - Main Stylesheet
   Corporate Engineering & Marine Solutions
   
   STRUCTURE:
   1.  CSS Variables & Root Settings
   2.  Global Styles & Reset
   3.  Typography
   4.  Layout & Containers
   5.  Navigation & Header
   6.  Hero Section
   7.  Section Base Styles
   8.  Cards & Components
   9.  Buttons & CTAs
   10. Forms
   11. Footer
   12. Page-Specific Styles
   13. Shop / E-Commerce
   14. Cart Sidebar
   15. Shop Promo Banner
   16. HAMI Bot / Chat Widget
   17. Animations & Keyframes
   18. Utilities
   19. Preloader & Back-to-Top
   20. Alerts
   21. Media Queries (ALL breakpoints)
   ============================================ */

/* ============================================
   1. CSS Variables & Root Settings
   ============================================ */
:root {
    --navy-blue: #0a2647;
    --navy-dark: #061a33;
    --navy-light: #144272;
    --steel-grey: #5c6574;
    --steel-light: #8d99ae;
    --steel-dark: #3d4654;
    --orange-accent: #e85d04;
    --orange-light: #f48c06;
    --orange-dark: #d45002;
    --white: #ffffff;
    --off-white: #f8f9fa;
    --light-grey: #e9ecef;
    --text-dark: #212529;
    --text-muted: #6c757d;
    --gradient-primary: linear-gradient(135deg, var(--navy-blue) 0%, var(--navy-light) 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(10, 38, 71, 0.9) 0%, rgba(20, 66, 114, 0.8) 100%);
    --gradient-orange: linear-gradient(135deg, var(--orange-accent) 0%, var(--orange-light) 100%);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 12px 48px rgba(0, 0, 0, 0.2);
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
    --section-padding: 80px 0;
    --section-padding-sm: 60px 0;
    --container-max: 1320px;
}

/* ============================================
   2. Global Styles & Reset
   ============================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
    list-style: none;
}

/* ============================================
   3. Typography
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--navy-blue);
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--steel-grey);
}

.lead {
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--steel-grey);
}

.text-accent { color: var(--orange-accent); }
.text-navy   { color: var(--navy-blue); }

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

.section-title h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-orange);
    border-radius: 2px;
}

.section-title p {
    max-width: 700px;
    margin: 1rem auto 0;
}

/* ============================================
   4. Layout & Containers
   ============================================ */
.container {
    max-width: var(--container-max);
}

/* ============================================
   5. Navigation & Header
   ============================================ */
.navbar {
    background-color: var(--white);
    padding: 12px 0;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
    z-index: 1050;
}

.navbar.scrolled {
    padding: 8px 0;
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    font-family: 'Poppins', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--navy-blue) !important;
    display: flex;
    align-items: center;
    gap: 14px;
    max-width: 400px;
    line-height: 1.2;
    flex-shrink: 0;
    flex-wrap: nowrap;
    text-decoration: none;
}

.navbar-brand .brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.navbar-brand .brand-text .brand-name {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--navy-blue);
    white-space: nowrap;
}

.navbar-brand .brand-text .brand-subtitle {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--orange-accent);
    letter-spacing: 0.5px;
    white-space: nowrap;
    margin-top: 1px;
}

/* Legacy span fallback */
.navbar-brand span {
    color: var(--orange-accent);
}

.navbar-logo {
    width: 72px;
    height: 72px;
    object-fit: contain;
    border-radius: var(--radius-md);
    transition: transform var(--transition-normal);
    flex-shrink: 0;
}

.navbar-brand:hover .navbar-logo {
    transform: scale(1.05);
}

.navbar-brand .brand-icon {
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--navy-blue) !important;
    padding: 10px 16px !important;
    position: relative;
    transition: color var(--transition-fast);
    white-space: nowrap;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--orange-accent);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--orange-accent) !important;
}

/* --- Shop Nav Highlight (Part 2) --- */
.navbar-nav .nav-link.nav-shop-highlight {
    background: linear-gradient(135deg, rgba(232, 93, 4, 0.08) 0%, rgba(244, 140, 6, 0.12) 100%);
    border: 1.5px solid rgba(232, 93, 4, 0.25);
    border-radius: 30px;
    padding: 8px 20px !important;
    margin-left: 6px;
    color: var(--orange-accent) !important;
    font-weight: 600;
    position: relative;
    animation: shopGlow 3s ease-in-out infinite;
    transition: all var(--transition-normal);
}

.navbar-nav .nav-link.nav-shop-highlight:hover {
    background: var(--gradient-orange);
    color: var(--white) !important;
    border-color: var(--orange-accent);
    transform: scale(1.05);
    box-shadow: 0 4px 18px rgba(232, 93, 4, 0.35);
}

.navbar-nav .nav-link.nav-shop-highlight::after {
    display: none;
}

.navbar-nav .nav-link.nav-shop-highlight.active {
    background: var(--gradient-orange);
    color: var(--white) !important;
    border-color: var(--orange-accent);
    box-shadow: 0 4px 18px rgba(232, 93, 4, 0.35);
    animation: none;
}

@keyframes shopGlow {
    0%, 100% { box-shadow: 0 0 4px rgba(232, 93, 4, 0.15); }
    50%      { box-shadow: 0 0 16px rgba(232, 93, 4, 0.3); }
}

.navbar-toggler {
    border: none;
    padding: 10px;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: 2px solid var(--orange-accent);
    outline-offset: 2px;
}

.navbar-toggler-icon {
    background-image: none;
    position: relative;
    width: 28px;
    height: 2px;
    background-color: var(--navy-blue);
    display: block;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    position: absolute;
    width: 28px;
    height: 2px;
    background-color: var(--navy-blue);
    left: 0;
    transition: transform var(--transition-fast);
}

.navbar-toggler-icon::before { top: -8px; }
.navbar-toggler-icon::after  { bottom: -8px; }

/* ============================================
   6. Hero Section
   ============================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(10, 38, 71, 0.92) 0%, rgba(20, 66, 114, 0.88) 100%),
                url('https://images.unsplash.com/photo-1494412574643-ff11b0a5c1c3?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    color: var(--white);
    padding-top: 80px;
}

.hero-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, var(--white) 0%, transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    color: var(--white);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease;
}

.hero-content h1 span {
    color: var(--orange-accent);
}

.hero-content p {
    font-size: clamp(1.125rem, 2vw, 1.35rem);
    color: rgba(255, 255, 255, 0.9);
    max-width: 650px;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 3rem;
    animation: fadeInUp 0.8s ease 0.6s both;
}

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

.hero-stat h3 {
    color: var(--orange-accent);
    font-size: 2.5rem;
    margin-bottom: 0.25rem;
}

.hero-stat p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.page-hero {
    position: relative;
    padding: 160px 0 100px;
    background: var(--gradient-overlay),
                url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    color: var(--white);
    text-align: center;
}

.page-hero h1 { color: var(--white); margin-bottom: 1rem; }

.page-hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb           { justify-content: center; margin-top: 1.5rem; }
.breadcrumb-item a    { color: rgba(255, 255, 255, 0.8); }
.breadcrumb-item a:hover { color: var(--orange-accent); }
.breadcrumb-item.active  { color: var(--orange-accent); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255, 255, 255, 0.6); }

/* ============================================
   7. Section Base Styles
   ============================================ */
section {
    padding: var(--section-padding);
}

.section-light {
    background-color: var(--off-white);
}

.section-dark {
    background: var(--gradient-primary);
    color: var(--white);
}

.section-dark h2,
.section-dark h3,
.section-dark h4 { color: var(--white); }

.section-dark p { color: rgba(255, 255, 255, 0.85); }

.about-snapshot { background-color: var(--white); }

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

.about-image {
    position: relative;
    padding: 24px 24px 24px 24px;
    margin: 20px 20px 20px 20px;
}

/* ── About Snapshot – Intro Video ───────────────────────── */
.about-video-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(10,38,71,0.25), 0 8px 24px rgba(10,38,71,0.15);
    z-index: 1;
    border: 3px solid rgba(255,255,255,0.8);
    aspect-ratio: 16 / 9;
    background: var(--navy-blue);
}

.about-video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: inherit;
}

/* Overlay shown once the video finishes playing */
.about-video-end-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(10,38,71,0.94) 0%, rgba(20,65,120,0.90) 100%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.9s ease;
    border-radius: inherit;
}

.about-video-end-overlay.visible {
    opacity: 1;
    pointer-events: auto;
}

.about-video-hami-brand {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: 0.18em;
    line-height: 1;
    text-shadow: 0 4px 28px rgba(0,0,0,0.35);
    display: block;
}

.about-video-hami-tagline {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(0.85rem, 1.6vw, 1.15rem);
    font-weight: 600;
    color: #ff8c3a;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    margin-top: 16px;
    display: block;
    text-shadow: 0 2px 12px rgba(0,0,0,0.5);
    background: rgba(255,255,255,0.07);
    padding: 7px 22px;
    border-radius: 30px;
    border: 1px solid rgba(255,140,58,0.35);
}

/* Decorative corner accents */
.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 110px;
    height: 110px;
    background: var(--gradient-orange);
    border-radius: var(--radius-md);
    z-index: 0;
    opacity: 0.9;
}

.about-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 140px;
    height: 140px;
    border: 5px solid var(--navy-blue);
    border-radius: var(--radius-md);
    z-index: 0;
    opacity: 0.6;
}

/* Inner wrapper clips the image with rounded corners & shadow */
.about-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(10, 38, 71, 0.25), 0 8px 24px rgba(10, 38, 71, 0.15);
    z-index: 1;
    border: 3px solid rgba(255,255,255,0.8);
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.6s ease;
}

.about-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.about-image-wrapper:hover img {
    transform: scale(1.04);
}

/* Subtle gradient overlay at the bottom */
.about-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, rgba(10, 38, 71, 0.55) 0%, transparent 100%);
    pointer-events: none;
}

/* "Our Team" badge — bottom-left */
.about-image-badge {
    position: absolute;
    bottom: 36px;
    left: 36px;
    background: var(--orange-accent);
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    box-shadow: 0 4px 16px rgba(0,0,0,0.25);
    z-index: 2;
    text-transform: uppercase;
}

.about-image-badge i {
    font-size: 1rem;
}

/* "15+ Years" badge — top-right */
.about-image-years {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--navy-blue);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    box-shadow: 0 6px 20px rgba(10, 38, 71, 0.35);
    z-index: 3;
    text-align: center;
    border: 3px solid var(--orange-accent);
}

.about-image-years .years-number {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
    color: var(--orange-accent);
    font-family: var(--font-poppins);
}

.about-image-years .years-number sup {
    font-size: 0.75rem;
    vertical-align: super;
}

.about-image-years .years-label {
    font-size: 0.55rem;
    line-height: 1.3;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    margin-top: 2px;
}

.about-text h2 { margin-bottom: 1.5rem; }

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 2rem;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-feature i {
    color: var(--orange-accent);
    font-size: 1.25rem;
}

.why-choose { background: var(--off-white); }

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.why-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    border: 1px solid transparent;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--orange-accent);
}

.why-card .icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
}

.why-card:hover .icon-box {
    background: var(--gradient-orange);
    transform: scale(1.1);
}

.why-card .icon-box i { font-size: 2rem; color: var(--white); }
.why-card h4 { margin-bottom: 1rem; }

.cta-banner {
    background: var(--gradient-primary);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: rgba(232, 93, 4, 0.1);
    border-radius: 50%;
}

.cta-banner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cta-content { position: relative; z-index: 2; }

.cta-banner h2 { color: var(--white); margin-bottom: 1rem; }

.cta-banner p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* ============================================
   8. Cards & Components
   ============================================ */
.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    height: 100%;
    border: 1px solid var(--light-grey);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--gradient-orange);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

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

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-card .icon-box {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    background: var(--off-white);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
}

.service-card:hover .icon-box { background: var(--gradient-primary); }

.service-card .icon-box i {
    font-size: 2.5rem;
    color: var(--navy-blue);
    transition: color var(--transition-normal);
}

.service-card:hover .icon-box i { color: var(--white); }
.service-card h4 { margin-bottom: 1rem; }
.service-card p { margin-bottom: 1.5rem; }

.service-card .read-more {
    color: var(--orange-accent);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap var(--transition-fast);
}

.service-card:hover .read-more { gap: 12px; }

.industry-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 300px;
    box-shadow: var(--shadow-md);
    cursor: pointer;
}

.industry-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.industry-card .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 38, 71, 0.95) 0%, rgba(10, 38, 71, 0.3) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    transition: background var(--transition-normal);
}

.industry-card:hover .overlay {
    background: linear-gradient(to top, rgba(232, 93, 4, 0.95) 0%, rgba(232, 93, 4, 0.5) 100%);
}

.industry-card h4 { color: var(--white); margin-bottom: 0.5rem; }
.industry-card p { color: rgba(255, 255, 255, 0.9); font-size: 0.9rem; margin: 0; }

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.product-card .product-image {
    height: 200px;
    background: var(--off-white);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-card .product-image i {
    font-size: 4rem;
    color: var(--navy-blue);
    opacity: 0.3;
    transition: all var(--transition-normal);
}

.product-card:hover .product-image i {
    opacity: 0.6;
    transform: scale(1.1);
}

.product-card .product-content { padding: 25px; }
.product-card h5 { margin-bottom: 0.75rem; }
.product-card p { font-size: 0.9rem; margin: 0; }

.category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gradient-orange);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.stats-section {
    background: var(--gradient-primary);
    padding: 60px 0;
}

.stat-item { text-align: center; padding: 20px; }

.stat-item h3 {
    color: var(--orange-accent);
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin: 0;
}

.timeline { position: relative; padding: 20px 0; }

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--light-grey);
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: 50%;
    position: relative;
    margin-bottom: 40px;
}

.timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: 50%;
}

.timeline-content {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    max-width: 450px;
    position: relative;
}

.timeline-item::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    background: var(--orange-accent);
    border-radius: 50%;
    border: 4px solid var(--white);
    box-shadow: var(--shadow-sm);
}

/* ============================================
   9. Buttons & CTAs
   ============================================ */
.btn {
    padding: 12px 30px;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-orange);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(232, 93, 4, 0.3);
}

.btn-primary:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 93, 4, 0.4);
    color: var(--white);
}

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

.btn-outline-light:hover {
    background: var(--white);
    color: var(--navy-blue);
}

.btn-outline-primary {
    background: transparent;
    color: var(--navy-blue);
    border: 2px solid var(--navy-blue);
}

.btn-outline-primary:hover {
    background: var(--navy-blue);
    color: var(--white);
}

.btn-lg { padding: 16px 40px; font-size: 1.1rem; }
.btn-sm { padding: 8px 20px; font-size: 0.9rem; }

/* ============================================
   10. Forms
   ============================================ */
.form-control {
    padding: 14px 20px;
    border: 1px solid var(--light-grey);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: all var(--transition-fast);
    background-color: var(--white);
}

.form-control:focus {
    border-color: var(--navy-blue);
    box-shadow: 0 0 0 3px rgba(10, 38, 71, 0.1);
    outline: none;
}

.form-control::placeholder { color: var(--steel-light); }

.form-label {
    font-weight: 500;
    color: var(--navy-blue);
    margin-bottom: 8px;
}

.form-floating > .form-control { padding: 1.625rem 1rem 0.625rem; }

textarea.form-control { min-height: 150px; resize: vertical; }

.invalid-feedback { font-size: 0.85rem; color: #dc3545; }
.was-validated .form-control:valid   { border-color: #198754; }
.was-validated .form-control:invalid { border-color: #dc3545; }

.contact-form-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* ============================================
   11. Footer
   ============================================ */
.footer {
    background: var(--navy-dark);
    color: var(--white);
    padding-top: 80px;
}

.footer-content {
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand { margin-bottom: 1.5rem; }

.footer-brand h3 {
    color: var(--white);
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.footer-brand span { color: var(--orange-accent); }

.footer-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    background: var(--white);
    padding: 5px;
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    max-width: 300px;
}

.footer-social { display: flex; gap: 12px; }

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background: var(--orange-accent);
    transform: translateY(-3px);
}

.footer-title {
    color: var(--white);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 40px;
    height: 2px;
    background: var(--orange-accent);
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

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

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact li i {
    color: var(--orange-accent);
    font-size: 1.1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-bottom { padding: 25px 0; text-align: center; }

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 0.9rem;
}

/* ============================================
   12. Page-Specific Styles
   ============================================ */

/* About Page */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.value-card .icon-circle {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: var(--off-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
}

.value-card:hover .icon-circle { background: var(--gradient-orange); }

.value-card .icon-circle i {
    font-size: 2.5rem;
    color: var(--orange-accent);
    transition: color var(--transition-normal);
}

.value-card:hover .icon-circle i { color: var(--white); }

.vision-mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.vm-card {
    padding: 50px 40px;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}

.vm-card.vision { background: var(--gradient-primary); color: var(--white); }
.vm-card.mission { background: var(--white); border: 2px solid var(--navy-blue); }

.vm-card h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.5rem;
}

.vm-card.vision h3 { color: var(--white); }
.vm-card.vision p  { color: rgba(255, 255, 255, 0.9); }
.vm-card h3 i { font-size: 1.5rem; color: var(--orange-accent); }

/* About: Mission Checklist */
.mission-list {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.mission-list li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.mission-list li:last-child { margin-bottom: 0; }

.mission-list li i { margin-top: 5px; }

/* About: Business Model Step Circles */
.step-circle {
    width: 50px;
    height: 50px;
    background: var(--gradient-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-circle span {
    color: white;
    font-weight: 700;
}

.step-text { color: var(--steel-grey); }

/* Page Hero Backgrounds */
.page-hero-about {
    background: linear-gradient(135deg, rgba(10, 38, 71, 0.92) 0%, rgba(20, 66, 114, 0.88) 100%),
        url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
}

.page-hero-services {
    background: linear-gradient(135deg, rgba(10, 38, 71, 0.92) 0%, rgba(20, 66, 114, 0.88) 100%),
        url('https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
}

.page-hero-products {
    background: linear-gradient(135deg, rgba(10, 38, 71, 0.92) 0%, rgba(20, 66, 114, 0.88) 100%),
        url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
}

.page-hero-industries {
    background: linear-gradient(135deg, rgba(10, 38, 71, 0.92) 0%, rgba(20, 66, 114, 0.88) 100%),
        url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
}

.page-hero-contact {
    background: linear-gradient(135deg, rgba(10, 38, 71, 0.92) 0%, rgba(20, 66, 114, 0.88) 100%),
        url('https://images.unsplash.com/photo-1423666639041-f56000c27a9a?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
}

.page-hero-shop {
    background: linear-gradient(135deg, rgba(10, 38, 71, 0.92) 0%, rgba(20, 66, 114, 0.88) 100%),
        url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
}

/* Contact Page Utilities */
.contact-intro-text {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

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

.contact-social-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-social-heading {
    color: white;
    margin-bottom: 1rem;
}

.map-container iframe { border: 0; }

.icon-box-accent {
    background: var(--gradient-orange);
}

.icon-box-accent i { color: white; }

/* Shop: Hidden by Default */
#shopEmpty   { display: none; }
#cartSidebarFooter { display: none; }

/* Services Page */
.service-detail {
    padding: 60px 0;
    border-bottom: 1px solid var(--light-grey);
}

.service-detail:last-child { border-bottom: none; }
.service-detail:nth-child(even) { background: var(--off-white); }

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

.service-detail:nth-child(even) .service-detail-content { direction: rtl; }
.service-detail:nth-child(even) .service-detail-content > * { direction: ltr; }

.service-icon-large {
    width: 100%;
    height: 350px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon-large i { font-size: 8rem; color: rgba(255, 255, 255, 0.3); }

.service-features { margin-top: 1.5rem; }

.service-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--steel-grey);
}

.service-features li i { color: var(--orange-accent); margin-top: 4px; }

/* Products Page */
.product-category { padding: 80px 0; }
.product-category:nth-child(odd) { background: var(--off-white); }

.category-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 3rem;
}

.category-header .category-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.category-header .category-icon i { font-size: 2rem; color: var(--white); }

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.product-item {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--orange-accent);
}

.product-item i { font-size: 2rem; color: var(--navy-blue); flex-shrink: 0; }
.product-item h5 { margin-bottom: 0.5rem; }
.product-item p  { font-size: 0.9rem; margin: 0; }

/* Industries Page */
.industry-detail { padding: 80px 0; }
.industry-detail:nth-child(even) { background: var(--off-white); }

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

.industry-detail:nth-child(even) .industry-content { grid-template-columns: 1.2fr 1fr; }
.industry-detail:nth-child(even) .industry-content .industry-image { order: 2; }

.industry-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 400px;
}

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

.industry-info h3 {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.industry-info h3 i { color: var(--orange-accent); font-size: 2rem; }

.industry-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 2rem;
}

.industry-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.industry-feature i { color: var(--orange-accent); }

/* Contact Page */
.contact-section { padding: 80px 0; }

.contact-info-card {
    background: var(--gradient-primary);
    padding: 40px;
    border-radius: var(--radius-lg);
    color: var(--white);
    height: 100%;
}

.contact-info-card h3 { color: var(--white); margin-bottom: 2rem; }

.contact-info-item { display: flex; gap: 15px; margin-bottom: 25px; }

.contact-info-item .icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-item .icon i { font-size: 1.25rem; color: var(--orange-accent); }
.contact-info-item h5 { color: var(--white); margin-bottom: 5px; font-size: 1rem; }
.contact-info-item p  { color: rgba(255, 255, 255, 0.8); margin: 0; font-size: 0.95rem; }

.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-top: 40px;
}

.map-container iframe { width: 100%; height: 400px; border: none; }

/* ============================================
   13. Shop / E-Commerce Styles
   ============================================ */
.shop-toolbar {
    padding: 20px 0;
    position: sticky;
    top: 76px;
    z-index: 100;
    background: var(--off-white);
    border-bottom: 1px solid var(--light-grey);
}

.shop-toolbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.shop-filters { display: flex; gap: 10px; flex-wrap: wrap; }

.shop-filter-btn {
    padding: 8px 22px;
    border-radius: 30px;
    border: 2px solid var(--navy-blue);
    background: transparent;
    color: var(--navy-blue);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.shop-filter-btn:hover,
.shop-filter-btn.active {
    background: var(--navy-blue);
    color: var(--white);
}

.shop-cart-btn {
    padding: 10px 20px;
    border-radius: var(--radius-md);
    border: none;
    background: var(--gradient-orange);
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all var(--transition-fast);
    box-shadow: 0 4px 15px rgba(232, 93, 4, 0.25);
    position: relative;
}

.shop-cart-btn-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    border-radius: 12px;
    background: var(--white);
    color: var(--orange-accent);
    font-size: 0.75rem;
    font-weight: 800;
    line-height: 1;
    transition: all var(--transition-fast);
}

.shop-cart-btn.has-items {
    background: var(--navy-blue);
    box-shadow: 0 4px 15px rgba(10, 38, 71, 0.35);
}

.shop-cart-btn.has-items .shop-cart-btn-badge {
    background: var(--orange-accent);
    color: var(--white);
}

.shop-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 93, 4, 0.4);
}

.shop-products { padding: 50px 0 100px; }

.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.shop-product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--light-grey);
}

.shop-product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--orange-accent);
}

.shop-product-card .shop-product-img {
    position: relative;
    height: 230px;
    background: var(--off-white);
    overflow: hidden;
}

.shop-product-card .shop-product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

/* --- Product Image Slider --- */
.shop-product-slider {
    position: relative;
    height: 230px;
    background: var(--off-white);
    overflow: hidden;
}

.shop-product-slider .shop-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.shop-product-slider .shop-slide.active { opacity: 1; }

.shop-slide-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    border: none;
    border-radius: 50%;
    background: rgba(10, 38, 71, 0.55);
    color: var(--white);
    font-size: 0.7rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-fast);
    z-index: 2;
}

.shop-product-slider:hover .shop-slide-arrow { opacity: 1; }
.shop-slide-prev { left: 8px; }
.shop-slide-next { right: 8px; }
.shop-slide-arrow:hover { background: rgba(232, 93, 4, 0.85); }

.shop-slide-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 2;
}

.shop-slide-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.shop-slide-dot.active {
    background: var(--orange-accent);
    transform: scale(1.25);
}

.shop-product-img .shop-badge,
.shop-product-slider .shop-badge {
    position: absolute;
    top: 12px; left: 12px;
    background: var(--gradient-orange);
    color: var(--white);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.shop-product-body {
    padding: 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.shop-product-title {
    font-size: 1.05rem;
    margin-bottom: 8px;
    color: var(--navy-blue);
    line-height: 1.4;
}

.shop-product-brand {
    font-size: 0.82rem;
    color: var(--steel-light);
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.shop-product-brand i {
    color: var(--orange-accent);
    font-size: 0.75rem;
}

.shop-product-desc {
    font-size: 0.85rem;
    color: var(--steel-grey);
    margin-bottom: 16px;
    flex: 1;
    line-height: 1.55;
}

/* --- Size Selector (variable products) --- */
.shop-product-size {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 14px;
}

.shop-size-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border: 2px solid var(--light-grey);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
    font-size: 0.85rem;
}

.shop-size-option:hover {
    border-color: var(--navy-light);
}

.shop-size-option.selected {
    border-color: var(--orange-accent);
    background: rgba(232, 93, 4, 0.06);
}

.shop-size-option input[type="radio"] {
    accent-color: var(--orange-accent);
    margin: 0;
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}

.shop-size-label {
    flex: 1;
    font-weight: 600;
    color: var(--navy-blue);
}

.shop-size-price {
    font-weight: 700;
    color: var(--orange-accent);
    font-family: 'Poppins', sans-serif;
    white-space: nowrap;
}

.shop-product-price {
    font-family: 'Poppins', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--orange-accent);
    margin-bottom: 16px;
}

.shop-product-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}

.shop-qty-selector {
    display: flex;
    align-items: center;
    border: 2px solid var(--light-grey);
    border-radius: var(--radius-md);
    overflow: hidden;
    flex-shrink: 0;
}

.shop-qty-btn {
    width: 34px;
    height: 36px;
    border: none;
    background: var(--off-white);
    color: var(--navy-blue);
    font-size: 0.75rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.shop-qty-btn:hover {
    background: var(--navy-blue);
    color: var(--white);
}

.shop-qty-val {
    width: 36px;
    text-align: center;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--navy-blue);
    background: var(--white);
    line-height: 36px;
    user-select: none;
}

.shop-product-actions .shop-add-btn {
    flex: 1;
    padding: 9px 0;
    border: none;
    border-radius: var(--radius-md);
    background: var(--gradient-primary);
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all var(--transition-fast);
}

.shop-product-actions .shop-add-btn:hover {
    background: var(--gradient-orange);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(232, 93, 4, 0.3);
}

.shop-product-actions .shop-add-btn.added {
    background: #28a745;
    pointer-events: none;
}

.shop-empty { text-align: center; padding: 80px 20px; }
.shop-empty i { font-size: 4rem; color: var(--steel-light); margin-bottom: 1rem; }
.shop-empty h3 { color: var(--steel-grey); }

.shop-cart-fab {
    display: none;
    position: fixed;
    bottom: 90px;
    right: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: none;
    background: var(--gradient-orange);
    color: var(--white);
    font-size: 1.35rem;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    z-index: 1010;
    transition: all var(--transition-fast);
    opacity: 0;
    pointer-events: none;
}

.shop-cart-fab.has-items {
    align-items: center;
    justify-content: center;
    opacity: 1;
    pointer-events: auto;
}

.shop-cart-fab:hover { transform: scale(1.1); }

.shop-cart-fab-badge {
    position: absolute;
    top: -4px; right: -4px;
    width: 22px; height: 22px;
    background: var(--navy-blue);
    color: var(--white);
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============================================
   14. Cart Sidebar
   ============================================ */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-normal), visibility var(--transition-normal);
}

.cart-overlay.open { opacity: 1; visibility: visible; }

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -420px;
    width: 400px;
    max-width: 90vw;
    height: 100vh;
    background: var(--white);
    z-index: 2001;
    display: flex;
    flex-direction: column;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
    transition: right var(--transition-normal);
}

.cart-sidebar.open { right: 0; }

.cart-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid var(--light-grey);
    background: var(--gradient-primary);
    color: var(--white);
}

.cart-sidebar-header h3 {
    color: var(--white);
    font-size: 1.25rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-close-btn {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: var(--white);
    width: 36px; height: 36px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.15rem;
    transition: background var(--transition-fast);
}

.cart-close-btn:hover { background: rgba(255, 255, 255, 0.3); }

.cart-sidebar-body { flex: 1; overflow-y: auto; padding: 16px 24px; }

.cart-empty-msg { text-align: center; padding: 60px 0; color: var(--steel-light); }
.cart-empty-msg i { font-size: 3rem; margin-bottom: 1rem; display: block; }
.cart-empty-msg p { font-size: 1.1rem; font-weight: 600; color: var(--steel-grey); margin-bottom: 4px; }
.cart-empty-msg span { font-size: 0.88rem; }

.cart-item {
    display: flex;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--light-grey);
    align-items: flex-start;
}

.cart-item-img {
    width: 64px; height: 64px;
    border-radius: var(--radius-md);
    overflow: hidden;
    flex-shrink: 0;
    background: var(--off-white);
}

.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }

.cart-item-info { flex: 1; min-width: 0; }

.cart-item-info h6 {
    font-size: 0.95rem;
    margin-bottom: 2px;
    color: var(--navy-blue);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cart-item-info .cart-item-price {
    font-size: 0.85rem;
    color: var(--orange-accent);
    font-weight: 600;
}

.cart-qty-controls { display: flex; align-items: center; gap: 8px; margin-top: 8px; }

.cart-qty-controls button {
    width: 28px; height: 28px;
    border: 1px solid var(--light-grey);
    border-radius: var(--radius-sm);
    background: var(--off-white);
    color: var(--navy-blue);
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.cart-qty-controls button:hover {
    background: var(--navy-blue);
    color: var(--white);
    border-color: var(--navy-blue);
}

.cart-qty-controls .cart-qty-value {
    font-weight: 600;
    min-width: 24px;
    text-align: center;
    font-size: 0.95rem;
}

.cart-item-remove {
    background: none;
    border: none;
    color: var(--steel-light);
    cursor: pointer;
    font-size: 1rem;
    padding: 4px;
    transition: color var(--transition-fast);
    flex-shrink: 0;
}

.cart-item-remove:hover { color: #dc3545; }

.cart-item-total { font-size: 0.85rem; font-weight: 700; color: var(--navy-blue); margin-top: 4px; }

.cart-sidebar-footer {
    padding: 20px 24px;
    border-top: 2px solid var(--light-grey);
    background: var(--off-white);
}

.cart-subtotal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.15rem;
    margin-bottom: 16px;
}

.cart-subtotal strong {
    font-family: 'Poppins', sans-serif;
    color: var(--orange-accent);
    font-size: 1.3rem;
}

.cart-enquiry-btn { font-size: 1rem; padding: 14px; }
.cart-clear-btn   { font-size: 0.88rem; padding: 10px; }

.shop-toast {
    position: fixed;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--navy-blue);
    color: var(--white);
    padding: 12px 20px;
    border-radius: var(--radius-lg);
    font-weight: 500;
    font-size: 0.92rem;
    z-index: 3000;
    box-shadow: var(--shadow-xl);
    opacity: 0;
    transition: all 0.4s ease;
    pointer-events: none;
    display: flex;
    align-items: center;
    gap: 14px;
    max-width: 92vw;
}

.shop-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.shop-toast-msg {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.shop-toast-action {
    border: none;
    background: var(--orange-accent);
    color: var(--white);
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.8rem;
    cursor: pointer;
    white-space: nowrap;
    transition: background var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 6px;
}

.shop-toast-action:hover {
    background: var(--orange-light);
}

/* --- Sticky Cart Bar --- */
.shop-cart-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--navy-blue);
    color: var(--white);
    z-index: 1020;
    padding: 12px 0;
    transform: translateY(100%);
    transition: transform 0.35s ease;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.shop-cart-bar.visible {
    transform: translateY(0);
}

.shop-cart-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.shop-cart-bar-info {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 500;
}

.shop-cart-bar-info i {
    font-size: 1.15rem;
    color: var(--orange-accent);
}

.shop-cart-bar-btn {
    border: none;
    background: var(--gradient-orange);
    color: var(--white);
    padding: 10px 24px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.92rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    transition: all var(--transition-fast);
    box-shadow: 0 2px 10px rgba(232, 93, 4, 0.3);
}

.shop-cart-bar-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(232, 93, 4, 0.5);
}

/* --- Bounce animation for cart indicators --- */
@keyframes cartBounce {
    0%   { transform: scale(1); }
    30%  { transform: scale(1.25); }
    50%  { transform: scale(0.95); }
    70%  { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.cart-bounce {
    animation: cartBounce 0.5s ease;
}

/* ============================================
   15. Shop Promo Banner (Part 3)
   ============================================ */
.shop-promo-banner {
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--navy-light) 50%, var(--orange-dark) 100%);
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.shop-promo-banner::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 400px;
    height: 400px;
    background: rgba(232, 93, 4, 0.15);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.shop-promo-banner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

.shop-promo-inner {
    position: relative;
    z-index: 2;
}

.shop-promo-banner .promo-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    animation: pulse 2s ease-in-out infinite;
}

.shop-promo-banner .promo-icon i {
    font-size: 1.8rem;
    color: var(--orange-light);
}

.shop-promo-banner h2 {
    color: var(--white);
    margin-bottom: 0.75rem;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
}

.shop-promo-banner p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    max-width: 550px;
    margin: 0 auto 2rem;
}

.shop-promo-banner .btn-shop-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 44px;
    background: var(--gradient-orange);
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition-normal);
    box-shadow: 0 6px 25px rgba(232, 93, 4, 0.4);
    text-decoration: none;
}

.shop-promo-banner .btn-shop-cta:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 10px 35px rgba(232, 93, 4, 0.5);
    color: var(--white);
}

.shop-promo-banner .btn-shop-cta i {
    transition: transform var(--transition-fast);
}

.shop-promo-banner .btn-shop-cta:hover i {
    transform: translateX(4px);
}

/* ============================================
   16. HAMI Bot / Chat Widget (Part 4)
   ============================================ */
.hamibot-fab {
    position: fixed;
    bottom: 100px;
    right: 28px;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    border: none;
    background: var(--gradient-orange);
    color: var(--white);
    font-size: 1.6rem;
    cursor: pointer;
    z-index: 1500;
    box-shadow: 0 6px 24px rgba(232, 93, 4, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
    animation: botBounce 3s ease-in-out infinite;
}

.hamibot-fab:hover {
    transform: scale(1.12);
    box-shadow: 0 8px 32px rgba(232, 93, 4, 0.55);
    animation: none;
}

.hamibot-fab .fab-icon { transition: transform var(--transition-normal); }
.hamibot-fab.open .fab-icon { transform: rotate(90deg); }

.hamibot-tooltip {
    position: fixed;
    bottom: 170px;
    right: 28px;
    background: var(--navy-blue);
    color: var(--white);
    padding: 8px 16px;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    z-index: 1499;
    box-shadow: var(--shadow-md);
    opacity: 0;
    transform: translateY(8px);
    transition: all var(--transition-normal);
    pointer-events: none;
}

.hamibot-tooltip.visible {
    opacity: 1;
    transform: translateY(0);
}

.hamibot-tooltip::after {
    content: '';
    position: absolute;
    bottom: -6px;
    right: 24px;
    width: 12px;
    height: 12px;
    background: var(--navy-blue);
    transform: rotate(45deg);
}

/* Mobile-only chat bubble near FAB */
.hamibot-mobile-bubble {
    display: none;
    position: fixed;
    bottom: 140px;
    right: 14px;
    background: var(--navy-blue);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 16px 16px 4px 16px;
    font-size: 0.78rem;
    font-weight: 600;
    white-space: nowrap;
    z-index: 1499;
    box-shadow: var(--shadow-md);
    opacity: 0;
    transform: scale(0.8) translateY(6px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
    font-family: 'Inter', sans-serif;
}
.hamibot-mobile-bubble.visible {
    opacity: 1;
    transform: scale(1) translateY(0);
}

@media (max-width: 767.98px) {
    .hamibot-mobile-bubble { display: block; }
}
@media (max-width: 575.98px) {
    .hamibot-mobile-bubble { bottom: 130px; right: 12px; font-size: 0.72rem; padding: 5px 12px; }
}

.hamibot-modal {
    position: fixed;
    bottom: 172px;
    right: 28px;
    width: 380px;
    max-width: calc(100vw - 32px);
    max-height: 520px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.2);
    z-index: 1501;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all var(--transition-normal);
}

.hamibot-modal.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.hamibot-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

.hamibot-backdrop.open {
    opacity: 1;
    visibility: visible;
}

.hamibot-header {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hamibot-avatar {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.hamibot-header-info h4 {
    color: var(--white);
    font-size: 1rem;
    margin: 0;
}

.hamibot-header-info span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

.hamibot-close {
    margin-left: auto;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: var(--white);
    width: 32px; height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background var(--transition-fast);
}

.hamibot-close:hover { background: rgba(255, 255, 255, 0.3); }

.hamibot-body {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: var(--off-white);
    min-height: 280px;
    max-height: 340px;
}

.hamibot-msg {
    max-width: 85%;
    padding: 10px 16px;
    border-radius: 16px;
    font-size: 0.9rem;
    line-height: 1.5;
    animation: fadeInUp 0.35s ease;
}

.hamibot-msg.bot {
    align-self: flex-start;
    background: var(--white);
    color: var(--text-dark);
    border-bottom-left-radius: 4px;
    box-shadow: var(--shadow-sm);
}

.hamibot-msg.user {
    align-self: flex-end;
    background: var(--gradient-primary);
    color: var(--white);
    border-bottom-right-radius: 4px;
}

.hamibot-quick-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    animation: fadeInUp 0.35s ease;
}

.hamibot-quick-btn {
    padding: 8px 18px;
    border: 2px solid var(--navy-blue);
    border-radius: 30px;
    background: var(--white);
    color: var(--navy-blue);
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.hamibot-quick-btn:hover {
    background: var(--navy-blue);
    color: var(--white);
}

.hamibot-typing {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: var(--white);
    border-radius: 16px;
    border-bottom-left-radius: 4px;
    align-self: flex-start;
    box-shadow: var(--shadow-sm);
}

.hamibot-typing span {
    width: 8px;
    height: 8px;
    background: var(--steel-light);
    border-radius: 50%;
    animation: typingDot 1.4s infinite;
}

.hamibot-typing span:nth-child(2) { animation-delay: 0.2s; }
.hamibot-typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingDot {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
    30%           { transform: translateY(-6px); opacity: 1; }
}

@keyframes botBounce {
    0%, 100% { transform: translateY(0); }
    15%      { transform: translateY(-8px); }
    30%      { transform: translateY(0); }
    45%      { transform: translateY(-4px); }
    60%      { transform: translateY(0); }
}

.hamibot-footer {
    padding: 12px 16px;
    border-top: 1px solid var(--light-grey);
    text-align: center;
    background: var(--white);
}

.hamibot-footer p {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin: 0;
}

/* WhatsApp link in chat footer */
.hamibot-wa-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #25d366;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 4px;
    transition: color var(--transition-fast);
}

.hamibot-wa-link:hover { color: #128c7e; }
.hamibot-wa-link i { font-size: 1.1rem; }

/* ─── FAB Robot Character ─── */
.fab-robot {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 36px;
    height: 36px;
}

.fab-robot-antenna {
    width: 4px;
    height: 8px;
    background: #fff;
    border-radius: 2px;
    position: relative;
    margin-bottom: 1px;
}

.fab-robot-antenna::after {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: #ffd700;
    border-radius: 50%;
    animation: antennaPulse 2s ease-in-out infinite;
}

.fab-robot-head {
    width: 28px;
    height: 18px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    position: relative;
}

.fab-robot-eye {
    width: 6px;
    height: 6px;
    background: var(--navy-blue);
    border-radius: 50%;
    animation: robotBlink 3s ease-in-out infinite;
}

.fab-robot-eye.left { animation-delay: 0.1s; }

.fab-robot-body {
    width: 22px;
    height: 8px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 0 0 6px 6px;
    margin-top: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.fab-robot-wave {
    font-size: 0.55rem;
    animation: waveHand 2s ease-in-out infinite;
    display: none;
}

.hamibot-fab.peek .fab-robot-wave { display: inline; }
.hamibot-fab.peek { transform: scale(1.15); }

@keyframes antennaPulse {
    0%, 100% { box-shadow: 0 0 4px rgba(255, 215, 0, 0.4); }
    50% { box-shadow: 0 0 12px rgba(255, 215, 0, 0.9); }
}

@keyframes robotBlink {
    0%, 44%, 50%, 100% { transform: scaleY(1); }
    46% { transform: scaleY(0.1); }
}

@keyframes waveHand {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(20deg); }
    50% { transform: rotate(-10deg); }
    75% { transform: rotate(15deg); }
}

/* ─── Robot face in header ─── */
.hami-robot-face {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
}

.robot-eyes {
    display: flex;
    gap: 8px;
}

.robot-eye {
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    animation: robotBlink 3s ease-in-out infinite;
    position: relative;
}

.robot-eye::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 4px;
    height: 4px;
    background: var(--navy-blue);
    border-radius: 50%;
}

.robot-mouth {
    width: 14px;
    height: 4px;
    border: 2px solid #fff;
    border-top: 0;
    border-radius: 0 0 10px 10px;
}

/* ─── Tooltip wave ─── */
.tooltip-wave {
    display: inline-block;
    animation: waveHand 1.5s ease-in-out infinite;
    margin-right: 4px;
}

/* ─── WhatsApp Floating Button ─── */
.hamibot-whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1501;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    transition: all var(--transition-normal);
    text-decoration: none;
    animation: whatsappPulse 3s ease-in-out infinite;
}

.hamibot-whatsapp-float:hover {
    transform: scale(1.12);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
    color: #fff;
    animation: none;
}

/* ============================================
   17. Animations & Keyframes
   ============================================ */
@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to   { opacity: 1; transform: translateY(0); }
}

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

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(30px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.9); }
    to   { opacity: 1; transform: scale(1); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-10px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50%      { transform: scale(1.05); }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4); }
    50%      { box-shadow: 0 6px 28px rgba(37, 211, 102, 0.7); }
}

/* ─── Global Focus-Visible ─── */
:focus-visible {
    outline: 2px solid var(--orange-accent);
    outline-offset: 2px;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }

/* ============================================
   18. Utilities
   ============================================ */
.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }

.mb-0 { margin-bottom: 0 !important; }
.mt-0 { margin-top: 0 !important; }

.py-5 { padding-top: 3rem !important; padding-bottom: 3rem !important; }

/* ============================================
   19. Preloader & Back-to-Top
   ============================================ */
.preloader {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden { opacity: 0; visibility: hidden; }

.preloader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--light-grey);
    border-top-color: var(--orange-accent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-orange);
    color: var(--white);
    border: none;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    z-index: 1000;
    box-shadow: var(--shadow-md);
}

.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

body.hamibot-active .back-to-top {
    right: 100px;
}

/* ============================================
   UTILITY CLASSES — Replacing inline styles
   ============================================ */

/* Hero tagline (index.html hero section) */
.hero-tagline {
    font-size: clamp(0.95rem, 1.5vw, 1.3rem);
    color: #ffffff;
    margin-bottom: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0,0,0,0.6), 0 0 30px rgba(0,0,0,0.4);
    background: linear-gradient(90deg, rgba(232, 93, 4, 0.30), rgba(232,93,4,0.05));
    display: inline-block;
    padding: 7px 20px 7px 14px;
    border-left: 4px solid var(--orange-accent);
    border-radius: 0 4px 4px 0;
}

/* Hero Arabic subtitle (about.html hero) */
.hero-arabic-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

/* Inline flag images */
.inline-flag {
    height: 1em;
    vertical-align: middle;
    display: inline;
}

.inline-flag--sm {
    height: 0.8em;
    vertical-align: middle;
    display: inline;
}

/* Footer Arabic text */
.footer-arabic {
    font-size: 0.95rem;
    color: var(--steel-light);
    margin-bottom: 12px;
}

/* Footer credit line */
.footer-credit {
    margin-top: 6px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
}

.footer-credit-highlight {
    color: rgba(255, 255, 255, 0.65);
}

/* Service card accent borders (about.html HAMI stands for) */
.service-card--accent-orange {
    border-top: 4px solid var(--orange-accent);
}

.service-card--accent-navy {
    border-top: 4px solid var(--navy-blue);
}

/* Blog full content (hidden by default, toggled by JS) */
.blog-full-content {
    display: none;
}

/* Contact WhatsApp icon styles */
.icon--whatsapp {
    background: rgba(37, 211, 102, 0.12);
}

.icon--whatsapp .fab.fa-whatsapp {
    color: #25d366;
}

/* ============================================
   20. Alerts
   ============================================ */
.alert-success-custom {
    background: #d4edda;
    color: #155724;
    padding: 15px 20px;
    border-radius: var(--radius-md);
    border-left: 4px solid #28a745;
    margin-bottom: 20px;
}

.alert-error-custom {
    background: #f8d7da;
    color: #721c24;
    padding: 15px 20px;
    border-radius: var(--radius-md);
    border-left: 4px solid #dc3545;
    margin-bottom: 20px;
}

/* ============================================
   22. "More" Dropdown Navigation
   ============================================ */
.nav-more-dropdown {
    position: relative;
}

.nav-more-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-more-arrow {
    font-size: 0.65rem;
    transition: transform var(--transition-normal);
}

.nav-more-dropdown.open .nav-more-arrow,
.nav-more-dropdown:hover .nav-more-arrow {
    transform: rotate(180deg);
}

.nav-more-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 220px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1060;
    border: 1px solid var(--light-grey);
    list-style: none;
    pointer-events: none;
}

.nav-more-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid var(--white);
    filter: drop-shadow(0 -2px 2px rgba(0,0,0,0.05));
}

/* Desktop hover trigger */
@media (min-width: 992px) {
    .nav-more-dropdown:hover .nav-more-menu,
    .nav-more-dropdown.open .nav-more-menu {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
        pointer-events: auto;
    }
}

.nav-more-menu li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 22px;
    color: var(--navy-blue);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.nav-more-menu li a i {
    width: 20px;
    text-align: center;
    color: var(--steel-light);
    transition: color var(--transition-fast);
}

.nav-more-menu li a:hover,
.nav-more-menu li a.active {
    background: rgba(232, 93, 4, 0.06);
    color: var(--orange-accent);
}

.nav-more-menu li a:hover i,
.nav-more-menu li a.active i {
    color: var(--orange-accent);
}

.nav-more-menu li + li {
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

/* Active state for More toggle when child is active */
.nav-more-toggle.active::after {
    transform: scaleX(1);
}

.nav-more-toggle.active {
    color: var(--orange-accent) !important;
}

/* ============================================
   23. Homepage — Official Partner Section
   ============================================ */
.partner-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #f0f4f8 0%, #e8eef5 100%);
    overflow: hidden;
}

.partner-bg-lines {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.partner-bg-lines span {
    position: absolute;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, transparent, rgba(10, 38, 71, 0.04), transparent);
    animation: partnerLineFloat 8s ease-in-out infinite;
}

.partner-bg-lines span:nth-child(1) { left: 10%; animation-delay: 0s; }
.partner-bg-lines span:nth-child(2) { left: 25%; animation-delay: 1.5s; }
.partner-bg-lines span:nth-child(3) { left: 50%; animation-delay: 3s; }
.partner-bg-lines span:nth-child(4) { left: 70%; animation-delay: 4.5s; }
.partner-bg-lines span:nth-child(5) { left: 90%; animation-delay: 6s; }

@keyframes partnerLineFloat {
    0%, 100% { transform: translateY(-30px); opacity: 0.3; }
    50% { transform: translateY(30px); opacity: 0.7; }
}

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

.partner-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.partner-logo-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 25px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    min-width: 140px;
}

.partner-logo-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: var(--shadow-xl);
}

.partner-logo-img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin: 0 auto 12px;
    border-radius: var(--radius-md);
}

.partner-logo-label {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--navy-blue);
}

.partner-handshake {
    font-size: 2rem;
    color: var(--orange-accent);
    animation: partnerPulse 2s ease-in-out infinite;
}

@keyframes partnerPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

.partner-info h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.partner-highlights {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.partner-highlights li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: var(--steel-dark);
}

.partner-highlights li i {
    color: var(--orange-accent);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.partner-cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

/* ============================================
   24. Partnership Page Styles
   ============================================ */

/* Partnership Hero */
.partnership-hero {
    position: relative;
    padding: 180px 0 100px;
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--navy-light) 50%, var(--orange-dark) 100%);
    background-size: 200% 200%;
    animation: partnershipGradient 12s ease infinite;
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

@keyframes partnershipGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.partnership-hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.partnership-hero-content {
    position: relative;
    z-index: 2;
}

.partnership-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 8px 22px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--orange-light);
    border: 1px solid rgba(255, 255, 255, 0.15);
    margin-bottom: 1.5rem;
}

.partnership-hero h1 {
    color: var(--white);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.partnership-hero .lead {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto 1.5rem;
}

/* Partnership About Grid */
.partnership-about-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: center;
}

.partner-logo-3d {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 50px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.5s ease;
    perspective: 600px;
}

.partner-logo-3d:hover {
    transform: perspective(600px) rotateY(-5deg) rotateX(3deg) scale(1.03);
    box-shadow: var(--shadow-xl);
}

.viking-logo-3d {
    max-width: 280px;
    width: 100%;
    height: auto;
}

.partnership-about-text .lead {
    color: var(--orange-accent);
    font-weight: 600;
}

.partnership-stats-row {
    display: flex;
    gap: 30px;
    margin-top: 2rem;
}

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

.partnership-stat h3 {
    font-size: 2.2rem;
    color: var(--orange-accent);
    margin-bottom: 4px;
}

.partnership-stat span {
    font-size: 0.85rem;
    color: var(--steel-grey);
    font-weight: 500;
}

/* Partnership Role Cards */
.partnership-role {
    padding: var(--section-padding);
}

.partnership-role-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Glassmorphism card */
.glass-card {
    background: rgba(255, 255, 255, 0.75);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-lg);
    padding: 35px 28px;
    text-align: center;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.glass-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--orange-accent);
}

.role-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    transition: all var(--transition-normal);
}

.glass-card:hover .role-icon {
    background: var(--gradient-orange);
    transform: scale(1.1);
}

.role-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.partnership-role-card h4 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}

.partnership-role-card p {
    font-size: 0.92rem;
    margin: 0;
}

/* Partnership Industries Grid */
.partnership-industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.partnership-industry-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    border: 1px solid transparent;
}

.partnership-industry-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--orange-accent);
}

.industry-icon {
    width: 60px;
    height: 60px;
    background: var(--off-white);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all var(--transition-normal);
}

.partnership-industry-card:hover .industry-icon {
    background: var(--gradient-orange);
}

.industry-icon i {
    font-size: 1.4rem;
    color: var(--navy-blue);
    transition: color var(--transition-normal);
}

.partnership-industry-card:hover .industry-icon i {
    color: var(--white);
}

.partnership-industry-card h5 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.partnership-industry-card p {
    font-size: 0.85rem;
    margin: 0;
    color: var(--steel-grey);
}

/* Partnership Parallax Banner */
.partnership-parallax {
    background: var(--gradient-primary);
    background-attachment: fixed;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.partnership-parallax::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: rgba(232, 93, 4, 0.08);
    border-radius: 50%;
}

.partnership-parallax-content {
    position: relative;
    z-index: 2;
}

.partnership-parallax h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.partnership-parallax p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.partnership-parallax-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.pp-stat {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-weight: 500;
}

.pp-stat i {
    color: var(--orange-accent);
    font-size: 1.2rem;
}

/* Partnership Gallery */
.partnership-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.gallery-card {
    perspective: 600px;
}

.gallery-card-inner {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 35px 25px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--light-grey);
    height: 100%;
}

.gallery-card:hover .gallery-card-inner {
    transform: rotateY(-3deg) rotateX(2deg) translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--orange-accent);
}

.gallery-icon {
    width: 65px;
    height: 65px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    transition: all var(--transition-normal);
}

.gallery-card:hover .gallery-icon {
    background: var(--gradient-orange);
    transform: scale(1.1);
}

.gallery-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.gallery-card h5 {
    font-size: 1.05rem;
    margin-bottom: 0.75rem;
}

.gallery-card p {
    font-size: 0.9rem;
    margin: 0;
    color: var(--steel-grey);
}

/* Floating particle (generated via JS) */
.partnership-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    pointer-events: none;
    animation: floatParticle linear infinite;
}

@keyframes floatParticle {
    0% { transform: translateY(0) translateX(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100vh) translateX(40px); opacity: 0; }
}

/* ============================================
   25. Page Hero — Partnership
   ============================================ */
.page-hero-partnership {
    background: linear-gradient(135deg, rgba(10, 38, 71, 0.92) 0%, rgba(20, 66, 114, 0.88) 100%),
        url('https://images.unsplash.com/photo-1521791136064-7986c2920216?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
}

/* ============================================
   21. Media Queries (ALL breakpoints consolidated)
   ============================================ */

/* Extra Large (1440px+) */
@media (min-width: 1440px) {
    .container { max-width: 1320px; }
    .hero-content h1 { font-size: 4rem; }
    .hero-tagline { font-size: 1.35rem; letter-spacing: 4px; padding: 8px 22px 8px 16px; }
    .shop-grid { grid-template-columns: repeat(4, 1fr); }
}

/* Large Devices (< 1200px) */
@media (max-width: 1199.98px) {
    .hero-stats { gap: 30px; }
    .why-choose-grid { grid-template-columns: repeat(2, 1fr); }
    .navbar-nav .nav-link { padding: 10px 12px !important; font-size: 0.92rem; }
    .navbar-nav .nav-link.nav-shop-highlight { padding: 8px 16px !important; }
    .partnership-industries-grid { grid-template-columns: repeat(3, 1fr); }
    .partnership-about-grid { gap: 40px; }
}

/* Medium Devices (Tablets, < 992px) */
@media (max-width: 991.98px) {
    :root { --section-padding: 60px 0; }

    .navbar-brand {
        font-size: 1.15rem;
        max-width: 320px;
        gap: 10px;
    }

    .navbar-brand .brand-text .brand-name {
        font-size: 1.15rem;
    }

    .navbar-brand .brand-text .brand-subtitle {
        font-size: 0.75rem;
    }

    .navbar-logo {
        width: 56px;
        height: 56px;
    }

    .navbar-collapse {
        background: var(--white);
        padding: 20px;
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-lg);
        margin-top: 15px;
    }

    .navbar-nav .nav-link {
        padding: 12px 0 !important;
        border-bottom: 1px solid var(--light-grey);
    }

    .navbar-nav .nav-link::after { display: none; }

    .navbar-nav .nav-link.nav-shop-highlight {
        background: linear-gradient(135deg, rgba(232, 93, 4, 0.08) 0%, rgba(244, 140, 6, 0.12) 100%);
        border: 1.5px solid rgba(232, 93, 4, 0.25);
        border-radius: var(--radius-md);
        padding: 12px 16px !important;
        margin: 6px 0;
        text-align: center;
    }

    .navbar-nav .nav-link.nav-shop-highlight.active {
        background: var(--gradient-orange);
        color: var(--white) !important;
        border-radius: var(--radius-md);
    }

    /* Mobile More Dropdown → Accordion */
    .nav-more-dropdown {
        position: relative;
    }

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

    .nav-more-menu {
        position: static;
        transform: none;
        min-width: 100%;
        background: var(--off-white);
        border-radius: var(--radius-md);
        box-shadow: none;
        border: none;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.35s ease;
        pointer-events: auto;
    }

    .nav-more-menu::before { display: none; }

    .nav-more-dropdown.open .nav-more-menu {
        max-height: 300px;
        padding: 8px 0;
    }

    .nav-more-menu li a {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .nav-more-menu li + li {
        border-top: 1px solid rgba(0, 0, 0, 0.06);
    }

    /* Partnership Page Responsive */
    .partnership-about-grid { grid-template-columns: 1fr; gap: 40px; }
    .partnership-about-image { order: -1; }
    .partner-logo-3d { padding: 30px; }
    .partnership-role-grid { grid-template-columns: repeat(2, 1fr); }
    .partnership-industries-grid { grid-template-columns: repeat(2, 1fr); }
    .partnership-gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .partner-content { grid-template-columns: 1fr; gap: 40px; }
    .partner-logos { order: -1; }
    .partner-highlights { grid-template-columns: 1fr; }

    .about-snapshot-content { grid-template-columns: 1fr; gap: 40px; }
    .about-image { order: -1; }
    .about-image-badge { bottom: 28px; left: 28px; }
    .about-image-years { width: 76px; height: 76px; }
    .about-image-years .years-number { font-size: 1.2rem; }
    .service-detail-content { grid-template-columns: 1fr; gap: 40px; }
    .service-detail:nth-child(even) .service-detail-content { direction: ltr; }
    .service-icon-large { height: 250px; }
    .industry-content { grid-template-columns: 1fr; gap: 40px; }
    .industry-detail:nth-child(even) .industry-content { grid-template-columns: 1fr; }
    .industry-detail:nth-child(even) .industry-content .industry-image { order: 0; }
    .vision-mission { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: repeat(2, 1fr); }

    .timeline::before { left: 20px; }
    .timeline-item,
    .timeline-item:nth-child(even) {
        padding-right: 0;
        padding-left: 60px;
        justify-content: flex-start;
    }
    .timeline-item::after { left: 20px; }

    .shop-cart-btn { display: none; }
    .shop-cart-fab.has-items { display: flex; left: 24px; right: auto; bottom: 80px; }
    .shop-cart-fab-badge { top: -4px; right: -4px; left: auto; }
    .shop-toolbar { top: 72px; }

    .hamibot-modal { bottom: 100px; right: 16px; width: calc(100vw - 32px); max-height: 480px; }
    .hamibot-fab { bottom: 96px; right: 24px; }
    .hamibot-whatsapp-float { bottom: 28px; right: 24px; width: 56px; height: 56px; font-size: 1.6rem; }
    .back-to-top { bottom: 28px; right: 88px; width: 44px; height: 44px; }
    body.hamibot-active .back-to-top { right: 88px; }
}

/* Small Devices (< 768px) */
@media (max-width: 767.98px) {
    .hero-section { min-height: 0; padding: 120px 0 100px; }
    .hero-content h1 { font-size: 2rem; }
    .hero-stats { flex-wrap: wrap; gap: 20px; }
    .hero-stat  { flex: 1 1 45%; }
    .hero-stat h3 { font-size: 2rem; }
    .page-hero { padding: 120px 0 60px; }

    .partnership-role-grid { grid-template-columns: 1fr; }
    .partnership-industries-grid { grid-template-columns: repeat(2, 1fr); }
    .partnership-gallery-grid { grid-template-columns: 1fr; }
    .partnership-stats-row { flex-wrap: wrap; gap: 20px; }
    .partnership-parallax { background-attachment: scroll; }
    .partnership-parallax-stats { flex-direction: column; align-items: center; gap: 15px; }
    .partner-section { padding: 60px 0; }

    .why-choose-grid   { grid-template-columns: 1fr; }
    .values-grid       { grid-template-columns: 1fr; }
    .about-features    { grid-template-columns: 1fr; }
    .industry-features { grid-template-columns: 1fr; }
    .stat-item h3 { font-size: 2.5rem; }

    .footer-content .row > div { margin-bottom: 30px; }
    .contact-form-card { padding: 30px 20px; }
    .contact-info-card { padding: 30px 20px; margin-bottom: 30px; }

    .shop-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px; }
    .shop-filters { gap: 8px; }
    .shop-filter-btn { padding: 6px 14px; font-size: 0.82rem; }
    .shop-cart-fab.has-items { left: 16px; right: auto; bottom: 70px; width: 52px; height: 52px; font-size: 1.2rem; }
    .cart-sidebar { width: 100%; max-width: 100vw; }

    .shop-promo-banner { padding: 50px 0; }
    .shop-promo-banner h2 { font-size: 1.5rem; }
    .shop-promo-banner .btn-shop-cta { padding: 14px 32px; font-size: 1rem; }

    .hamibot-modal { bottom: 170px; right: 8px; width: calc(100vw - 16px); max-height: 440px; }
    .hamibot-body { min-height: 220px; max-height: 280px; }
    .hamibot-fab { width: 52px; height: 52px; font-size: 1.3rem; bottom: 86px; right: 16px; }
    .hamibot-tooltip { display: none; }
    .hamibot-whatsapp-float { bottom: 24px; right: 16px; width: 52px; height: 52px; font-size: 1.5rem; }
    .back-to-top { bottom: 24px; right: 76px; width: 42px; height: 42px; }
    body.hamibot-active .back-to-top { right: 76px; }

    .navbar-brand {
        font-size: 1rem;
        max-width: 260px;
        gap: 8px;
    }

    .navbar-brand .brand-text .brand-name {
        font-size: 1rem;
    }

    .navbar-brand .brand-text .brand-subtitle {
        font-size: 0.7rem;
    }

    .navbar-brand span {
        display: block;
        font-size: 0.85rem;
        line-height: 1.2;
    }

    .navbar-logo {
        width: 46px;
        height: 46px;
    }
}

/* Extra Small Devices (< 576px) */
@media (max-width: 575.98px) {
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; justify-content: center; }
    .hero-stat { flex: 1 1 100%; }
    .section-title h2 { font-size: 1.75rem; }
    .cta-banner { padding: 60px 0; }
    .cta-banner h2 { font-size: 1.5rem; }
    .product-grid { grid-template-columns: 1fr; }
    .partnership-industries-grid { grid-template-columns: 1fr; }
    .partnership-hero h1 { font-size: 1.8rem; }
    .partnership-hero { padding: 140px 0 80px; }
    .partner-cta-buttons { flex-direction: column; }
    .partner-cta-buttons .btn { width: 100%; justify-content: center; }
    .partner-logos { flex-direction: column; }
    .vm-card { padding: 30px 20px; }
    .category-header { flex-direction: column; text-align: center; }
    .shop-grid { grid-template-columns: 1fr; }
    .shop-product-card .shop-product-img { height: 200px; }
    .shop-product-card .shop-product-slider { height: 200px; }
    .shop-promo-banner .btn-shop-cta { width: 100%; justify-content: center; }
    .shop-cart-fab.has-items { left: 14px; right: auto; bottom: 64px; width: 48px; height: 48px; font-size: 1.1rem; }
    .shop-cart-bar-btn { padding: 8px 16px; font-size: 0.82rem; }
    .shop-cart-bar-info { font-size: 0.82rem; }

    .navbar-brand {
        font-size: 0.9rem;
        max-width: 200px;
        gap: 6px;
    }

    .navbar-brand .brand-text .brand-name {
        font-size: 0.9rem;
    }

    .navbar-brand .brand-text .brand-subtitle {
        font-size: 0.65rem;
    }

    .navbar-brand span {
        display: block;
        font-size: 0.78rem;
        line-height: 1.2;
    }

    .navbar-logo {
        width: 40px;
        height: 40px;
    }

    .hamibot-fab { width: 48px; height: 48px; font-size: 1.2rem; bottom: 80px; right: 14px; }
    .hamibot-whatsapp-float { bottom: 20px; right: 14px; width: 48px; height: 48px; font-size: 1.4rem; }
    .back-to-top { bottom: 20px; right: 70px; width: 40px; height: 40px; font-size: 0.85rem; }
    body.hamibot-active .back-to-top { right: 70px; }
}


/* ============================================================
   26. Blog Preview Section
   ============================================================ */
.blog-preview-section {
    padding: 100px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.blog-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    perspective: 1200px;
}

.blog-preview-card {
    background: var(--white);
    border-radius: 18px;
    padding: 36px 28px 28px;
    box-shadow: 0 8px 32px rgba(10, 25, 47, 0.08);
    border: 1px solid rgba(10, 25, 47, 0.06);
    transition: transform 0.45s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.45s ease;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.blog-preview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-navy), var(--accent-orange));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.blog-preview-card:hover::before {
    transform: scaleX(1);
}

.blog-preview-card:hover {
    box-shadow: 0 20px 60px rgba(10, 25, 47, 0.15);
}

.blog-preview-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary-navy), var(--accent-orange));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: var(--white);
    transition: transform 0.4s ease;
    transform-style: preserve-3d;
}

.blog-preview-card:hover .blog-preview-icon {
    transform: rotateY(180deg) scale(1.1);
}

.blog-preview-meta {
    margin-bottom: 12px;
}

.blog-preview-meta span {
    font-size: 0.82rem;
    color: var(--accent-orange);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-preview-meta span i {
    margin-right: 5px;
}

.blog-preview-card h4 {
    font-family: var(--font-heading);
    color: var(--primary-navy);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blog-preview-card:hover h4 {
    color: var(--accent-orange);
}

.blog-preview-card p {
    color: var(--steel-gray);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .blog-preview-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .blog-preview-grid {
        grid-template-columns: 1fr;
    }
    .blog-preview-section {
        padding: 60px 0;
    }
}


/* ============================================================
   27. 3D Animations & Effects
   ============================================================ */

/* 3D Card Hover Effect (applied via card-3d-hover class) */
.card-3d-hover {
    transform-style: preserve-3d;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.5s ease;
    will-change: transform;
}

.card-3d-hover:hover {
    transform: perspective(1000px) rotateX(4deg) rotateY(-4deg) translateZ(20px);
    box-shadow: 12px 20px 60px rgba(10, 25, 47, 0.18), 0 0 0 1px rgba(232, 119, 34, 0.1);
}

/* 3D Tilt on service cards */
.service-card.card-3d-hover:hover {
    transform: perspective(1000px) rotateX(3deg) rotateY(-5deg) translateZ(25px) scale(1.03);
}

/* 3D Flip effect on why-choose cards */
.why-card.card-3d-hover .icon-box {
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    transform-style: preserve-3d;
}

.why-card.card-3d-hover:hover .icon-box {
    transform: perspective(600px) rotateY(180deg);
}

/* 3D Product card lift */
.product-card.card-3d-hover:hover {
    transform: perspective(1000px) rotateX(5deg) rotateY(-3deg) translateZ(30px);
}

.product-card.card-3d-hover:hover .product-image i {
    transform: scale(1.3) rotateZ(10deg);
    transition: transform 0.4s ease;
}

/* 3D Industry card perspective zoom */
.industry-card {
    transform-style: preserve-3d;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.industry-card:hover {
    transform: perspective(800px) translateZ(30px) scale(1.02);
}

.industry-card:hover img {
    transform: scale(1.15) rotateZ(1deg);
}

/* 3D Stat item pop */
.stat-item {
    transform-style: preserve-3d;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.4s ease;
}

.stat-item:hover {
    transform: perspective(800px) translateZ(20px) translateY(-8px);
    box-shadow: 0 20px 40px rgba(10, 25, 47, 0.15);
}

.stat-item:hover h3 {
    transform: scale(1.1);
    transition: transform 0.4s ease;
}

/* 3D Partner logo cards */
.partner-logo-card.card-3d-hover:hover {
    transform: perspective(800px) rotateY(8deg) translateZ(30px);
}

/* 3D Hero content entrance */
@keyframes hero3dEntrance {
    0% {
        opacity: 0;
        transform: perspective(1200px) rotateX(15deg) translateY(60px) translateZ(-100px);
    }
    100% {
        opacity: 1;
        transform: perspective(1200px) rotateX(0deg) translateY(0) translateZ(0);
    }
}

.hero-section .hero-content {
    animation: hero3dEntrance 1.2s cubic-bezier(0.23, 1, 0.32, 1) forwards;
    transform-style: preserve-3d;
}

/* 3D floating animation for decorative elements */
@keyframes float3d {
    0%, 100% {
        transform: perspective(800px) translateY(0) rotateX(0deg) rotateY(0deg);
    }
    25% {
        transform: perspective(800px) translateY(-15px) rotateX(3deg) rotateY(5deg);
    }
    50% {
        transform: perspective(800px) translateY(-8px) rotateX(-2deg) rotateY(-3deg);
    }
    75% {
        transform: perspective(800px) translateY(-20px) rotateX(4deg) rotateY(-5deg);
    }
}

/* 3D Scroll reveal (enhanced animate-on-scroll) */
@keyframes scrollReveal3d {
    0% {
        opacity: 0;
        transform: perspective(1000px) rotateX(10deg) translateY(40px) translateZ(-50px);
    }
    100% {
        opacity: 1;
        transform: perspective(1000px) rotateX(0deg) translateY(0) translateZ(0);
    }
}

.animate-on-scroll.visible {
    animation: scrollReveal3d 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

/* 3D button hover effects */
.btn-primary:hover,
.btn-outline-primary:hover {
    transform: perspective(500px) translateZ(10px) translateY(-2px);
    box-shadow: 0 8px 25px rgba(232, 119, 34, 0.3);
}

/* 3D CTA banner */
.cta-banner {
    transform-style: preserve-3d;
    position: relative;
    overflow: hidden;
}

.cta-banner::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 50%);
    animation: float3d 8s ease-in-out infinite;
    pointer-events: none;
}

.cta-content:hover {
    transform: perspective(1000px) translateZ(15px);
    transition: transform 0.4s ease;
}

/* 3D Shop promo banner */
.shop-promo-inner {
    transform-style: preserve-3d;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.shop-promo-inner:hover {
    transform: perspective(800px) rotateX(2deg) translateZ(15px);
}

.shop-promo-inner:hover .promo-icon {
    transform: rotateY(360deg);
    transition: transform 0.8s ease;
}

/* 3D Section title entrance */
.section-title {
    transform-style: preserve-3d;
}

.section-title.visible h2 {
    animation: hero3dEntrance 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

/* 3D About snapshot image */
.about-image {
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.about-image:hover .about-image-wrapper {
    transform: perspective(800px) rotateY(5deg) rotateX(-3deg) translateZ(20px);
    box-shadow: 24px 24px 70px rgba(10, 25, 47, 0.28), 0 8px 24px rgba(10, 38, 71, 0.15);
}

/* Parallax depth layers */
.parallax-3d-layer {
    transform-style: preserve-3d;
}

/* 3D Glassmorphism enhancement for partner section */
.partner-section {
    perspective: 1500px;
}

.partner-content {
    transform-style: preserve-3d;
}

/* Enhanced hover depth for footer links */
.footer-links a:hover {
    transform: translateX(5px) perspective(500px) translateZ(5px);
    transition: transform 0.3s ease;
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    .card-3d-hover:hover,
    .industry-card:hover,
    .stat-item:hover,
    .about-image:hover,
    .cta-content:hover,
    .shop-promo-inner:hover {
        transform: none !important;
    }

    .hero-section .hero-content {
        animation: none;
        opacity: 1;
    }

    .animate-on-scroll.visible {
        animation: none;
        opacity: 1;
        transform: none;
    }

    .blog-preview-card:hover .blog-preview-icon,
    .why-card.card-3d-hover:hover .icon-box {
        transform: none;
    }
}
