/*
 * ============================================================
 * White Way Technology - Design System
 * ============================================================
 * A clean, organized CSS file for premium corporate website
 * Approach: Mobile-First, BEM-inspired naming
 * 
 * TABLE OF CONTENTS:
 * 1. Variables & Fonts
 * 2. Reset & Base Styles
 * 3. Utilities (Container, Grid, Glass, etc.)
 * 4. Components (Buttons, Section Titles)
 * 5. Header & Navigation
 * 6. Hero Section
 * 7. Services Section
 * 8. Sectors Section
 * 9. About Section
 * 10. Why Turkey Section
 * 11. Footer
 * 12. Floating Elements
 * 13. Animations
 * 14. Responsive Overrides
 * ============================================================
 */

/* ============================================================
   1. VARIABLES & FONTS
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700&family=Tajawal:wght@300;400;500;700&display=swap');

:root {
    /* Colors */
    --color-white: #ffffff;
    --color-black: #0d0d0d;
    --color-red: #E31E24;
    --color-red-dark: #c41a20;
    --color-off-white: #fcfcfc;
    --color-text-primary: #1a1a1a;
    --color-text-secondary: #555555;

    /* Glass Effect */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);

    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --transition-fast: all 0.3s ease;

    /* Shadows */
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 20px 40px rgba(0, 0, 0, 0.1);
    --shadow-red: 0 4px 15px rgba(227, 30, 36, 0.3);

    /* Fonts */
    --font-heading: 'Cairo', sans-serif;
    --font-body: 'Tajawal', sans-serif;
}

/* ============================================================
   2. RESET & BASE STYLES
   ============================================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    font-family: var(--font-body);
    background-color: var(--color-white);
    color: var(--color-text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    direction: rtl;
}

html {
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
}

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

ul {
    list-style: none;
}

/* ============================================================
   3. UTILITIES
   ============================================================ */

/* Container */
.container {
    width: 100%;
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    margin: 0 auto;
    box-sizing: border-box;
}

/* Glass Effect */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-soft);
}

/* Grid System */
.grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
}

/* Hover Effect */
.hover-lift {
    transition: var(--transition-smooth);
}

.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

/* Section Padding */
.section-padding {
    padding: 60px 0;
}

/* Section Title */
.section-title {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

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

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
    width: 60px;
    height: 3px;
    background-color: var(--color-red);
}

/* ============================================================
   3.1 DECORATIVE ELEMENTS (ENHANCED & ANIMATED)
   ============================================================ */

/* Complex Background Network Grid */
.bg-logistics-grid {
    position: relative;
    overflow: hidden;
    /* Default for light backgrounds */
    --decor-opacity-grid: 0.08;
    --decor-color-grid: 227, 30, 36;
    /* Red */
}

.bg-logistics-grid>* {
    position: relative;
    z-index: 2;
    /* Ensures content is above grid and dots */
}

.bg-logistics-grid::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 2px 2px, rgba(var(--decor-color-grid), var(--decor-opacity-grid)) 1px, transparent 0),
        linear-gradient(rgba(var(--decor-color-grid), calc(var(--decor-opacity-grid) * 0.4)) 1px, transparent 1px),
        linear-gradient(90deg, rgba(var(--decor-color-grid), calc(var(--decor-opacity-grid) * 0.4)) 1px, transparent 1px);
    background-size: 40px 40px, 80px 80px, 80px 80px;
    z-index: 0;
    pointer-events: none;
}

/* SVG Path Drawing Animation */
.animated-svg-container {
    position: absolute;
    z-index: 0;
    pointer-events: none;
    opacity: 0.4;
    /* Boosted base visibility */
    transition: opacity 0.5s ease;
}

.animated-svg-container svg {
    width: 100%;
    height: 100%;
}

.drawing-path {
    stroke: var(--color-red);
    /* Default for light backgrounds */
    stroke-width: 1.8;
    /* Slightly thicker for better visibility */
    fill: none;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawPath 15s linear infinite;
    opacity: 0.6;
    /* Increased path opacity */
}

/* Dark section overrides */
.partnership-bridge .drawing-path,
.cta-section .drawing-path,
.page-hero .drawing-path,
.contact-cta-card .drawing-path {
    stroke: var(--color-white);
    opacity: 0.5;
    /* Boosted for dark backgrounds */
}

.partnership-bridge .animated-svg-container,
.cta-section .animated-svg-container,
.page-hero .animated-svg-container,
.contact-cta-card .animated-svg-container {
    opacity: 0.6;
}

.partnership-bridge,
.cta-section,
.page-hero,
.contact-cta-card {
    --decor-color-grid: 255, 255, 255;
    --decor-opacity-grid: 0.15;
}

@keyframes drawPath {
    0% {
        stroke-dashoffset: 1000;
    }

    50% {
        stroke-dashoffset: 0;
    }

    100% {
        stroke-dashoffset: -1000;
    }
}

/* Float Animation */
.float-element {
    animation: float 8s ease-in-out infinite;
}

@keyframes float {

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

    50% {
        transform: translateY(-30px) rotate(5deg);
    }
}

/* Density Positions */
.pos-tl {
    top: 5%;
    left: 5%;
    width: 250px;
}

.pos-tr {
    top: 10%;
    right: 5%;
    width: 200px;
}

.pos-bl {
    bottom: 5%;
    left: 10%;
    width: 220px;
}

.pos-br {
    bottom: 8%;
    right: 8%;
    width: 280px;
}

.pos-mid-l {
    top: 40%;
    left: -5%;
    width: 300px;
    opacity: 0.1;
}

.pos-mid-r {
    top: 50%;
    right: -5%;
    width: 350px;
    opacity: 0.1;
}

/* Pulse Dots for Grid */
.pulse-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--color-red);
    border-radius: 50%;
    opacity: 0.3;
    animation: pulse 5s infinite;
}

.partnership-bridge .pulse-dot,
.cta-section .pulse-dot,
.page-hero .pulse-dot,
.contact-cta-card .pulse-dot {
    background: var(--color-white);
    opacity: 0.4;
}

@keyframes pulse {

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

    50% {
        transform: scale(3);
        opacity: 0.6;
    }
}

/* Reveal Animation (JS-controlled) */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

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

/* ============================================================
   4. COMPONENTS - BUTTONS
   ============================================================ */

.btn {
    display: inline-block;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--color-red);
    color: var(--color-white);
    box-shadow: var(--shadow-red);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(227, 30, 36, 0.4);
    background-color: var(--color-red-dark);
}

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

.btn-outline:hover {
    background-color: var(--color-black);
    color: var(--color-white);
}

/* Red Nav Button (White Text) */
.btn-nav-red {
    background-color: var(--color-red);
    color: var(--color-white);
    box-shadow: var(--shadow-red);
    font-weight: 700;
    border: 1px solid transparent;
}

.btn-nav-red:hover {
    background-color: var(--color-red-dark);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(227, 30, 36, 0.3);
}

/* Hero Actions Container */
.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

/* Mobile Hero Buttons (Libalco Style) */
.hero-mobile-btn-solid {
    background-color: var(--color-white);
    color: var(--color-black);
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-mobile-btn-solid:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

.hero-mobile-btn-outline {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.8);
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-mobile-btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--color-white);
}

/* ============================================================
   5. HEADER & NAVIGATION
   ============================================================ */

header,
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2000;
    transition: var(--transition-smooth);
    background: var(--color-white);
    box-shadow: var(--shadow-soft);
    padding: 10px 0;
}

/* WordPress Admin Bar Fix */
.admin-bar header,
.admin-bar #header {
    top: 32px;
}

@media screen and (max-width: 782px) {

    .admin-bar header,
    .admin-bar #header {
        top: 46px;
    }
}

@media screen and (max-width: 600px) {

    .admin-bar header,
    .admin-bar #header {
        top: 46px;
    }
}

/* Header Placeholder */
#header-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    padding: 0;
    margin: 0;
    z-index: 2001;
    background: transparent;
}

/* Nav Container - RTL Layout */
.nav-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    position: relative;
    width: 100%;
    padding: 0 15px;
}

/* Logo - anchored to right edge in RTL */
.logo {
    position: relative;
    z-index: 2100;
    order: 1;
    /* First in RTL (right side) */
}

.logo img {
    height: 45px;
    width: auto;
    transition: var(--transition-smooth);
}

/* Nav element containing menu and CTA */
header nav {
    order: 2;
    /* Second in RTL (left of logo) */
    display: flex;
    /* Push nav to the left in RTL */
    /* On mobile, we want space-between: [Right: Logo] ... [Left: Toggle] */
}

/* Nav CTA Button (Fixed Red Button) */
.nav-cta-btn {
    white-space: nowrap;
    display: none;
    /* Hidden on mobile, shown on desktop via media query */
}

/* Menu Toggle (Hamburger) */
.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    z-index: 2100;
    margin-right: auto;
    /* Push to the far left in RTL */
}

.menu-toggle .bar {
    display: block;
    height: 2px;
    background-color: var(--color-black);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

.menu-toggle .bar.top {
    width: 60%;
    align-self: flex-end;
}

.menu-toggle .bar.middle {
    width: 100%;
}

.menu-toggle .bar.bottom {
    width: 60%;
    align-self: flex-start;
}

/* header.scrolled .menu-toggle .bar - removed, now always black */

/* Menu Toggle Active State */
.menu-toggle.active .bar.top {
    width: 100%;
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active .bar.middle {
    opacity: 0;
}

.menu-toggle.active .bar {
    background-color: var(--color-white) !important;
}

.menu-toggle.active .bar.bottom {
    width: 100%;
    transform: translateY(-8px) rotate(-45deg);
}

/* Navigation Links - Mobile (Fullscreen Menu) */
.nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--color-black);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    z-index: 1000;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s cubic-bezier(0.85, 0, 0.15, 1);
}

.nav-links.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.nav-links li {
    margin-bottom: 25px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    transition-delay: 0.1s;
}

.nav-links.active li {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation for menu items */
.nav-links.active li:nth-child(1) {
    transition-delay: 0.2s;
}

.nav-links.active li:nth-child(2) {
    transition-delay: 0.25s;
}

.nav-links.active li:nth-child(3) {
    transition-delay: 0.3s;
}

.nav-links.active li:nth-child(4) {
    transition-delay: 0.35s;
}

.nav-links.active li:nth-child(5) {
    transition-delay: 0.4s;
}

.nav-links.active li:nth-child(6) {
    transition-delay: 0.45s;
}

.nav-links a {
    color: var(--color-white);
    font-size: 1.8rem;
    font-weight: 700;
    font-family: var(--font-heading);
    text-transform: uppercase;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-red);
    transition: var(--transition-smooth);
}

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

/* Mobile Menu CTA Button Specifics */
.nav-links a.btn {
    font-size: 1.1rem;
    /* Override big menu font */
    margin-top: 10px;
    display: inline-block;
    border-radius: 50px;
    /* Add roundness to mobile menu button */
}

.nav-links a.btn::after {
    display: none;
    /* No underline for button */
}

/* ============================================================
   6. HERO SECTION
   ============================================================ */

.hero {
    min-height: 100vh;
    padding: 0;
    margin: 0;
    position: relative;
    top: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

/* Mobile: Image as full background */
.hero-visual {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    box-shadow: none;
}

/* Dark Overlay for Mobile */
.hero-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(20, 20, 45, 0.7) 0%, rgba(13, 13, 25, 0.95) 100%);
    z-index: 1;
}

/* Hero Content */
.hero-content {
    max-width: 100%;
    color: var(--color-white);
    padding: 160px 20px 40px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 1.7rem;
    line-height: 1.5;
    margin-bottom: 20px;
    color: var(--color-white);
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 1px;
}

.hero-content h1 span {
    color: var(--color-red);
    display: block;
}

.hero-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    font-weight: 500;
}

.hero-content .btn {
    display: block;
    width: 100%;
    margin-bottom: 15px;
    text-align: center;
}

/* Hero Badge - Hidden on Mobile */
.hero-badge {
    display: none;
}

/* ============================================================
   7. SERVICES SECTION
   ============================================================ */

.service-card {
    padding: 30px;
    text-align: center;
    border-radius: 12px;
    background: var(--color-off-white);
    border: 1px solid #eee;
}

.service-icon {
    font-size: 2.5rem;
    color: var(--color-red);
    margin-bottom: 15px;
}

/* ============================================================
   8. SECTORS SECTION
   ============================================================ */

.sectors-grid-modern {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 30px;
}

.sector-item-modern {
    position: relative;
    padding: 40px 30px;
    border-radius: 20px;
    background: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    color: var(--color-black);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Top border animation on hover */
.sector-item-modern::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: var(--color-red);
    transition: var(--transition-smooth);
    z-index: 2;
}

.sector-item-modern:hover::after {
    width: 100%;
}

.sector-item-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* Sector Icon */
.sector-icon-modern {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.8rem;
    color: var(--color-red);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
    position: relative;
    z-index: 1;
}

.sector-item-modern:hover .sector-icon-modern {
    background: var(--color-red);
    color: white;
    transform: scale(1.1) rotate(5deg);
}

/* Sector Content */
.sector-content-modern {
    position: relative;
    z-index: 1;
    transition: var(--transition-smooth);
}

.sector-title-modern {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--color-black);
}

.sector-item-modern:hover .sector-title-modern {
    color: var(--color-red);
}

.sector-desc-modern {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    line-height: 1.5;
    opacity: 0.8;
}

/* ============================================================
   9. ABOUT SECTION
   ============================================================ */

/* Uses utilities + inline styles */

/* ============================================================
   10. WHY TURKEY SECTION
   ============================================================ */

.why-turkey {
    background: var(--color-black);
    color: var(--color-white);
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 25px;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: rgba(227, 30, 36, 0.1);
    border: 1px solid var(--color-red);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--color-red);
    font-size: 1.25rem;
    flex-shrink: 0;
}

/* ============================================================
   11. FOOTER
   ============================================================ */

footer {
    background-color: var(--color-black);
    color: var(--color-white);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 50px;
}

.footer-col h3 {
    margin-bottom: 25px;
    color: var(--color-white);
    font-size: 1.25rem;
}

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

.footer-links a {
    opacity: 0.7;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--color-red);
    padding-right: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition-smooth);
}

.social-link:hover {
    background: var(--color-red);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.6;
}

/* ============================================================
   12. FLOATING ELEMENTS
   ============================================================ */

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #25d366;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 999;
}

/* ============================================================
   13. ANIMATIONS
   ============================================================ */

/* Menu open state - body scroll lock */
body.menu-open {
    overflow: hidden;
}

/* ============================================================
   14. PAGE HERO (Internal Pages)
   ============================================================ */

/* Internal Page Header Styles */
/* Make header always white on internal pages for better visibility */
body:has(.page-hero) header,
body:has(.page-hero) #header,
body.internal-page header,
body.internal-page #header {
    background: var(--color-white) !important;
    box-shadow: var(--shadow-soft);
}

/* Ensure hamburger menu is dark on internal pages (on white background) */
body:has(.page-hero) header .menu-toggle .bar,
body:has(.page-hero) #header .menu-toggle .bar,
body.internal-page header .menu-toggle .bar,
body.internal-page #header .menu-toggle .bar {
    background-color: var(--color-black);
}

/* Ensure nav links are dark on internal pages (on white background) - DESKTOP ONLY */
@media (min-width: 992px) {

    body:has(.page-hero) header .nav-links a,
    body:has(.page-hero) #header .nav-links a,
    body.internal-page header .nav-links a,
    body.internal-page #header .nav-links a {
        color: var(--color-black) !important;
    }
}

/* Keep primary button styled correctly */
body:has(.page-hero) header .nav-links .btn-primary,
body:has(.page-hero) #header .nav-links .btn-primary,
body.internal-page header .nav-links .btn-primary,
body.internal-page #header .nav-links .btn-primary {
    color: var(--color-white) !important;
    background-color: var(--color-red);
}

.page-hero {
    background: linear-gradient(135deg, var(--color-black) 0%, #1a1a2e 100%);
    padding: 140px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(45deg, transparent 0%, rgba(227, 30, 36, 0.1) 100%);
}

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

.page-hero-badge {
    display: inline-block;
    color: var(--color-red);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.page-hero h1 {
    color: var(--color-white);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}

/* ============================================================
   15. ABOUT PAGE STYLES
   ============================================================ */

.section-badge {
    display: inline-block;
    color: var(--color-red);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.about-story {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.about-story-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.about-story-content .lead {
    font-size: 1.15rem;
    color: var(--color-text-secondary);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-story-content p {
    color: var(--color-text-secondary);
    margin-bottom: 15px;
    line-height: 1.8;
}

.about-story-image {
    position: relative;
}

.about-story-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    left: 20px;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
}

.experience-badge .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-red);
}

.experience-badge .text {
    font-size: 0.9rem;
    color: var(--color-text-primary);
}

/* Approach Cards */
.approach-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.approach-card {
    background: var(--color-white);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.approach-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.approach-icon {
    width: 70px;
    height: 70px;
    background: rgba(227, 30, 36, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--color-red);
}

.approach-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.approach-card p {
    color: var(--color-text-secondary);
}

/* Statistics Section */
.stats-section {
    background: var(--color-black);
    color: var(--color-white);
}

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

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-red);
    margin-bottom: 10px;
}

.stats-section .stat-label {
    font-size: 1rem;
    color: var(--color-white) !important;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--color-red) 0%, #a31519 100%);
    text-align: center;
}

.cta-content h2 {
    color: var(--color-white);
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    justify-content: center;
    width: 100%;
}

/* ============================================================
   16. CATEGORIES PAGE STYLES (MODERN SPLIT DESIGN)
   ============================================================ */

.categories-modern {
    overflow: hidden;
}

.category-section {
    padding: 100px 0;
    position: relative;
}

.category-section.alt-bg {
    background-color: var(--color-off-white);
}

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

/* Reverse layout for alternating sections */
.category-split.reverse {
    direction: ltr;
    /* Flip the grid */
}

.category-split.reverse .category-content {
    direction: rtl;
    /* Restore text direction */
}

.category-image-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
    aspect-ratio: 4/3;
    transition: var(--transition-smooth);
}

.category-image-wrapper:hover {
    transform: scale(1.02);
}

.category-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.category-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--color-red);
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(227, 30, 36, 0.3);
}

.category-icon-box {
    width: 70px;
    height: 70px;
    background: rgba(227, 30, 36, 0.1);
    color: var(--color-red);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 25px;
}

.category-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--color-black);
}

.category-content p {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
}

.category-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.info-item h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: var(--color-red);
    margin-bottom: 15px;
}

.info-item ul li {
    padding: 5px 0;
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    position: relative;
    padding-right: 20px;
}

.info-item ul li::before {
    content: '•';
    position: absolute;
    right: 0;
    color: var(--color-red);
    font-weight: bold;
}

.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tags-cloud span {
    background: var(--color-white);
    padding: 6px 14px;
    border-radius: 10px;
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

.category-section.alt-bg .tags-cloud span {
    background: var(--color-off-white);
}

/* Animations adjustments */
.category-section.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
}

.category-section.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive adjustments for categories */
@media (max-width: 991px) {
    .category-section {
        padding: 60px 0;
    }

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

    .category-split.reverse {
        direction: rtl;
        /* Reset for mobile stacking */
    }

    .category-content h2 {
        font-size: 1.8rem;
    }

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

/* ============================================================
   17. SERVICES PAGE STYLES
   ============================================================ */

.services-detailed-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

/* Services Split Grid - First Group (2x2 on desktop) */
.services-grid-first {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

/* Services Split Grid - Second Group (3 columns on desktop) */
.services-grid-second {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

/* Services Image Showcase Section */
.services-showcase {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    overflow: hidden;
}

.services-showcase-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.services-showcase-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.services-showcase-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

.showcase-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--color-red);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 10px 30px rgba(227, 30, 36, 0.3);
}

.showcase-badge-left {
    right: auto;
    left: 20px;
}

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

.showcase-tag {
    display: inline-block;
    background: rgba(227, 30, 36, 0.1);
    color: var(--color-red);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.services-showcase-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.services-showcase-text p {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: 30px;
}

.showcase-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.showcase-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
}

.showcase-feature i {
    color: var(--color-red);
    font-size: 1.2rem;
    width: 40px;
    height: 40px;
    background: rgba(227, 30, 36, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.showcase-stat {
    text-align: center;
    background: white;
    padding: 20px 25px;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-red);
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

.services-showcase-alt {
    background: linear-gradient(135deg, var(--color-black) 0%, #1a1a2e 100%);
}

.services-showcase-alt .services-showcase-text h2,
.services-showcase-alt .services-showcase-text p,
.services-showcase-alt .showcase-feature span {
    color: white;
}

.services-showcase-alt .showcase-feature {
    background: rgba(255, 255, 255, 0.1);
}

.services-showcase-alt .showcase-stat {
    background: rgba(255, 255, 255, 0.1);
}

.services-showcase-alt .stat-label {
    color: rgba(255, 255, 255, 0.7);
}

.service-detailed-card {
    background: var(--color-white);
    border-radius: 16px;
    padding: 35px 30px;
    position: relative;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
}

.service-detailed-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.service-number {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(227, 30, 36, 0.1);
}

.service-detailed-icon {
    width: 60px;
    height: 60px;
    background: rgba(227, 30, 36, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-red);
    margin-bottom: 20px;
}

.service-detailed-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.service-detailed-card p {
    color: var(--color-text-secondary);
    line-height: 1.7;
}

/* Trust & Transparency Box */
.trust-box {
    background: var(--color-white);
    padding: 60px 40px;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.03);
    overflow: hidden;
}

.trust-box::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 6px;
    height: 100%;
    background: var(--color-red);
}

.trust-box-badge {
    position: absolute;
    top: 0;
    left: 40px;
    background: var(--color-red);
    color: white;
    padding: 10px 25px;
    border-radius: 0 0 15px 15px;
    font-size: 0.9rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.trust-box-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.trust-icon {
    width: 100px;
    height: 100px;
    background: var(--color-off-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--color-red);
    flex-shrink: 0;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.02);
}

.trust-text h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--color-black);
}

.trust-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--color-text-secondary);
    max-width: 800px;
}

.trust-text strong {
    color: var(--color-red);
}

@media (max-width: 767px) {
    .trust-box {
        padding: 50px 25px;
    }

    .trust-box-badge {
        left: 20px;
        padding: 8px 15px;
        font-size: 0.8rem;
    }

    .trust-box-content {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }

    .trust-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

    .trust-text h3 {
        font-size: 1.4rem;
    }

    .trust-text p {
        font-size: 1rem;
    }
}

/* Value Grid */
.value-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.value-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--color-off-white);
    border-radius: 16px;
}

.value-icon {
    width: 60px;
    height: 60px;
    background: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
    color: var(--color-red);
    box-shadow: var(--shadow-soft);
}

.value-item h4 {
    margin-bottom: 8px;
}

.value-item p {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
}

/* ============================================================
   18. HOW IT WORKS PAGE STYLES
   ============================================================ */

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 25px;
    margin-bottom: 30px;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 60px;
    right: 25px;
    width: 2px;
    height: calc(100% - 30px);
    background: linear-gradient(180deg, var(--color-red) 0%, rgba(227, 30, 36, 0.2) 100%);
}

.process-step-number {
    width: 50px;
    height: 50px;
    background: var(--color-red);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    flex-shrink: 0;
}

.process-step-content {
    background: var(--color-off-white);
    padding: 25px;
    border-radius: 16px;
    flex: 1;
}

.process-step-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    flex-wrap: wrap;
    gap: 10px;
}

.process-step-header h3 {
    font-size: 1.2rem;
}

.process-duration {
    background: var(--color-red);
    color: var(--color-white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.process-step-content p {
    color: var(--color-text-secondary);
    line-height: 1.7;
}

/* Responsibility Grid */
.responsibility-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.responsibility-card {
    background: var(--color-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.responsibility-header {
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--color-white);
}

.responsibility-header.client {
    background: var(--color-black);
}

.responsibility-header.company {
    background: var(--color-red);
}

.responsibility-header i {
    font-size: 1.5rem;
}

.responsibility-header h3 {
    font-size: 1.2rem;
}

.responsibility-list {
    padding: 25px;
}

.responsibility-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.responsibility-list li:last-child {
    border-bottom: none;
}

.responsibility-list i {
    color: var(--color-red);
    font-size: 1rem;
}

/* ============================================================
   18.1 HOMEPAGE HOW IT WORKS (PREMIUM VERTICAL)
   ============================================================ */

.how-it-works-v2 {
    background-color: var(--color-off-white);
    overflow: hidden;
}

.timeline-vertical-v2 {
    position: relative;
    max-width: 1000px;
    margin: 50px auto 0;
    padding: 20px 0;
}

/* Central Vertical Line */
.timeline-vertical-v2::before {
    content: '';
    position: absolute;
    top: 0;
    right: 30px;
    /* Start aligned right for mobile */
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--color-red) 0%, rgba(227, 30, 36, 0.1) 100%);
    border-radius: 3px;
}

.step-v2 {
    position: relative;
    margin-bottom: 60px;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    padding-right: 80px;
    /* Space for the line and icon */
}

/* Step Node/Icon */
.step-v2-icon {
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: var(--color-white);
    border: 3px solid var(--color-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-red);
    z-index: 2;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.step-v2:hover .step-v2-icon {
    background: var(--color-red);
    color: var(--color-white);
    transform: scale(1.1);
}

.step-v2-card {
    background: var(--color-white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.02);
    width: 100%;
    transition: var(--transition-smooth);
}

.step-v2:hover .step-v2-card {
    transform: translateX(-10px);
    box-shadow: var(--shadow-medium);
}

.step-v2-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--color-black);
}

.step-v2-time {
    display: inline-block;
    background: rgba(227, 30, 36, 0.1);
    color: var(--color-red);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.step-v2-card p {
    color: var(--color-text-secondary);
    font-size: 1rem;
    line-height: 1.7;
}

/* Desktop Styles for Vertical Timeline */
@media (min-width: 992px) {
    .timeline-vertical-v2::before {
        right: 50%;
        /* Center the line */
        transform: translateX(50%);
    }

    .step-v2 {
        width: 50%;
        /* Each step takes half the width */
        padding-right: 0;
    }

    /* Odd steps on the right */
    .step-v2:nth-child(odd) {
        align-self: flex-start;
        padding-left: 60px;
        margin-right: 50%;
        text-align: left;
    }

    /* Even steps on the left */
    .step-v2:nth-child(even) {
        align-self: flex-end;
        padding-right: 60px;
        margin-left: 50%;
        text-align: right;
    }

    .step-v2-icon {
        right: -30px;
        /* Position on the line */
    }

    .step-v2:nth-child(even) .step-v2-icon {
        right: auto;
        left: -30px;
    }

    .step-v2:nth-child(odd) .step-v2-card::after {
        content: '';
        position: absolute;
        top: 25px;
        right: -10px;
        width: 20px;
        height: 20px;
        background: var(--color-white);
        transform: rotate(45deg);
        border-right: 1px solid rgba(0, 0, 0, 0.02);
        border-top: 1px solid rgba(0, 0, 0, 0.02);
    }

    .step-v2:nth-child(even) .step-v2-card::after {
        content: '';
        position: absolute;
        top: 25px;
        left: -10px;
        width: 20px;
        height: 20px;
        background: var(--color-white);
        transform: rotate(45deg);
        border-left: 1px solid rgba(0, 0, 0, 0.02);
        border-bottom: 1px solid rgba(0, 0, 0, 0.02);
    }
}

/* Partnership/Responsibility Bridge Refined (V5 Clean/Corporate) */
.partnership-bridge {
    margin-top: 50px;
    background: #0d0d0d;
    border-radius: 20px;
    padding: 30px 15px;
    color: var(--color-white);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

@media (min-width: 992px) {
    .partnership-bridge {
        padding: 60px 40px;
        border-radius: 30px;
        margin-top: 80px;
    }
}

.bridge-header {
    text-align: center;
    margin-bottom: 40px;
}

.bridge-header h3 {
    font-size: 1.8rem;
    margin-bottom: 12px;
    color: var(--color-white);
}

.bridge-header p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.bridge-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    position: relative;
    z-index: 1;
}

@media (min-width: 992px) {
    .bridge-grid {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }

    /* Vertical Divider Simplified */
    .bridge-grid::after {
        content: '\f500';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 60px;
        height: 60px;
        background: #1a1a1a;
        border: 1px solid rgba(255, 255, 255, 0.1);
        color: var(--color-red);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
    }
}

.bridge-side {
    padding: 10px;
}

@media (min-width: 992px) {
    .bridge-side {
        padding: 20px;
    }
}

.bridge-side h4 {
    font-size: 1.25rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--color-white);
    opacity: 0.9;
}

.bridge-side.company-side h4 {
    color: var(--color-red);
}

.bridge-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bridge-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.04);
    padding: 18px 22px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: var(--transition-fast);
}

@media (min-width: 992px) {
    .bridge-item {
        padding: 22px 28px;
        border-radius: 15px;
    }
}

.bridge-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.1);
}

.bridge-item i {
    font-size: 0.9rem;
    color: var(--color-red);
    width: 28px;
    height: 28px;
    background: rgba(227, 30, 36, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.bridge-side.client-side .bridge-item i {
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.1);
}

.bridge-item span {
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
}

/* ============================================================
   19. WHY US PAGE STYLES
   ============================================================ */

.statement-box {
    text-align: center;
    padding: 60px 30px;
    background: var(--color-off-white);
    border-radius: 30px;
    max-width: 700px;
    margin: 0 auto;
}

.statement-icon {
    width: 100px;
    height: 100px;
    background: var(--color-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.5rem;
    color: var(--color-white);
}

.statement-box h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

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

/* Advantages Grid */
.advantages-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.advantage-card {
    background: var(--color-white);
    padding: 35px 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

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

.advantage-icon {
    width: 70px;
    height: 70px;
    background: rgba(227, 30, 36, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--color-red);
}

.advantage-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.advantage-card p {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Model Section */
.model-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.model-content h2 {
    font-size: 2rem;
    margin-bottom: 25px;
}

.model-benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.model-benefit {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
}

.model-benefit i {
    color: var(--color-red);
    font-size: 1.3rem;
}

.model-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
}

/* Buyer Fit */
.buyer-fit-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.buyer-fit-card {
    background: var(--color-white);
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-soft);
}

.buyer-fit-card i {
    font-size: 2rem;
    color: var(--color-red);
    margin-bottom: 15px;
}

.buyer-fit-card h4 {
    margin-bottom: 8px;
}

.buyer-fit-card p {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
}

/* ============================================================
   20. CONTACT PAGE STYLES
   ============================================================ */

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

.contact-form-wrapper {
    background: var(--color-white);
    padding: 25px 15px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.contact-form-wrapper h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.contact-form-wrapper>p {
    color: var(--color-text-secondary);
    margin-bottom: 30px;
}

.procurement-form,
.supplier-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group label {
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select,
.wpcf7-form-control:not(.wpcf7-submit) {
    padding: 14px 18px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition-fast);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus,
.wpcf7-form-control:not(.wpcf7-submit):focus {
    outline: none;
    border-color: var(--color-red);
    box-shadow: 0 0 0 3px rgba(227, 30, 36, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.form-divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
    margin: 10px 0;
}

.procurement-form h3,
.supplier-form h3 {
    font-size: 1.1rem;
    color: var(--color-red);
}

.btn-full {
    width: 100%;
}

/* RTL Form & CF7 Support */
.wpcf7 {
    direction: rtl;
}

.wpcf7-form-control-wrap {
    display: block;
    margin-bottom: 5px;
}

.wpcf7-not-valid-tip {
    color: var(--color-red);
    font-size: 0.85rem;
    text-align: right;
    margin-top: 5px;
    display: block;
}

.wpcf7-response-output {
    margin: 20px 0 0 !important;
    padding: 15px 20px !important;
    border-radius: 10px !important;
    border: 2px solid transparent !important;
    font-family: var(--font-body);
    font-size: 0.95rem;
    text-align: right !important;
    direction: rtl !important;
}

.wpcf7-mail-sent-ok {
    border-color: #46b450 !important;
    background-color: rgba(70, 180, 80, 0.05);
}

.wpcf7-validation-errors,
.wpcf7-acceptance-missing {
    border-color: #ffb900 !important;
    background-color: rgba(255, 185, 0, 0.05);
}

.wpcf7-mail-sent-ng,
.wpcf7-aborted,
.wpcf7-spam-blocked {
    border-color: var(--color-red) !important;
    background-color: rgba(227, 30, 36, 0.05);
}

.wpcf7-spinner {
    margin: 0 10px !important;
}

/* Contact Info */
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.contact-info-card {
    background: var(--color-off-white);
    padding: 20px 15px;
    border-radius: 20px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.contact-info-card h3 {
    margin-bottom: 25px;
    font-size: 1.3rem;
}

.contact-method {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.contact-method:last-child {
    margin-bottom: 0;
}

.contact-method-icon {
    width: 50px;
    height: 50px;
    background: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--color-red);
    flex-shrink: 0;
}

.contact-method-content h4 {
    margin-bottom: 5px;
}

.contact-method-content p {
    color: var(--color-text-secondary);
    margin-bottom: 10px;
}

.btn-small {
    padding: 8px 20px;
    font-size: 0.85rem;
}

.contact-cta-card {
    background: linear-gradient(135deg, var(--color-black) 0%, #1a1a2e 100%);
    color: var(--color-white);
    padding: 25px 15px;
    border-radius: 20px;
    text-align: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.contact-cta-card i {
    font-size: 2rem;
    color: var(--color-red);
    margin-bottom: 15px;
}

.contact-cta-card h4 {
    margin-bottom: 10px;
}

.contact-cta-card p {
    opacity: 0.8;
    margin-bottom: 20px;
}

/* ============================================================
   21. SUPPLIERS PAGE STYLES
   ============================================================ */

.supplier-hero {
    background: linear-gradient(135deg, #0d1b2a 0%, #1b263b 100%);
}

.supplier-benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.supplier-benefit-card {
    background: var(--color-white);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.supplier-benefit-card:hover {
    transform: translateY(-8px);
}

.supplier-benefit-icon {
    width: 80px;
    height: 80px;
    background: rgba(227, 30, 36, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--color-red);
}

.supplier-benefit-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.supplier-benefit-card p {
    color: var(--color-text-secondary);
    line-height: 1.7;
}

.supplier-form-wrapper {
    background: var(--color-white);
    padding: 50px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    max-width: 800px;
    margin: 0 auto;
}

.supplier-form-header {
    text-align: center;
    margin-bottom: 40px;
}

.supplier-form-header h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.supplier-form-header p {
    color: var(--color-text-secondary);
}

.form-section {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 20px;
}

.form-section h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    color: var(--color-black);
    margin-bottom: 25px;
}

.form-section h3 i {
    color: var(--color-red);
}

/* ============================================================
   22. RESPONSIVE OVERRIDES
   ============================================================ */

/* -------------------------
   Small Tablets (576px+)
   ------------------------- */
@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }

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

    .footer-grid>div:first-child {
        grid-column: span 1;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }

    /* Grid adjustments */
    .grid-2,
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

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

    /* Page Hero */
    .page-hero h1 {
        font-size: 3rem;
    }

    /* About */
    .about-story {
        grid-template-columns: 1fr 1fr;
    }

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

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

    .cta-buttons {
        flex-direction: row;
    }

    /* Categories */
    .category-body {
        grid-template-columns: 1fr 1fr;
    }

    /* Services */
    .services-detailed-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .services-grid-second {
        grid-template-columns: repeat(3, 1fr);
    }

    .services-showcase-content {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }

    .services-showcase-text {
        text-align: right;
    }

    .value-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    /* How It Works */
    .responsibility-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Why Us */
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .model-section {
        grid-template-columns: 1fr 1fr;
    }

    .buyer-fit-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1.5fr 1fr;
    }

    .form-row {
        grid-template-columns: 1fr 1fr;
    }

    /* Suppliers */
    .supplier-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* -------------------------
   Desktop (992px+)
   ------------------------- */
@media (min-width: 992px) {

    /* Container */
    .container {
        max-width: 1100px; /* Increased from 960px for better spacing */
    }

    /* Utilities */
    .section-padding {
        padding: 100px 0;
    }

    .section-title h2 {
        font-size: 2.5rem;
    }

    /* Grid */
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Header */
    header,
    #header {
        background: var(--color-white);
        box-shadow: var(--shadow-soft);
        padding: 10px 0px 5px 0px;
    }

    /* Nav container layout for desktop */
    .nav-container {
        padding: 0 40px;
        max-width: 1300px !important; /* Allow header to be wider than default container */
        justify-content: space-between;
    }

    header nav {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 50px; /* Increased gap between menu and CTA button */
    }

    .logo img {
        height: 50px;
    }

    .menu-toggle {
        display: none;
    }

    /* Navigation - Desktop */
    .nav-links {
        position: static;
        width: auto;
        height: auto;
        background: transparent;
        display: flex;
        flex-direction: row;
        padding: 0;
        box-shadow: none;
        transform: none;
        opacity: 1;
        visibility: visible;
        border-top: none;
        gap: 3rem; /* Increased gap between menu items from 2.5rem to 3rem */
        z-index: auto;
    }

    .nav-links li {
        opacity: 1;
        transform: none;
        margin-bottom: 0;
    }

    .nav-links a {
        color: var(--color-black);
        font-size: 1rem;
        text-transform: none;
        font-weight: 500;
    }

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

    /* Red Nav Button Styles for Desktop */
    .nav-links li .btn-nav-red,
    .nav-cta-btn {
        color: var(--color-white) !important;
        background-color: var(--color-red) !important;
        padding: 10px 25px;
        border-radius: 50px;
        transition: var(--transition-smooth);
        box-shadow: var(--shadow-red);
        font-weight: 600;
        font-size: 0.95rem;
    }

    .nav-cta-btn {
        display: inline-block;
        /* Show on desktop */
    }

    .menu-cta-item {
        display: none !important;
        /* Hide the mobile menu item on desktop */
    }

    .nav-links li .btn-nav-red:hover,
    .nav-cta-btn:hover {
        background-color: var(--color-red-dark) !important;
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(227, 30, 36, 0.4);
    }

    /* Hero Buttons - Desktop Style */
    .hero-actions {
        flex-direction: row;
        width: auto;
    }

    /* CTA Buttons - Desktop Style */
    .cta-buttons {
        flex-direction: row;
        gap: 20px;
    }

    .hero-mobile-btn-solid {
        background-color: var(--color-red);
        color: var(--color-white);
        box-shadow: var(--shadow-red);
        text-transform: none;
        letter-spacing: normal;
    }

    .hero-mobile-btn-solid:hover {
        background-color: var(--color-red-dark);
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(227, 30, 36, 0.4);
    }

    .hero-mobile-btn-outline {
        border: 2px solid var(--color-black);
        color: var(--color-black);
        background-color: transparent;
        text-transform: none;
        letter-spacing: normal;
    }

    .hero-mobile-btn-outline:hover {
        background-color: var(--color-black);
        color: var(--color-white);
        border-color: var(--color-black);
    }

    /* Hero Section - Desktop Split Layout */
    .hero {
        background-color: var(--color-white);
    }

    .hero-container {
        display: grid;
        grid-template-columns: 1fr 1.2fr;
        gap: 4rem;
        align-items: center;
        text-align: right;
    }

    .hero-visual {
        position: relative;
        inset: auto;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1;
        margin-top: 50px;
    }

    .hero-visual img {
        height: 80vh;
        border-radius: 40px 0 0 40px;
        box-shadow: -20px 20px 60px rgba(0, 0, 0, 0.1);
    }

    .hero-visual::after {
        display: none;
    }

    .hero-content {
        color: var(--color-black);
        padding-right: 2rem;
        text-align: right;
        margin-top: 0;
        padding-top: 160px;
        position: relative;
    }

    .hero-content h1 {
        font-size: 2.6rem;
        line-height: 1.2;
        color: var(--color-black);
        text-shadow: none;
    }

    .hero-content p {
        font-size: 1.4rem;
        color: var(--color-text-secondary);
    }

    .hero-content .btn {
        display: inline-block;
        width: auto;
    }

    /* Decorative lines */
    .hero-content::before {
        content: '';
        position: absolute;
        top: 105px;
        right: -20px;
        width: 100px;
        height: 100px;
        border-top: 3px solid var(--color-red);
        border-right: 3px solid var(--color-red);
        border-radius: 20px 0 0 0;
        opacity: 0.3;
        z-index: -1;
    }

    .hero-content::after {
        content: '';
        position: absolute;
        bottom: -20px;
        left: 0px;
        width: 60px;
        height: 60px;
        border-bottom: 2px solid var(--color-red);
        border-left: 2px solid var(--color-red);
        border-radius: 0 0 0 15px;
        opacity: 0.2;
        z-index: -1;
    }

    .hero-badge {
        display: block;
        position: absolute;
        bottom: 15%;
        right: -20px;
        background: var(--color-red);
        color: white;
        padding: 20px 40px;
        border-radius: 8px;
        font-weight: 700;
        font-size: 1.2rem;
        transform: rotate(-3deg);
        box-shadow: 0 10px 30px rgba(227, 30, 36, 0.3);
    }

    /* Sectors */
    .sectors-grid-modern {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
        margin-top: 40px;
    }

    .sector-item-modern {
        padding: 50px 40px;
        border-radius: 24px;
        box-shadow: 0 15px 45px rgba(0, 0, 0, 0.04);
    }

    .sector-item-modern:hover {
        transform: translateY(-15px);
        box-shadow: 0 30px 60px rgba(227, 30, 36, 0.08);
    }

    .sector-icon-modern {
        width: 80px;
        height: 80px;
        border-radius: 20px;
        margin-bottom: 25px;
        font-size: 2.2rem;
    }

    .sector-title-modern {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .sector-desc-modern {
        font-size: 0.95rem;
    }

    /* Benefits */
    .benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1.2fr;
    }

    .footer-grid>div:first-child {
        grid-column: span 1;
    }

    /* WhatsApp Float */
    .whatsapp-float {
        width: 60px;
        height: 60px;
        bottom: 30px;
        left: 30px;
        font-size: 30px;
    }

    /* ===== NEW PAGE COMPONENTS - DESKTOP ===== */

    /* Page Hero */
    .page-hero {
        padding: 160px 0 100px;
    }

    .page-hero h1 {
        font-size: 3.5rem;
    }

    /* Services */
    .services-detailed-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .services-grid-second {
        grid-template-columns: repeat(3, 1fr);
    }

    .service-detailed-card {
        padding: 45px 35px;
    }

    /* Advantages */
    .advantages-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Supplier Benefits */
    .supplier-benefits-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .supplier-form-wrapper {
        padding: 60px 50px;
    }
}

/* -------------------------
   Large Desktop (1200px+)
   ------------------------- */
@media (min-width: 1200px) {
    .container {
        max-width: 1250px; /* Increased from 1140px */
    }
}

/* -------------------------
   Mobile Header - Solid White
   ------------------------- */
@media (max-width: 991px) {

    header,
    #header {
        background: var(--color-white) !important;
        box-shadow: var(--shadow-soft) !important;
        padding: 5px 0 !important;
    }

    .nav-container {
        flex-direction: row;
        justify-content: flex-start;
    }

    .menu-toggle {
        margin-right: auto;
    }

    .nav-links a::after {
        right: 50%;
        transform: translateX(50%);
    }

    /* Hide CTA button on mobile - it will be in the mobile menu */
    .nav-cta-btn {
        display: none;
    }
}