  /*
   PGPL Group - Printing & Packaging Website
   Main Stylesheet
   Color Theme: Red with complementary colors
*/

/* ===== Base Styles ===== */
:root {
    /* Color Variables - Light Theme with English Colors */
    --color-primary: #e41e26; /* Main Red - Logo Color */
    --color-primary-light: #f04c53;
    --color-primary-dark: #b01218;
    --color-secondary: #1e3a8a; /* English Blue */
    --color-accent: #f8fafc; /* Light Gray Background */
    --color-white: #ffffff;
    --color-black: #1e293b; /* Dark Blue for Text */
    --color-gray: #64748b; /* Medium Gray for Secondary Text */
    --color-light-gray: #e2e8f0; /* Light Gray for Borders */
    --color-blue-light: #dbeafe; /* Light Blue for Accents */
    --color-blue-medium: #3b82f6; /* Medium Blue */
    --color-blue-dark: #1e40af; /* Dark Blue */
    
    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Transition */
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;

    /* Cyber Steel Palette Tokens */
    --luxe-primary: #0B0F14; /* Primary background */
    --luxe-gradient-1: #0B0F14;
    --luxe-gradient-2: #111827;
    --luxe-gradient-3: #1F2937;
    --luxe-accent: #19D3DA; /* Accent */
    --luxe-neon: #7C3AED; /* Neon edge */
    --luxe-text: #F3F4F6; /* Text on dark */
    --luxe-metal: #9CA3AF; /* Subtle metallic */
    --luxe-glass-bg: rgba(255,255,255,0.08);
    --luxe-glass-bg-strong: rgba(255,255,255,0.12);
    --luxe-blur: 14px;
    --luxe-maxw: 1280px;
    --luxe-pad-x: 2.4rem;
    --luxe-pad-y: 6.4rem;

    /* Modern Product Showcase Variables */
    --showcase-bg: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    --showcase-card-bg: rgba(255, 255, 255, 0.95);
    --showcase-card-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    --showcase-card-shadow-hover: 0 30px 60px rgba(0, 0, 0, 0.15);
    --showcase-gradient-overlay: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    --showcase-brand-red: #E30613;
    --showcase-brand-blue: #003366;
    --showcase-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);

}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%; /* 10px */
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--color-black);
    background-color: var(--color-white);
    overflow-x: hidden;
    opacity: 1; /* Changed from 0 to 1 to ensure page is visible by default */
    transition: opacity 0.5s ease;
}

/* Hide body initially if JavaScript is available */
body.js-loading {
    opacity: 0;
}

body.loaded {
    opacity: 1;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

strong {
    font-weight: 700;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    position: relative;
}

.section-wrapper {
    padding: 8rem 0;
    position: relative;
    width: 100%;
    background-color: var(--color-white);
}

.section-wrapper.alt-bg {
    background-color: var(--color-accent);
}

.section-container {
    width: 100%;
    max-width: var(--luxe-maxw);
    margin: 0 auto;
    padding: 0 var(--luxe-pad-x);
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header-wrapper {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title {
    font-size: 3.6rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--color-secondary);
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    text-align: center;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 6rem;
    height: 0.3rem;
    background-color: var(--color-primary);
    transition: var(--transition);
}

.section-subtitle {
    font-size: 1.8rem;
    color: var(--color-gray);
    max-width: 60rem;
    margin: 0 auto;
}

.btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    border-radius: 5px;
    font-size: 1.6rem;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    z-index: -1;
    transition: var(--transition);
    transform: skewX(-15deg);
}

.btn:hover::before {
    left: 100%;
}

.btn--primary {
    background-color: var(--color-primary);
    color: var(--color-white);
    border: 2px solid var(--color-primary);
}

.btn--primary:hover {
    background-color: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(228, 30, 38, 0.4);
}

.btn--secondary {
    background-color: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn--secondary:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(228, 30, 38, 0.4);
}

.btn--white {
    background-color: var(--color-white);
    color: var(--color-primary);
    border: 2px solid var(--color-white);
}

.btn--white:hover {
    background-color: transparent;
    color: var(--color-white);
}

.btn--block {
    display: block;
    width: 100%;
}

/* ===== Page Loader ===== */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-white);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    position: relative;
    width: 6rem;
    height: 6rem;
}

.loader-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-top-color: var(--color-primary);
    border-radius: 50%;
    animation: spin 1.5s linear infinite;
}

.loader-inner:before, .loader-inner:after {
    content: "";
    position: absolute;
    border: 3px solid transparent;
    border-radius: 50%;
}

.loader-inner:before {
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-top-color: var(--color-primary-light);
    animation: spin 2s linear infinite;
}

.loader-inner:after {
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-top-color: var(--color-primary-dark);
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10030; /* Keep below mobile nav/lightboxes */
    padding: 1.5rem 0;
    transition: var(--transition);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* ===== Hero Banner Section ===== */
.hero-banner {
    position: relative;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #cbd5e1 100%);
}

/* Clean Background with Subtle Pattern */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-image: url('assets/images/hero/hero-bg.JPG');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.luxe-hero {
    position: relative;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    color: var(--luxe-text);
    background-image: url('assets/images/hero/hero-bg.JPG');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.luxe-hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.luxe-hero__media {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    transform: translateZ(0) scale(1.05);
    will-change: transform;
    animation: heroMachineFloat 20s ease-in-out infinite;
    filter: brightness(0.85) contrast(1.1);
    width: 100vw;
    height: 100vh;
    min-width: 100vw;
    min-height: 100vh;
}

.luxe-hero__overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11,15,20,0.85) 0%, rgba(17,24,39,0.75) 30%, rgba(31,41,55,0.3) 70%, rgba(11,15,20,0.7) 100%);
    animation: overlayPulse 15s ease-in-out infinite;
}

@keyframes overlayPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.9; }
}

.luxe-hero__overlay-noise {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/images/ui-elements/pattern-background.png');
    background-size: 180px auto;
    opacity: 0.08;
    mix-blend-mode: soft-light;
}

.luxe-hero__content-wrap { 
    position: relative; 
    z-index: 2; 
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.luxe-hero__grid {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.luxe-hero__content .eyebrow {
    text-transform: uppercase;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    color: var(--luxe-metal);
    margin-bottom: 1.6rem;
    display: inline-block;
    transition: letter-spacing 180ms ease;
    animation: heroContentFloat 8s ease-in-out infinite;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.luxe-hero__content .eyebrow:hover { letter-spacing: 0.22em; }

.luxe-hero__title {
    font-family: 'Poppins', sans-serif; /* fallback; using existing preloaded font */
    font-weight: 800;
    letter-spacing: -0.02em;
    font-size: clamp(3.2rem, 5vw, 6.4rem);
    line-height: 1.05;
    margin: 0 0 1.2rem 0;
    animation: heroContentFloat 10s ease-in-out infinite;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4), 0 2px 4px rgba(227, 30, 38, 0.3);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.luxe-hero__accent {
    display: block;
    height: 2px;
    width: 220px;
    margin-top: 1.2rem;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--luxe-accent), var(--luxe-neon), var(--luxe-accent));
    filter: drop-shadow(0 0 8px rgba(124,58,237,0.55));
    animation: accent-sweep 8s linear infinite;
}

@keyframes accent-sweep {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

@keyframes heroMachineFloat {
    0%, 100% { 
        transform: translateZ(0) scale(1.1) translateY(0px);
        filter: brightness(0.85) contrast(1.1);
    }
    25% { 
        transform: translateZ(0) scale(1.12) translateY(-10px);
        filter: brightness(0.9) contrast(1.15);
    }
    50% { 
        transform: translateZ(0) scale(1.08) translateY(-5px);
        filter: brightness(0.88) contrast(1.2);
    }
    75% { 
        transform: translateZ(0) scale(1.14) translateY(-8px);
        filter: brightness(0.92) contrast(1.1);
    }
}

@keyframes heroContentFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

@keyframes heroGlow {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(227, 30, 38, 0.3);
    }
    50% { 
        box-shadow: 0 0 40px rgba(227, 30, 38, 0.6);
    }
}

@keyframes galleryCardFloat {
    0%, 100% { 
        transform: translateY(0px) rotateX(0deg) rotateY(0deg);
    }
    25% { 
        transform: translateY(-8px) rotateX(2deg) rotateY(-2deg);
    }
    50% { 
        transform: translateY(-5px) rotateX(-1deg) rotateY(1deg);
    }
    75% { 
        transform: translateY(-10px) rotateX(1deg) rotateY(-1deg);
    }
}

@keyframes galleryIconPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(228, 30, 38, 0.2);
    }
    50% { 
        transform: scale(1.1);
        box-shadow: 0 8px 25px rgba(228, 30, 38, 0.4);
    }
}

@keyframes galleryCardEntrance {
    0% { 
        opacity: 0;
        transform: translateY(50px) rotateX(20deg) scale(0.8);
    }
    100% { 
        opacity: 1;
        transform: translateY(0) rotateX(0deg) scale(1);
    }
}

@keyframes iconEntrance {
    0% { 
        opacity: 0;
        transform: scale(0) rotate(180deg);
    }
    100% { 
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

.luxe-hero__subtext {
    max-width: 60ch;
    color: var(--luxe-text);
    opacity: 0.9;
    font-weight: 500;
    margin: 1.2rem 0 2.4rem 0;
}

.luxe-hero__ctas { display: flex; gap: 1.2rem; flex-wrap: wrap; }

.btn--elevate { 
    transition: transform 180ms ease, box-shadow 180ms ease;
    animation: heroGlow 6s ease-in-out infinite;
    transform-style: preserve-3d;
}
.btn--elevate:hover { 
    transform: scale(1.02) translateZ(10px); 
    box-shadow: 0 15px 40px rgba(227, 30, 38, 0.4);
}

.btn.btn--ghost {
    background: transparent;
    color: var(--luxe-accent);
    border: 1px solid var(--luxe-accent);
}
.btn.btn--ghost:hover { box-shadow: 0 10px 30px rgba(25,211,218,0.2); transform: scale(1.02); }

.luxe-hero__trust {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.glass-pill {
    backdrop-filter: blur(var(--luxe-blur));
    -webkit-backdrop-filter: blur(var(--luxe-blur));
    background: var(--luxe-glass-bg);
    border: 1px solid rgba(255,255,255,0.14);
    color: var(--luxe-text);
    padding: 0.7rem 1.1rem;
    border-radius: 999px;
    font-size: 1.3rem;
    animation: heroContentFloat 12s ease-in-out infinite;
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
}

.glass-pill:nth-child(1) { animation-delay: 0s; }
.glass-pill:nth-child(2) { animation-delay: 2s; }
.glass-pill:nth-child(3) { animation-delay: 4s; }

.glass-pill:hover {
    transform: translateZ(5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.1);
}

.luxe-hero__visual {
    height: 56vh;
}

/* Responsive Design */
@media screen and (max-width: 1200px) {
    .hero-layout {
        gap: 4rem;
    }
    
    .hero-title-modern {
        font-size: clamp(3rem, 5vw, 5rem);
    }
    
    .hero-stats-modern {
        gap: 2rem;
    }
}

@media screen and (max-width: 1024px) {
    .hero-layout {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 4rem;
    }
    
    .hero-visual-modern {
        order: -1;
    }
    
    .hero-image-stack {
        height: 400px;
    }
    
    .image-card {
        width: 240px;
        height: 150px;
        padding: 1.5rem;
    }
    
    .hero-stats-modern {
        justify-content: center;
    }
    
    .luxe-hero {
        min-height: 100vh;
        width: 100%;
        background-attachment: scroll;
    }
}

.header.scrolled {
    background-color: var(--color-white);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo {
    display: block;
    width: 150px;
    flex-shrink: 0;
    transition: var(--transition);
}

.logo img {
    width: 100%;
    transition: var(--transition);
}
.logo:hover {
    transform: scale(1.05);
}

.nav {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
    margin: 0 2rem;
}

.nav__list {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.nav__item {
    position: relative;
}

.nav__link {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--color-secondary);
    position: relative;
    padding: 0.5rem 0.5rem;
    text-transform: uppercase;
    white-space: nowrap;
}

.header.scrolled .nav__link {
    color: var(--color-secondary);
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -0.2rem;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: var(--transition);
}

.nav__link:hover::after,
.nav__link.active::after {
    width: 100%;
}

.nav__link:hover,
.nav__link.active {
    color: var(--color-primary);
}
.dropdown-toggle::before {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-left: 5px;
    transition: var(--transition);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--color-white);
    min-width: 20rem;
    padding: 1.5rem 0;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--color-light-gray);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 1000;
}

.nav__item:nth-last-child(-n+3) .dropdown-menu {
    left: auto;
    right: 0;
}

.nav__item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0.5rem 2rem;
}

.dropdown-menu a {
    color: var(--color-secondary);
    font-size: 1.4rem;
    display: block;
    padding: 0.5rem 0;
    transition: var(--transition);
}

.dropdown-menu a:hover {
    color: var(--color-primary);
    padding-left: 5px;
}

.header__social {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.header__social .social-icon {
    width: 3.5rem;
    height: 3.5rem;
    background-color: rgba(30, 58, 138, 0.1);
    color: var(--color-secondary);
}

.header.scrolled .header__social .social-icon {
    background-color: rgba(30, 58, 138, 0.1);
    color: var(--color-secondary);
}

.hamburger {
    display: none;
    cursor: pointer;
    border: none;
    background-color: transparent;
    z-index: 101;
    padding: 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.hamburger:hover {
    background-color: rgba(228, 30, 38, 0.1);
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0;
    background-color: var(--color-secondary);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 2px;
}

.header.scrolled .hamburger span {
    background-color: var(--color-secondary);
}

/* Hamburger animation for active state */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ===== Modern Hero Banner Section ===== */
.hero-modern {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #60a5fa 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Dynamic Background */
.hero-background-modern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-image: url('../assets/images/home-page/hero-banner/hero-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(15, 23, 42, 0.4) 0%, 
        rgba(220, 38, 38, 0.5) 50%, 
        rgba(0, 0, 0, 0.3) 100%);
    z-index: 2;
}

.hero-pattern-modern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(228, 30, 38, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(168, 85, 247, 0.05) 0%, transparent 50%);
    z-index: 2;
}

/* Animated Particles */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--color-primary), var(--color-primary-light));
    opacity: 0.6;
    animation: particleFloat 20s ease-in-out infinite;
}

.particle-1 {
    width: 8px;
    height: 8px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.particle-2 {
    width: 12px;
    height: 12px;
    top: 60%;
    right: 15%;
    animation-delay: 4s;
}

.particle-3 {
    width: 6px;
    height: 6px;
    top: 40%;
    left: 80%;
    animation-delay: 8s;
}

.particle-4 {
    width: 10px;
    height: 10px;
    top: 80%;
    left: 20%;
    animation-delay: 12s;
}

.particle-5 {
    width: 8px;
    height: 8px;
    top: 30%;
    right: 30%;
    animation-delay: 16s;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0px) translateX(0px) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-20px) translateX(10px) scale(1.1);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-10px) translateX(-15px) scale(0.9);
        opacity: 0.7;
    }
    75% {
        transform: translateY(-30px) translateX(5px) scale(1.2);
        opacity: 0.9;
    }
}

/* Main Content */
.hero-content-modern {
    position: relative;
    z-index: 4;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 8rem 0 6rem;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Text Section */
.hero-text-modern {
    color: var(--color-white);
}

.hero-badge-modern {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 3rem;
    animation: slideInUp 1s ease-out;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(228, 30, 38, 0.4);
}

.hero-badge-modern:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(228, 30, 38, 0.5);
}

.badge-icon {
    width: 2rem;
    height: 2rem;
    background: linear-gradient(45deg, var(--color-primary), var(--color-primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-icon i {
    font-size: 1rem;
    color: var(--color-white);
}

.hero-title-modern {
    font-size: clamp(3.5rem, 6vw, 6rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--color-white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9), 
                 4px 4px 8px rgba(0, 0, 0, 0.6),
                 1px 1px 0px rgba(0, 0, 0, 1);
}

.title-line-1 {
    display: block;
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.title-line-2 {
    display: block;
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.title-line-3 {
    display: block;
    margin-bottom: 0.5rem;
}

.text-gradient {
    background: linear-gradient(45deg, #ffffff, #f0f8ff, #e6f3ff, #d4edda);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #ffffff; /* Fallback for unsupported browsers */
    animation: gradientShift 3s ease-in-out infinite;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9), 0 0 25px rgba(255, 255, 255, 1);
    font-weight: 700;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.hero-subtitle-modern {
    font-size: 1.8rem;
    line-height: 1.6;
    margin-bottom: 4rem;
    color: rgba(255, 255, 255, 1);
    max-width: 600px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.9), 
                 2px 2px 4px rgba(0, 0, 0, 0.7),
                 0px 0px 1px rgba(0, 0, 0, 1);
    font-weight: 500;
}

/* Stats Section */
.hero-stats-modern {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
}

.stat-item-modern {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.stat-item-modern:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.4);
    border-color: rgba(255, 107, 53, 0.8);
}

.stat-number-modern {
    font-size: 3rem;
    font-weight: 800;
    color: #ff6b35;
    margin-bottom: 0.5rem;
    display: block;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.stat-label-modern {
    font-size: 1.2rem;
    color: rgba(30, 58, 138, 0.9);
    font-weight: 600;
    text-shadow: none;
}

/* CTA Buttons */
.hero-cta-modern {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: flex-start;
}

.btn-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2.4rem;
    border-radius: 50px;
    font-size: 1.4rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.btn-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-modern:hover::before {
    left: 100%;
}

.btn-primary-modern {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--color-white);
    border: 2px solid #25D366;
}

.btn-primary-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    background: linear-gradient(135deg, #1EBE5D 0%, #128C7E 100%);
}

/* WhatsApp Button Styles */
.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
    border: 2px solid #25D366 !important;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3) !important;
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #1EBE5D 0%, #128C7E 100%) !important;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4) !important;
    transform: translateY(-2px);
}

/* CTA Buttons Row Layout */
.cta-buttons-row {
    display: flex;
    gap: 1.2rem;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
}

/* Callback Button Styles */
.btn-callback {
    background: rgba(255, 255, 255, 0.95) !important;
    color: #333 !important;
    border: 2px solid rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
}

.btn-callback:hover {
    background: rgba(255, 255, 255, 1) !important;
    color: var(--color-primary) !important;
    border-color: var(--color-primary) !important;
    box-shadow: 0 8px 25px rgba(228, 30, 38, 0.2) !important;
    transform: translateY(-2px);
}

.btn-secondary-modern {
    background: rgba(255, 255, 255, 0.15);
    color: var(--color-white);
    border: 2px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.btn-secondary-modern:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--color-secondary);
    border-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
    text-shadow: none;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.btn-icon {
    transition: transform 0.3s ease;
}

.btn-modern:hover .btn-icon {
    transform: translateX(5px);
}

/* Visual Section */
.hero-visual-modern {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.hero-image-stack {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 600px;
}
.image-card {
    position: absolute;
    width: 280px;
    height: 180px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    animation: cardFloat 6s ease-in-out infinite;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
.image-card:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.3);
    border-color: rgba(255, 107, 53, 0.8);
}

.image-card-1 {
    top: 0;
    left: 0;
    animation-delay: 0s;
}

.image-card-2 {
    top: 200px;
    right: 0;
    animation-delay: 2s;
}

.image-card-3 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 4s;
}

@keyframes cardFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.card-content {
    text-align: center;
    color: var(--color-secondary);
}

.card-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(45deg, var(--color-primary), var(--color-primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 15px rgba(228, 30, 38, 0.4);
}

.card-icon i {
    font-size: 1.8rem;
    color: var(--color-white);
}

.card-content h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--color-secondary);
    text-shadow: none;
}

.card-content p {
    font-size: 1.2rem;
    color: var(--color-gray);
    text-shadow: none;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    padding: 1rem 1.5rem;
    animation: floatingCard 8s ease-in-out infinite;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.floating-card-1 {
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.floating-card-2 {
    bottom: 20%;
    left: 5%;
    animation-delay: 4s;
}

@keyframes floatingCard {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(2deg);
    }
}

.card-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-secondary);
    font-size: 1.2rem;
    font-weight: 500;
}

.card-header i {
    color: #ff6b35;
}

/* Scroll Indicator */
.scroll-indicator-modern {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    text-align: center;
    color: var(--color-white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.scroll-indicator-modern:hover {
    transform: translateX(-50%) translateY(-5px);
}

.scroll-text {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.scroll-arrow-modern {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.arrow-line {
    width: 2px;
    height: 30px;
    background: linear-gradient(to bottom, #ff6b35, transparent);
    animation: arrowPulse 2s ease-in-out infinite;
}

.arrow-head {
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid #ff6b35;
    animation: arrowPulse 2s ease-in-out infinite;
}

@keyframes arrowPulse {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}
/* Responsive Design */
@media screen and (max-width: 1200px) {
    .hero-layout {
        gap: 4rem;
    }
    
    .hero-title-modern {
        font-size: clamp(3rem, 5vw, 5rem);
    }
    
    .hero-stats-modern {
        gap: 2rem;
    }
}

@media screen and (max-width: 480px) {
    .hero-title-modern {
        font-size: 2.5rem;
    }
    
    .hero-subtitle-modern {
        font-size: 1.4rem;
    }
    
    .hero-badge-modern {
        font-size: 1.2rem;
        padding: 0.8rem 1.5rem;
    }
    
    .btn-modern {
        padding: 1rem 1.8rem;
        font-size: 1.3rem;
        max-width: 280px;
    }
    
    .cta-buttons-row {
        gap: 0.8rem;
    }
    
    .hero-image-stack {
        height: 300px;
    }
    
    .image-card {
        width: 180px;
        height: 100px;
        padding: 0.8rem;
    }
    
    .card-icon {
        width: 3rem;
        height: 3rem;
    }
    
    .card-icon i {
        font-size: 1.4rem;
    }
}
/* Recent Work Swiper Carousel Styles - Fixed Layout */

.recent-work-swiper {
    position: relative;
    width: 100%;
    padding: 20px 0;
    height: auto;
}

.recent-work-swiper .swiper {
    width: 100%;
    height: auto;
    padding-bottom: 50px; /* Space for pagination */
}

.recent-work-slide {
    height: auto;
    min-height: 320px; /* Ensure consistent height */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.recent-work-card {
    width: 100%;
    max-width: 350px;
    height: 300px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.recent-work-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.recent-work-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    text-decoration: none;
    flex: 1;
}

.recent-work-image {
    width: 100%;
    height: 70%; /* Image takes most of the card height */
    object-fit: cover;
    transition: transform 0.5s ease;
    flex-shrink: 0;
}

.recent-work-card:hover .recent-work-image {
    transform: scale(1.1);
}

.recent-work-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent 70%);
    color: white;
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    height: 30%; /* Overlay takes bottom 30% */
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.recent-work-card:hover .recent-work-overlay {
    transform: translateY(0);
}

.recent-work-overlay h4 {
    margin: 0 0 10px 0;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--gold, #C9A74F);
}

.recent-work-overlay p {
    margin: 0;
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.4;
}

/* Swiper Navigation */
.recent-work-next,
.recent-work-prev {
    color: var(--gold, #C9A74F) !important;
    background: rgba(201, 167, 79, 0.1) !important;
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    margin-top: -25px !important;
}

.recent-work-next::after,
.recent-work-prev::after {
    font-size: 18px !important;
    font-weight: 600 !important;
}

.recent-work-next:hover,
.recent-work-prev:hover {
    background: var(--gold, #C9A74F) !important;
    color: white !important;
}

/* Swiper Pagination */
.recent-work-pagination {
    bottom: -50px !important;
}

.recent-work-pagination-bullet {
    background: rgba(201, 167, 79, 0.5) !important;
    opacity: 0.6 !important;
}

.recent-work-pagination-bullet-active {
    background: var(--gold, #C9A74F) !important;
    opacity: 1 !important;
}

/* Lightbox Zoom Icon */
.recent-work-card::after {
    content: '\f00e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(201, 167, 79, 0.9);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
    z-index: 10;
    font-size: 16px;
    animation: pulseIcon 2s infinite;
}

.recent-work-card:hover::after {
    opacity: 1;
    transform: scale(1);
}

/* Pulse animation for zoom icon */
@keyframes pulseIcon {
    0% { box-shadow: 0 0 0 0 rgba(201, 167, 79, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(201, 167, 79, 0); }
    100% { box-shadow: 0 0 0 0 rgba(201, 167, 79, 0); }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .recent-work-swiper {
        padding: 15px 0;
    }
    
    .recent-work-card {
        max-width: 300px;
        height: 250px;
    }
}

@media (max-width: 768px) {
    .recent-work-card {
        max-width: 280px;
        height: 220px;
    }
    
    .recent-work-overlay {
        padding: 20px 15px 15px;
    }
    
    .recent-work-overlay h4 {
        font-size: 1.2rem;
    }
    
    .recent-work-next,
    .recent-work-prev {
        display: none !important; /* Hide arrows on mobile */
    }
    
    .recent-work-pagination {
        bottom: -40px !important;
    }
}

@media (max-width: 480px) {
    .recent-work-card {
        height: 200px;
    }
    
    .recent-work-overlay p {
        font-size: 0.9rem;
    }
}

/* Ensure Swiper slides fit properly */
.swiper-slide {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}
/* ===== Markets Section ===== */
.markets {
    background-color: var(--color-accent);
    border-top: 1px solid var(--color-light-gray);
    border-bottom: 1px solid var(--color-light-gray);
    padding: 8rem 0;
}

.markets__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(35rem, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.market-card {
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: var(--color-white);
    position: relative;
}

.market-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.market-card__image {
    position: relative;
    height: 35rem;
    overflow: hidden;
}

.market-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.market-card:hover .market-card__image img {
    transform: scale(1.1);
}

.market-card__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.3), transparent);
    color: var(--color-white);
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 0;
}

.market-card:hover .market-card__overlay {
    background: linear-gradient(to top, rgba(228, 30, 38, 0.95), rgba(228, 30, 38, 0.7), rgba(228, 30, 38, 0.3));
}

.market-card__content {
    padding: 3rem 2.5rem;
    width: 100%;
}

.market-card__overlay h3 {
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--color-white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.market-card__overlay ul {
    margin-bottom: 2.5rem;
    list-style: none;
}

.market-card__overlay ul li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.8rem;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.4;
    color: var(--color-white);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.market-card__overlay ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-primary-light);
    font-weight: 700;
    font-size: 1.4rem;
}

.market-card__overlay .btn--white {
    background: var(--color-white);
    color: var(--color-primary);
    border: 2px solid var(--color-white);
    font-weight: 600;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 1.4rem;
}

.market-card__overlay .btn--white:hover {
    background: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* ===== Stats Section ===== */
.stats {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 5rem 0;
}

.stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.stat-item__number {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
}

.stat-item__plus,
.stat-item__percent {
    font-size: 3rem;
    font-weight: 600;
    line-height: 1;
}

.stat-item__label {
    width: 100%;
    font-size: 1.6rem;
    font-weight: 500;
    margin-top: 1rem;
    letter-spacing: 0.2rem;
}

/* ===== About Section ===== */
.about {
    background-color: var(--color-accent);
    border-top: 1px solid var(--color-light-gray);
    border-bottom: 1px solid var(--color-light-gray);
}

.about__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about__image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    border: 1px solid var(--color-light-gray);
}

.about__image::before {
    content: '';
    position: absolute;
    top: 2rem;
    left: 2rem;
    width: 100%;
    height: 100%;
    border: 3px solid var(--color-primary);
    z-index: -1;
    transition: var(--transition);
}

.about__image:hover::before {
    top: 1rem;
    left: 1rem;
}

.about__image img {
    width: 100%;
    transition: var(--transition);
}

.about__image:hover img {
    transform: scale(1.05);
}

.about__content {
    text-align: left;
}

.about__content .section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.about__content .section-title {
    display: block;
    text-align: center;
    margin: 0 auto 1.5rem;
}

.about__content .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.about__content .section-subtitle {
    margin-bottom: 0;
    text-align: center;
}

.about__content p {
    margin-bottom: 2rem;
    font-size: 1.6rem;
    line-height: 1.8;
    color: var(--color-black);
}

/* ===== Portfolio Section ===== */
.portfolio {
    background-color: var(--color-white);
}

.portfolio-carousel {
    position: relative;
    padding: 2rem 0;
    overflow: hidden;
}

.portfolio-carousel .swiper-wrapper {
    align-items: center;
}

.portfolio-carousel .swiper-slide {
    height: auto;
    display: flex;
    justify-content: center;
}

.portfolio-carousel .portfolio-item {
    width: 100%;
    max-width: 35rem;
    margin: 0 auto;
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.portfolio-carousel .swiper-slide-active .portfolio-item {
    transform: scale(1);
}
.portfolio-carousel .swiper-slide-prev .portfolio-item,
.portfolio-carousel .swiper-slide-next .portfolio-item {
    transform: scale(0.9);
    opacity: 0.7;
}

.portfolio-item {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    height: 30rem;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.portfolio-item__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.5rem;
    opacity: 0;
    transition: var(--transition-slow);
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-item:hover .portfolio-item__overlay {
    opacity: 1;
}

.portfolio-item__title {
    color: var(--color-white);
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease 0.1s;
}

.portfolio-item:hover .portfolio-item__title {
    transform: translateY(0);
    opacity: 1;
}

.portfolio-item__category {
    color: var(--color-primary-light);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease 0.2s;
}

.portfolio-item:hover .portfolio-item__category {
    transform: translateY(0);
    opacity: 1;
}

.portfolio-item__link {
    color: var(--color-white);
    font-weight: 600;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    position: relative;
    padding-bottom: 0.5rem;
    width: fit-content;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease 0.3s;
}

.portfolio-item:hover .portfolio-item__link {
    transform: translateY(0);
    opacity: 1;
}

.portfolio-item__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: var(--transition);
}

.portfolio-item__link:hover::after {
    width: 100%;
}

.portfolio__cta {
    text-align: center;
    margin-top: 5rem;
}
/* Portfolio Carousel Navigation */
.portfolio-carousel .swiper-button-next,
.portfolio-carousel .swiper-button-prev {
    width: 5rem;
    height: 5rem;
    background-color: var(--color-primary);
    border-radius: 50%;
    color: var(--color-white);
    transition: var(--transition);
}

.portfolio-carousel .swiper-button-next:hover,
.portfolio-carousel .swiper-button-prev:hover {
    background-color: var(--color-secondary);
    transform: scale(1.1);
}

.portfolio-carousel .swiper-button-next::after,
.portfolio-carousel .swiper-button-prev::after {
    font-size: 1.8rem;
    font-weight: bold;
}

.portfolio-carousel .swiper-pagination {
    position: relative;
    margin-top: 3rem;
}

.portfolio-carousel .swiper-pagination-bullet {
    width: 1.2rem;
    height: 1.2rem;
    background-color: var(--color-light-gray);
    opacity: 0.6;
    transition: var(--transition);
}

.portfolio-carousel .swiper-pagination-bullet-active {
    background-color: var(--color-primary);
    opacity: 1;
    transform: scale(1.2);
}

/* Enhanced carousel animations */
.portfolio-carousel .swiper-slide {
    transition: all 0.3s ease;
}

.portfolio-carousel .swiper-slide-active {
    z-index: 2;
}

.portfolio-carousel .swiper-slide-prev,
.portfolio-carousel .swiper-slide-next {
    z-index: 1;
}
/* ===== Clients Section ===== */
.clients {
    padding: 8rem 0;
    background-color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.clients::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.8) 0%, rgba(226, 232, 240, 0.6) 100%);
    z-index: 1;
}

.clients .section-container {
    position: relative;
    z-index: 2;
}

.clients-showcase {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    margin-top: 5rem;
    padding: 2rem 0;
}

.client-logo-item {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    transition: all 0.3s ease;
}

.client-logo-wrapper {
    background: var(--color-white);
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(228, 30, 38, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    max-width: 200px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.client-logo-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(228, 30, 38, 0.1), transparent);
    transition: left 0.6s;
}

.client-logo-item:hover .client-logo-wrapper {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(228, 30, 38, 0.15);
    border-color: var(--color-primary);
}
.client-logo-item:hover .client-logo-wrapper::before {
    left: 100%;
}

.client-logo-wrapper img {
    max-width: 100%;
    max-height: 70px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: grayscale(100%) brightness(0.8);
}

.client-logo-item:hover .client-logo-wrapper img {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.05);
}

/* ===== Gallery Preview Section ===== */
.gallery-preview {
    background-color: var(--color-accent);
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.gallery-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(228, 30, 38, 0.02) 0%, rgba(255, 255, 255, 0.05) 100%);
    pointer-events: none;
}

.gallery-categories-preview {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-top: 5rem;
    position: relative;
    z-index: 2;
}

.category-preview-card {
    background: var(--color-white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(228, 30, 38, 0.08);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    transform-style: preserve-3d;
    perspective: 1000px;
    animation: galleryCardFloat 15s ease-in-out infinite;
}

.category-preview-card:nth-child(1) { animation-delay: 0s; }
.category-preview-card:nth-child(2) { animation-delay: 3s; }
.category-preview-card:nth-child(3) { animation-delay: 6s; }
.category-preview-card:nth-child(4) { animation-delay: 9s; }

.category-preview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(228, 30, 38, 0.02) 0%, rgba(255, 255, 255, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}
.category-preview-card:hover {
    transform: translateY(-15px) scale(1.05) rotateX(5deg) rotateY(5deg);
    box-shadow: 0 25px 80px rgba(228, 30, 38, 0.2);
    border-color: rgba(228, 30, 38, 0.3);
}

.category-preview-card:hover::before {
    opacity: 1;
}
.category-preview-icon {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-primary), #d4242a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    box-shadow: 0 4px 20px rgba(228, 30, 38, 0.3);
    transition: all 0.3s ease;
    animation: galleryIconPulse 8s ease-in-out infinite;
    transform-style: preserve-3d;
}

.category-preview-icon i {
    color: var(--color-white);
    font-size: 1.8rem;
    transition: transform 0.3s ease;
}

.category-preview-card:hover .category-preview-icon {
    transform: scale(1.2) rotate(10deg) translateZ(10px);
    box-shadow: 0 12px 40px rgba(228, 30, 38, 0.5);
}

.category-preview-card:hover .category-preview-icon i {
    transform: scale(1.1);
}

.category-preview-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.category-preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(228, 30, 38, 0.1) 0%, rgba(0, 0, 0, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-preview-card:hover .category-preview-image img {
    transform: scale(1.12) rotateZ(2deg);
    filter: brightness(1.1) contrast(1.1);
}

.category-preview-card:hover .image-overlay {
    opacity: 1;
}

.category-preview-content {
    padding: 2.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.category-preview-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 1.2rem;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.category-preview-card:hover .category-preview-content h3 {
    color: var(--color-primary);
}

.category-preview-content p {
    font-size: 1.4rem;
    color: var(--color-gray);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    flex: 1;
}

.category-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 1.4rem;
    text-decoration: none;
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
    width: fit-content;
}
.category-action-btn:hover {
    color: var(--color-secondary);
    border-bottom-color: var(--color-primary);
    transform: translateX(5px);
}

.category-action-btn i {
    transition: transform 0.3s ease;
}

.category-action-btn:hover i {
    transform: translateX(5px);
}

.gallery-preview-cta {
    text-align: center;
    margin-top: 6rem;
    position: relative;
    z-index: 2;
}

/* ===== CTA Section ===== */
.cta {
    background-color: var(--color-primary);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../assets/images/ui-elements/pattern-background.png');
    opacity: 0.1;
}

.cta__inner {
    text-align: center;
    max-width: 80rem;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta__title {
    font-size: 3.6rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

.cta .btn--primary {
    background-color: var(--color-white);
    color: var(--color-primary);
    border-color: var(--color-white);
}

.cta .btn--primary:hover {
    background-color: transparent;
    color: var(--color-white);
}

/* ===== Footer ===== */
.footer {
    background-color: var(--color-secondary);
    color: var(--color-white);
    padding: 6rem 0 2rem;
    position: relative;
    font-size: 1.5rem;
    border-top: 1px solid var(--color-light-gray);
}

.footer__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 5rem;
    padding-bottom: 5rem;
}
.footer__logo {
    width: 15rem;
    margin-bottom: 2rem;
}

.footer__column p {
    margin-bottom: 2rem;
    opacity: 0.8;
}

.footer__social {
    display: flex;
    gap: 1.5rem;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--color-white);
    transition: var(--transition);
}

.social-icon:hover {
    background-color: var(--color-primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(228, 30, 38, 0.3);
}

.footer__heading {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2.5rem;
    position: relative;
    padding-bottom: 1.5rem;
}

.footer__heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 5rem;
    height: 2px;
    background-color: var(--color-primary);
}

.footer__links li {
    margin-bottom: 1.5rem;
}

.footer__links a {
    opacity: 0.8;
    transition: var(--transition);
    display: inline-block;
}

.footer__links a:hover {
    opacity: 1;
    color: var(--color-primary);
    padding-left: 5px;
    transform: translateX(5px);
}

.footer__contact li {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.footer__contact i {
    color: var(--color-primary);
    margin-top: 0.5rem;
}

.footer__bottom {
    padding: 2.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    opacity: 0.7;
    font-size: 1.4rem;
}

/* ===== Popup Contact ===== */
.popup-contact {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.popup-contact.active {
    opacity: 1;
    visibility: visible;
}

.popup-contact__inner {
    background-color: var(--color-white);
    width: 90%;
    max-width: 50rem;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(-50px);
    transition: var(--transition);
}

.popup-contact.active .popup-contact__inner {
    transform: translateY(0);
}

.popup-contact__header {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.popup-contact__header h3 {
    font-size: 2rem;
    margin: 0;
}

.popup-contact__close {
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 2.4rem;
    cursor: pointer;
}

.popup-contact__form {
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1.4rem;
}

/* ===== Floating Contact Buttons ===== */
.floating-buttons {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 1000;
}

.floating-whatsapp-btn {
    width: 6rem;
    height: 6rem;
    background-color: #25d366;
    color: var(--color-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    transition: var(--transition);
    text-decoration: none;
    animation: pulse 2s infinite;
}

.floating-whatsapp-btn:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
    color: var(--color-white);
    animation: none;
}

/* Floating contact button removed - no longer needed */

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(228, 30, 38, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 25px rgba(228, 30, 38, 0.6);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(228, 30, 38, 0.4);
    }
}

/* ===== Media Queries ===== */
@media screen and (max-width: 1200px) {
    .container {
        max-width: 1000px;
    }
    .hero-main-title {
        font-size: 4rem;
    }
}

@media screen and (max-width: 1024px) {
    html {
        font-size: 56.25%;
    }
    section {
        padding: 6rem 0;
    }
    .hero-main-title {
        font-size: 3.2rem;
    }
}

@media screen and (max-width: 768px) {
    html {
        font-size: 50%;
    }
    section {
        padding: 4rem 0;
    }
    .hero-main-title {
        font-size: 2.4rem;
    }
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .floating-buttons {
        bottom: 1.5rem;
        right: 1.5rem;
        gap: 0.8rem;
    }
    
    .floating-whatsapp-btn {
        width: 5rem;
        height: 5rem;
        font-size: 2rem;
    }
}

@media screen and (max-width: 576px) {
    html {
        font-size: 45%;
    }
    .container {
        padding: 0 1rem;
    }
    .hero-main-title {
        font-size: 2rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
}

/* ===== Hero Banner Section ===== */
.hero-banner {
    position: relative;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #cbd5e1 100%);
}

/* Clean Background with Subtle Pattern */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-image: url('../assets/images/home-page/hero-banner/hero-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(228, 30, 38, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(168, 85, 247, 0.02) 0%, transparent 50%);
    z-index: 1;
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(228, 30, 38, 0.05), rgba(59, 130, 246, 0.05));
    animation: gentleFloat 12s ease-in-out infinite;
}

.shape-1 {
    width: 120px;
    height: 120px;
    top: 15%;
    left: 8%;
    animation-delay: 0s;
}

.shape-2 {
    width: 80px;
    height: 80px;
    top: 70%;
    right: 15%;
    animation-delay: 4s;
}

.shape-3 {
    width: 60px;
    height: 60px;
    top: 35%;
    right: 25%;
    animation-delay: 8s;
}

@keyframes gentleFloat {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.05;
    }
    50% {
        transform: translateY(-15px) scale(1.1);
        opacity: 0.08;
    }
}
/* Main Content */
.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 10rem 0 6rem;
}

.hero-content-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Text Section */
.hero-text-section {
    color: var(--color-secondary);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(45deg, rgba(228, 30, 38, 0.15), rgba(59, 130, 246, 0.15));
    color: var(--color-primary);
    padding: 1.2rem 2.4rem;
    border-radius: 50px;
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 3rem;
    border: 1px solid rgba(228, 30, 38, 0.3);
    backdrop-filter: blur(10px);
    animation: slideInLeft 1s ease-out;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(228, 30, 38, 0.1);
}

.hero-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(228, 30, 38, 0.15);
}

.hero-badge i {
    font-size: 1.8rem;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-main-title {
    font-size: 5.2rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 3rem;
    color: var(--color-secondary);
    max-width: 100%;
}

.title-primary {
    display: block;
    color: var(--color-secondary);
    margin-bottom: 0.5rem;
}

.title-accent {
    display: block;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.title-secondary {
    display: block;
    color: var(--color-gray);
    font-weight: 600;
    font-size: 4.2rem;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.hero-description {
    font-size: 1.9rem;
    line-height: 1.7;
    margin-bottom: 4rem;
    color: var(--color-gray);
    max-width: 100%;
}
.hero-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 4rem;
    max-width: 100%;
}
.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(228, 30, 38, 0.1);
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 1rem;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 5rem;
    height: 5rem;
    background: linear-gradient(45deg, var(--color-primary), var(--color-primary-light));
    border-radius: 12px;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 2.2rem;
    color: var(--color-white);
}

.feature-content h4 {
    color: var(--color-secondary);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: var(--color-gray);
    font-size: 1.4rem;
    margin: 0;
}

.hero-cta {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-top: 2rem;
}

.btn--large {
    padding: 1.6rem 3.5rem;
    font-size: 1.8rem;
    font-weight: 600;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
    text-transform: none;
}

.btn--large:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn--outline {
    background: transparent;
    color: var(--color-secondary);
    border: 2px solid var(--color-secondary);
}

.btn--outline:hover {
    background: var(--color-secondary);
    color: var(--color-white);
}

/* Visual Section */
.hero-visual-section {
    position: relative;
    animation: slideInRight 1s ease-out 0.5s both;
    display: flex;
    justify-content: center;
    align-items: center;
}
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
.hero-image-container {
    position: relative;
    height: 45rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.hero-image {
    position: relative;
    width: 100%;
    max-width: 40rem;
    height: 30rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.hero-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.hero-image:hover img {
    transform: scale(1.05);
}

.image-decoration {
    position: absolute;
    top: -2rem;
    right: -2rem;
    width: 8rem;
    height: 8rem;
    background: linear-gradient(45deg, var(--color-primary), var(--color-primary-light));
    border-radius: 50%;
    opacity: 0.9;
    z-index: -1;
}

.hero-stats-mini {
    position: absolute;
    bottom: 2rem;
    left: -3rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat-mini {
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    min-width: 8rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(228, 30, 38, 0.1);
    transition: var(--transition);
}

.stat-mini:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.stat-mini .stat-number {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.stat-mini .stat-label {
    font-size: 1.2rem;
    color: var(--color-gray);
    font-weight: 500;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
    color: var(--color-secondary);
}

.stat-number {
    font-size: 3.6rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}
.stat-label {
    font-size: 1.4rem;
    color: var(--color-gray);
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    font-weight: 600;
}

/* About Features */
.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 3rem 0;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: var(--color-white);
    border: 1px solid var(--color-light-gray);
    border-radius: 15px;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.highlight-item:hover {
    background: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(228, 30, 38, 0.2);
    border-color: var(--color-primary);
}

.highlight-icon {
    width: 5rem;
    height: 5rem;
    background: linear-gradient(45deg, var(--color-primary), var(--color-primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-icon i {
    font-size: 2rem;
    color: var(--color-white);
}

.highlight-content h4 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--color-secondary);
    line-height: 1.2;
}

.highlight-content p {
    color: var(--color-gray);
    line-height: 1.6;
    margin: 0;
}

/* Quality Control Section */
.quality-control {
    background: var(--color-white);
    padding: 8rem 0;
    text-align: center;
}

.quality-control .section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.quality-control .section-title {
    display: block;
    text-align: center;
    margin: 0 auto 1.5rem;
}
.quality-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
}

.quality-item {
    background: var(--color-white);
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    border: 1px solid var(--color-light-gray);
    position: relative;
    z-index: 1;
}

.quality-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(228, 30, 38, 0.2);
    border-color: var(--color-primary);
}

.quality-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--color-primary), var(--color-primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.quality-icon i {
    font-size: 2.5rem;
    color: var(--color-white);
}

.quality-item h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1e3a8a !important;
    font-weight: 600;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative;
    z-index: 2;
}

.quality-item p {
    color: #64748b !important;
    line-height: 1.6;
    font-size: 1.6rem;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative;
    z-index: 2;
}

.quality-note {
    text-align: center;
    background: #1e293b;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid #334155;
    backdrop-filter: blur(20px);
}

.quality-note p {
    font-size: 1.8rem;
    color: #ffffff;
    line-height: 1.6;
}
/* Responsive Design */
@media screen and (max-width: 1024px) {
    .hero-main-title {
        font-size: 4.5rem;
    }
    
    .hero-description {
        font-size: 2rem;
    }
    
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 4rem;
    }
    
    .hero-visual-section {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .hero-image-container {
        height: 40rem;
    }
    
    .hero-image {
        max-width: 35rem;
        height: 28rem;
    }
    
    .hero-image-stack {
        height: 500px;
        display: flex;
        justify-content: center;
    }
    
    .image-card {
        position: relative;
        width: 300px;
        height: 200px;
        margin: 0 1rem;
    }
    
    .image-card-1, .image-card-2, .image-card-3 {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    .hero-main-title {
        font-size: 3.5rem;
    }
    
    .hero-description {
        font-size: 1.8rem;
    }
    
    .hero-content-wrapper {
        gap: 3rem;
    }
    
    .hero-visual-section {
        max-width: 400px;
    }
    
    .hero-image-container {
        height: 35rem;
    }
    
    .hero-image {
        max-width: 30rem;
        height: 25rem;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn--large {
        width: 100%;
        max-width: 350px;
        justify-content: center;
        padding: 1.5rem 3rem;
        font-size: 1.8rem;
    }
    
    .hero-image-stack {
        height: 400px;
        flex-direction: column;
        align-items: center;
    }
    
    .image-card {
        width: 280px;
        height: 180px;
        margin: 0.5rem 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .quality-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .floating-stats {
        bottom: 30px;
    }
    
    .stat-item {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
    }
}

@media screen and (max-width: 480px) {
    .hero-main-title {
        font-size: 2.8rem;
    }
    
    .hero-description {
        font-size: 1.6rem;
    }
    
    .hero-content-wrapper {
        gap: 2rem;
    }
    
    .hero-visual-section {
        max-width: 300px;
    }
    
    .hero-image-container {
        height: 30rem;
    }
    
    .hero-image {
        max-width: 25rem;
        height: 20rem;
    }
    
    .hero-badge {
        font-size: 1.4rem;
        padding: 0.8rem 1.5rem;
    } 
    
    .btn--large {
        padding: 1.2rem 2rem;
        font-size: 1.6rem;
    }
    
    .hero-image-stack {
        height: 350px;
    }
    
    .image-card {
        width: 250px;
        height: 150px;
    }
    
    .feature-item {
        padding: 1rem 1.5rem;
    }
    
    .feature-item i {
        font-size: 1.6rem;
    }
    
    .feature-item span {
        font-size: 1.4rem;
    }
}

/* Floating Stats */
.floating-stats {
    position: absolute;
    bottom: 50px;
    left: 0;
    right: 0;
    z-index: 5;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.stat-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    color: var(--color-secondary);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}
.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--color-primary), var(--color-primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 2rem;
    flex-shrink: 0;
}

.stat-content {
    text-align: left;
}

.stat-number {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1.4rem;
    color: var(--color-gray);
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    font-weight: 600;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
    color: var(--color-white);
    animation: fadeInUp 1s ease-out 2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border: 2px solid var(--color-white);
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
    margin: 0 auto 1rem;
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: rotate(45deg) translateY(0);
    }
    40% {
        transform: rotate(45deg) translateY(-10px);
    }
    60% {
        transform: rotate(45deg) translateY(-5px);
    }
}
.scroll-indicator span {
    font-size: 1.4rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
} 

/* ===== About Page Styles ===== */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    padding: 12rem 0 8rem;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.page-header__content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--color-white);
}

.page-header__content h1 {
    font-size: 4.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-header__content p {
    font-size: 2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    font-size: 1.6rem;
}

.breadcrumb a {
    color: var(--color-white);
    opacity: 0.8;
    transition: var(--transition);
}

.breadcrumb a:hover {
    opacity: 1;
}

.breadcrumb span {
    opacity: 0.6;
}

/* Company Profile Section */
.company-profile {
    padding: 10rem 0;
    background: var(--color-white);
}

.profile-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    margin-top: 6rem;
}

.profile-text h3 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 2rem;
}

.profile-text p {
    font-size: 1.7rem;
    line-height: 1.8;
    color: var(--color-gray);
    margin-bottom: 2rem;
}
.profile-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 4rem;
}
.highlight-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(228, 30, 38, 0.05);
    border-radius: 15px;
    transition: var(--transition);
}
.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.highlight-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 6rem;
    height: 6rem;
    background: linear-gradient(45deg, var(--color-primary), var(--color-primary-light));
    border-radius: 50%;
    flex-shrink: 0;
}

.highlight-icon i {
    font-size: 2.4rem;
    color: var(--color-white);
}

.highlight-content h4 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 0.5rem;
}

.highlight-content p {
    font-size: 1.4rem;
    color: var(--color-gray);
    margin: 0;
}

.profile-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.profile-image img {
    width: 100%;
    height: auto;
    transition: var(--transition);
}

.profile-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent 70%);
    color: var(--color-white);
    padding: 3rem;
    transform: translateY(100%);
    transition: var(--transition);
}

.profile-image:hover .image-overlay {
    transform: translateY(0);
}

.overlay-content h4 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.overlay-content p {
    font-size: 1.4rem;
    opacity: 0.9;
}

/* Leadership Section */
.leadership {
    padding: 10rem 0;
    background: var(--color-accent);
}

.leadership-content {
    margin-top: 6rem;
}

.leader-card {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 6rem;
    align-items: center;
    max-width: 120rem;
    margin: 0 auto;
}
.leader-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.leader-image img {
    width: 100%;
    height: auto;
    transition: var(--transition);
}

.leader-image:hover img {
    transform: scale(1.05);
}

.leader-info h3 {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--color-secondary);
    margin-bottom: 1rem;
}

.leader-title {
    font-size: 1.8rem;
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: 2rem;
}

.leader-description {
    font-size: 1.7rem;
    line-height: 1.8;
    color: var(--color-gray);
    margin-bottom: 3rem;
}

.leader-achievements {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.achievement {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--color-white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.achievement i {
    font-size: 2rem;
    color: var(--color-primary);
}

.achievement span {
    font-size: 1.6rem;
    color: var(--color-secondary);
    font-weight: 500;
}

/* Services Overview */
.services-overview {
    padding: 10rem 0;
    background: var(--color-white);
}

.services-overview .section-container {
    overflow-x: auto;
    padding: 0 2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: 2rem;
    margin-top: 6rem;
    overflow-x: auto;
}

.service-card {
    padding: 3rem 2rem;
    background: var(--color-white);
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(228, 30, 38, 0.1);
    min-width: 200px;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 6rem;
    height: 6rem;
    background: linear-gradient(45deg, var(--color-primary), var(--color-primary-light));
    border-radius: 50%;
    margin: 0 auto 1.5rem;
}
.service-icon i {
    font-size: 2.4rem;
    color: var(--color-white);
}

.service-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 1.4rem;
    line-height: 1.6;
    color: var(--color-gray);
    margin-bottom: 1.5rem;
}

.service-card ul {
    text-align: left;
    list-style: none;
}

.service-card ul li {
    font-size: 1.3rem;
    color: var(--color-gray);
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
}

.service-card ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--color-primary);
}

/* Why Choose Us */
.why-choose-us {
    padding: 10rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.choose-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    margin-top: 6rem;
}

.choose-item {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--color-white);
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.choose-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.choose-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 7rem;
    height: 7rem;
    background: linear-gradient(45deg, var(--color-primary), var(--color-primary-light));
    border-radius: 50%;
    margin: 0 auto 2rem;
}

.choose-icon i {
    font-size: 2.8rem;
    color: var(--color-white);
}
.choose-item h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
}

.choose-item p {
    font-size: 1.5rem;
    line-height: 1.7;
    color: var(--color-gray);
}

/* Responsive Design for About Page */
@media screen and (max-width: 1024px) {
    .profile-content,
    .leader-card {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        overflow-x: auto;
    }
    
    .choose-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .profile-highlights {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    .page-header__content h1 {
        font-size: 3.6rem;
    }
    
    .page-header__content p {
        font-size: 1.6rem;
    }
    
    .choose-us-grid {
        grid-template-columns: 1fr;
    }
    
    .leader-achievements {
        gap: 1rem;
    }
    
    .achievement {
        padding: 1rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        overflow-x: auto;
    }
    
    .service-card {
        padding: 2.5rem 1.5rem;
    }
} 

/* ===== Services Page Styles ===== */

/* Services Introduction */
.services-intro {
    padding: 8rem 0;
    background: var(--color-accent);
}
/* Main Services */
.main-services {
    padding: 10rem 0;
    background: var(--color-white);
}

/* Service Categories */
.service-category {
    margin-bottom: 8rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 20px;
    padding: 4rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 4rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(228, 30, 38, 0.1);
}

.category-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 8rem;
    height: 8rem;
    background: linear-gradient(45deg, var(--color-primary), var(--color-primary-light));
    border-radius: 50%;
    flex-shrink: 0;
}

.category-icon i {
    font-size: 3.5rem;
    color: var(--color-white);
}

.category-info h3 {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--color-secondary);
    margin-bottom: 1rem;
}

.category-info p {
    font-size: 1.8rem;
    color: var(--color-gray);
}

/* Services List */
.services-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.service-item {
    display: flex;
    gap: 3rem;
    padding: 3rem;
    background: var(--color-white);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border-left: 4px solid var(--color-primary);
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 6rem;
    height: 6rem;
    background: rgba(228, 30, 38, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
}

.service-icon i {
    font-size: 2.4rem;
    color: var(--color-primary);
}

.service-content h4 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
}

.service-content p {
    font-size: 1.6rem;
    line-height: 1.7;
    color: var(--color-gray);
    margin-bottom: 2rem;
}

.service-content ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.service-content ul li {
    font-size: 1.4rem;
    color: var(--color-gray);
    position: relative;
    padding-left: 2rem;
}

.service-content ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-size: 1.2rem;
}

/* Technical Capabilities */
.technical-capabilities {
    padding: 10rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    margin-top: 6rem;
}

.capability-card {
    padding: 4rem 3rem;
    background: var(--color-white);
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(228, 30, 38, 0.1);
}

.capability-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.capability-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 8rem;
    height: 8rem;
    background: linear-gradient(45deg, var(--color-primary), var(--color-primary-light));
    border-radius: 50%;
    margin: 0 auto 2rem;
}

.capability-icon i {
    font-size: 3.2rem;
    color: var(--color-white);
}

.capability-card h3 {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
}

.capability-card p {
    font-size: 1.6rem;
    line-height: 1.7;
    color: var(--color-gray);
    margin-bottom: 2rem;
}

.capability-card ul {
    text-align: left;
    list-style: none;
}

.capability-card ul li {
    font-size: 1.5rem;
    color: var(--color-gray);
    margin-bottom: 1rem;
    position: relative;
    padding-left: 2rem;
}

.capability-card ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--color-primary);
}

/* Process Section */
.our-process {
    padding: 10rem 0;
    background: var(--color-white);
}

.process-timeline {
    max-width: 80rem;
    margin: 6rem auto 0;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--color-primary), var(--color-primary-light));
    transform: translateX(-50%);
}

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 6rem;
    position: relative;
}
.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.process-step:nth-child(even) .step-content {
    text-align: right;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 6rem;
    height: 6rem;
    background: linear-gradient(135deg, var(--color-secondary), var(--color-primary));
    color: var(--color-white);
    border-radius: 50%;
    font-size: 2rem;
    font-weight: 800;
    position: relative;
    z-index: 2;
    margin-bottom: var(--spacing-md);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 3px solid var(--color-white);
}

.step-content {
    flex: 1;
    padding: 0 4rem;
    max-width: 35rem;
}

.step-content h3 {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
}

.step-content p {
    font-size: 1.6rem;
    line-height: 1.7;
    color: var(--color-gray);
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
}
/* Responsive Design for Services Page */
@media screen and (max-width: 1024px) {
    .services-list {
        gap: 2rem;
    }
    
    .service-item {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .service-content ul {
        grid-template-columns: 1fr;
    }
    
    .capabilities-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .process-step {
        flex-direction: column !important;
        text-align: center !important;
    }
    
    .process-step:nth-child(even) .step-content {
        text-align: center;
    }
    
    .process-timeline::before {
        display: none;
    }
    
    .step-number {
        box-shadow: none;
        margin-bottom: 2rem;
    }
    
    .step-content {
        padding: 0;
        max-width: none;
    }
}

@media screen and (max-width: 768px) {
    .service-category {
        padding: 3rem 2rem;
    }
    
    .category-header {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .category-icon {
        width: 6rem;
        height: 6rem;
    }
    
    .category-icon i {
        font-size: 2.8rem;
    }
    
    .category-info h3 {
        font-size: 2.4rem;
    }
    
    .service-item {
        padding: 2rem;
    }
    
    .service-content h4 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}

@media screen and (max-width: 480px) {
    .main-services {
        padding: 6rem 0;
    }
    
    .service-category {
        margin-bottom: 4rem;
        padding: 2rem 1.5rem;
    }
    
    .capability-card {
        padding: 3rem 2rem;
    }
    
    .our-process {
        padding: 6rem 0;
    }
    
    .process-step {
        margin-bottom: 4rem;
    }
} 

/* ===== Markets Page Styles ===== */

/* Markets Introduction */
.markets-intro {
    padding: 8rem 0;
    background: var(--color-accent);
}

/* Primary Markets */
.primary-markets {
    padding: 10rem 0;
    background: var(--color-white);
}
.markets-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    margin-top: 6rem;
}
.market-card {
    background: var(--color-white);
    border-radius: 20px;
    padding: 4rem 3rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    border: 1px solid rgba(228, 30, 38, 0.1);
    position: relative;
    overflow: hidden;
}
.market-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(45deg, var(--color-primary), var(--color-primary-light));
}

.market-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.market-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 8rem;
    height: 8rem;
    background: linear-gradient(45deg, var(--color-primary), var(--color-primary-light));
    border-radius: 50%;
    margin-bottom: 2rem;
}

.market-icon i {
    font-size: 3.5rem;
    color: var(--color-white);
}

.market-content h3 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
}

.market-content > p {
    font-size: 1.7rem;
    line-height: 1.7;
    color: var(--color-gray);
    margin-bottom: 3rem;
}

.market-features,
.market-challenges {
    margin-bottom: 3rem;
}

.market-features h4,
.market-challenges h4 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.market-features h4::before {
    content: '\f0ad';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--color-primary);
    font-size: 1.6rem;
}

.market-challenges h4::before {
    content: '\f06a';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--color-primary);
    font-size: 1.6rem;
}

.market-features ul,
.market-challenges ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.market-features ul li,
.market-challenges ul li {
    font-size: 1.4rem;
    color: var(--color-gray);
    position: relative;
    padding-left: 2rem;
}

.market-features ul li::before,
.market-challenges ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-size: 1.2rem;
}
/* Industry Statistics */
.industry-stats {
    padding: 10rem 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}
.industry-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="10" height="10" patternUnits="userSpaceOnUse"><circle cx="5" cy="5" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
}

.industry-stats .section-header {
    position: relative;
    z-index: 2;
}

.industry-stats .section-title {
    color: var(--color-white);
}

.industry-stats .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4rem;
    margin-top: 6rem;
    position: relative;
    z-index: 2;
}

.stat-card {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 6rem;
    height: 6rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    margin: 0 auto 2rem;
}

.stat-icon i {
    font-size: 2.4rem;
    color: var(--color-white);
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.stat-label {
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Industry Expertise */
.industry-expertise {
    padding: 10rem 0;
    background: var(--color-white);
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    margin-top: 6rem;
}

.expertise-item {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 15px;
    transition: var(--transition);
    border: 1px solid rgba(228, 30, 38, 0.05);
}

.expertise-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}
.expertise-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 7rem;
    height: 7rem;
    background: linear-gradient(45deg, var(--color-primary), var(--color-primary-light));
    border-radius: 50%;
    margin: 0 auto 2rem;
}

.expertise-icon i {
    font-size: 2.8rem;
    color: var(--color-white);
}

.expertise-item h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
}

.expertise-item p {
    font-size: 1.5rem;
    line-height: 1.7;
    color: var(--color-gray);
}

/* Market Showcase */
.market-showcase {
    padding: 10rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.market-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 4rem;
    margin-top: 6rem;
}

.market-showcase-card {
    background: var(--color-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.market-showcase-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.market-showcase-image {
    height: 28rem;
    overflow: hidden;
    position: relative;
}

.market-showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.market-showcase-card:hover .market-showcase-image img {
    transform: scale(1.08);
}

.market-showcase-content {
    padding: 3rem;
}
.market-showcase-content h3 {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
    position: relative;
}

.market-showcase-content h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--color-primary);
    border-radius: 2px;
}

.market-showcase-content p {
    font-size: 1.6rem;
    line-height: 1.7;
    color: var(--color-gray);
    margin-bottom: 2.5rem;
}

.market-showcase-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.market-showcase-features li {
    font-size: 1.4rem;
    color: var(--color-gray);
    margin-bottom: 0.8rem;
    padding-left: 2rem;
    position: relative;
}

.market-showcase-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Responsive adjustments for market showcase */
@media screen and (max-width: 768px) {
    .market-showcase-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .market-showcase-image {
        height: 22rem;
    }
    
    .market-showcase-content {
        padding: 2.5rem;
    }
    
    .market-showcase-content h3 {
        font-size: 2rem;
    }
}

/* Case Studies Preview */
.case-studies-preview {
    padding: 10rem 0;
    background: var(--color-accent);
}
.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    margin-top: 6rem;
}

.case-study-card {
    background: var(--color-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.case-study-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.case-study-image {
    height: 20rem;
    overflow: hidden;
}

.case-study-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.case-study-card:hover .case-study-image img {
    transform: scale(1.05);
}

.case-study-content {
    padding: 3rem;
}

.case-study-content h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
}

.case-study-content p {
    font-size: 1.5rem;
    line-height: 1.7;
    color: var(--color-gray);
    margin-bottom: 2rem;
}

.case-study-link {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.case-study-link:hover {
    color: var(--color-primary-dark);
    gap: 1.5rem;
}

.case-study-link i {
    font-size: 1.4rem;
    transition: var(--transition);
}

/* Responsive Design for Markets Page */
@media screen and (max-width: 1024px) {
    .markets-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .expertise-grid,
    .case-studies-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .market-features ul,
    .market-challenges ul {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    .market-card {
        padding: 3rem 2rem;
    }
    
    .market-icon {
        width: 6rem;
        height: 6rem;
    }
    
    .market-icon i {
        font-size: 2.8rem;
    }
    
    .market-content h3 {
        font-size: 2.4rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 3.2rem;
    }
}

@media screen and (max-width: 480px) {
    .primary-markets {
        padding: 6rem 0;
    }
    
    .market-card {
        padding: 2rem 1.5rem;
    }
    
    .expertise-item {
        padding: 2rem 1.5rem;
    }
    
    .case-study-content {
        padding: 2rem;
    }
} 

/* ===== Contact Page Styles ===== */

/* Contact Introduction */
.contact-intro {
    padding: 8rem 0;
    background: var(--color-accent);
}

/* Contact Methods */
.contact-methods {
    padding: 10rem 0;
    background: var(--color-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    margin-top: 6rem;
}

/* Contact Form Section */
.contact-form-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 4rem;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.form-header {
    margin-bottom: 3rem;
}

.form-header h3 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--color-secondary);
    margin-bottom: 1rem;
}

.form-header p {
    font-size: 1.6rem;
    color: var(--color-gray);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-secondary);
    margin-bottom: 0.8rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1.5rem;
    border: 2px solid rgba(228, 30, 38, 0.1);
    border-radius: 10px;
    font-size: 1.6rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--color-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(228, 30, 38, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 12rem;
}
.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    font-size: 1.4rem;
    color: var(--color-gray);
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    width: 2rem;
    height: 2rem;
    border: 2px solid rgba(228, 30, 38, 0.3);
    border-radius: 4px;
    position: relative;
    transition: var(--transition);
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--color-white);
    font-size: 1.2rem;
}

/* Contact Information Section */
.contact-info-section {
    display: flex;
    flex-direction: column;
}

.contact-info-card {
    background: var(--color-white);
    padding: 4rem;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(228, 30, 38, 0.1);
    height: fit-content;
}

.contact-info-card h3 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--color-secondary);
    margin-bottom: 1rem;
}
.contact-info-card > p {
    font-size: 1.6rem;
    color: var(--color-gray);
    margin-bottom: 3rem;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 4rem;
}

.contact-info-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 5rem;
    height: 5rem;
    background: linear-gradient(45deg, var(--color-primary), var(--color-primary-light));
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 2rem;
    color: var(--color-white);
}

.contact-details h4 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 1rem;
}

.contact-details p {
    font-size: 1.5rem;
    line-height: 1.6;
    color: var(--color-gray);
    margin-bottom: 0.5rem;
}

.contact-details a {
    color: var(--color-primary);
    text-decoration: none;
    transition: var(--transition);
}

.contact-details a:hover {
    color: var(--color-primary-dark);
}

.contact-social {
    border-top: 1px solid rgba(228, 30, 38, 0.1);
    padding-top: 3rem;
}

.contact-social h4 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background: rgba(228, 30, 38, 0.1);
    border-radius: 50%;
    color: var(--color-primary);
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-3px);
}

/* Map Section */
.map-section {
    padding: 10rem 0;
    background: var(--color-accent);
}

.map-container {
    margin-top: 6rem;
    position: relative;
}
.map-wrapper {
    height: 45rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(228, 30, 38, 0.1);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}
.map-content {
    padding: 4rem;
}
.map-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 8rem;
    height: 8rem;
    background: linear-gradient(45deg, var(--color-primary), var(--color-primary-light));
    border-radius: 50%;
    margin: 0 auto 2rem;
}

.map-icon i {
    font-size: 3.5rem;
    color: var(--color-white);
}

.map-content h3 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
}

.map-content p {
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--color-gray);
    margin-bottom: 3rem;
}

/* Modern FAQ Section */
.modern-faq-section {
    padding: 10rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.modern-faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e8e8e8" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 0;
}

.modern-faq-container {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 6rem;
    max-width: 90rem;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.modern-faq-item {
    perspective: 1000px;
}

.faq-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.08),
        0 1px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(228, 30, 38, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.faq-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    transform: scaleX(0);
    transition: transform 0.3s ease;
    z-index: 2;
}

.faq-card:hover {
    transform: translateY(-8px) rotateX(2deg);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.12),
        0 5px 15px rgba(228, 30, 38, 0.1);
}

.faq-card.active {
    transform: translateY(-5px);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.15),
        0 5px 15px rgba(228, 30, 38, 0.2);
}

.faq-card.active::before {
    transform: scaleX(1);
}
.faq-question-modern {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 3rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 3;
}
.question-content {
    flex: 1;
    margin-right: 2rem;
}

.faq-question-modern h4 {
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin: 0 0 0.5rem 0;
    transition: color 0.3s ease;
}

.question-subtitle {
    font-size: 1.3rem;
    color: #6c757d;
    margin: 0;
    font-weight: 400;
}

.faq-icon {
    position: relative;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(228, 30, 38, 0.3);
}

.faq-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(228, 30, 38, 0.4);
}

.icon-plus, .icon-minus {
    position: absolute;
    font-size: 2rem;
    font-weight: 300;
    color: #ffffff;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    line-height: 1;
}

.icon-plus {
    opacity: 1;
    transform: rotate(0deg);
}

.icon-minus {
    opacity: 0;
    transform: rotate(180deg);
}

.faq-card.active .icon-plus {
    opacity: 0;
    transform: rotate(45deg);
}

.faq-card.active .icon-minus {
    opacity: 1;
    transform: rotate(0deg);
}

.faq-answer-modern {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    transform: translateY(-20px);
}

.faq-card.active .faq-answer-modern {
    opacity: 1;
    transform: translateY(0);
}

.answer-content {
    padding: 0 3rem 3rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-top: 1px solid rgba(228, 30, 38, 0.1);
    position: relative;
}

.answer-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 3rem;
    right: 3rem;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
}

.answer-content p {
    font-size: 1.6rem;
    line-height: 1.8;
    color: var(--color-gray);
    margin: 0;
    font-weight: 400;
}
/* Responsive Design for Contact Page */
@media screen and (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}
@media screen and (max-width: 768px) {
    .contact-form-section,
    .contact-info-card {
        padding: 3rem 2rem;
    }
    
    .form-header h3 {
        font-size: 2.4rem;
    }
    
    .contact-info-card h3 {
        font-size: 2.4rem;
    }
    
    .contact-info-item {
        gap: 1.5rem;
    }
    
    .contact-icon {
        width: 4rem;
        height: 4rem;
    }
    
    .contact-icon i {
        font-size: 1.8rem;
    }
    
    .map-content {
        padding: 3rem 2rem;
    }
    
    .map-icon {
        width: 6rem;
        height: 6rem;
    }
    
    .map-icon i {
        font-size: 2.8rem;
    }
    
    .faq-question-modern {
        padding: 2rem;
    }
    
    .faq-question-modern h4 {
        font-size: 1.7rem;
    }
    
    .question-subtitle {
        font-size: 1.2rem;
    }
    
    .faq-icon {
        width: 45px;
        height: 45px;
    }
    
    .icon-plus, .icon-minus {
        font-size: 1.8rem;
    }
    
    .answer-content {
        padding: 0 2rem 2rem;
    }
    
    .answer-content::before {
        left: 2rem;
        right: 2rem;
    }
}
@media screen and (max-width: 480px) {
    .contact-methods {
        padding: 6rem 0;
    }
    
    .modern-faq-section {
        padding: 8rem 0;
    }
    
    .modern-faq-container {
        gap: 2rem;
        margin-top: 4rem;
    }
    
    .faq-card {
        border-radius: 15px;
    }
    
    .faq-question-modern {
        padding: 1.5rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .question-content {
        margin-right: 0;
        width: 100%;
    }
    
    .faq-question-modern h4 {
        font-size: 1.5rem;
        margin-bottom: 0.3rem;
    }
    
    .question-subtitle {
        font-size: 1.1rem;
    }
    
    .faq-icon {
        width: 40px;
        height: 40px;
        align-self: flex-end;
        margin-top: -0.5rem;
    }
    
    .icon-plus, .icon-minus {
        font-size: 1.5rem;
    }
    
    .answer-content {
        padding: 0 1.5rem 1.5rem;
    }
    
    .answer-content::before {
        left: 1.5rem;
        right: 1.5rem;
    }
    
    .answer-content p {
        font-size: 1.4rem;
        line-height: 1.6;
    }
    
    .contact-form-section,
    .contact-info-card {
        padding: 2rem 1.5rem;
    }
    
    .contact-info-list {
        gap: 2rem;
    }
    
         .social-links {
         justify-content: center;
     }
 } 

/* ===== Products Page Styles ===== */

/* Product Navigation */
.product-nav {
    padding: 6rem 0;
    background: var(--color-white);
}

.product-nav-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 15px;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid rgba(228, 30, 38, 0.1);
}

.nav-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    background: var(--color-white);
}

.nav-item i {
    font-size: 3rem;
    color: var(--color-primary);
}

.nav-item span {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--color-secondary);
    text-align: center;
}

/* Product Sections */
.product-section {
    padding: 10rem 0;
}

.product-section.alt-bg {
    background: var(--color-accent);
}

.product-intro {
    max-width: 80rem;
    margin: 4rem auto 6rem;
    text-align: center;
}

.product-intro p {
    font-size: 1.8rem;
    line-height: 1.7;
    color: var(--color-gray);
}

/* Product Features */
.product-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    margin: 6rem 0;
}

.feature-highlights h3,
.applications h3 {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 2rem;
}

.feature-highlights ul {
    list-style: none;
}

.feature-highlights ul li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.6rem;
    color: var(--color-gray);
    margin-bottom: 1.5rem;
}

.feature-highlights ul li i {
    color: var(--color-primary);
    font-size: 1.4rem;
}

.application-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.application-item {
    padding: 2rem;
    background: var(--color-white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.application-item i {
    font-size: 2.4rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.application-item h4 {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--color-secondary);
    margin-bottom: 1rem;
}

.application-item p {
    font-size: 1.4rem;
    color: var(--color-gray);
}

/* Product Specifications */
.product-specifications {
    margin-top: 8rem;
}

.product-specifications h3 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--color-secondary);
    margin-bottom: 4rem;
    text-align: center;
}

.spec-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.spec-card {
    padding: 3rem;
    background: var(--color-white);
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(228, 30, 38, 0.1);
}

.spec-card h4 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 2rem;
    text-align: center;
}

.spec-card ul {
    list-style: none;
}

.spec-card ul li {
    font-size: 1.4rem;
    color: var(--color-gray);
    margin-bottom: 1rem;
    position: relative;
    padding-left: 2rem;
}

.spec-card ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-size: 1.2rem;
}

/* Security Products */
.security-products {
    display: flex;
    flex-direction: column;
    gap: 6rem;
    margin-top: 6rem;
}

.security-product-card {
    background: var(--color-white);
    padding: 4rem;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--color-primary);
}

.security-product-card .product-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 8rem;
    height: 8rem;
    background: linear-gradient(45deg, var(--color-primary), var(--color-primary-light));
    border-radius: 50%;
    margin-bottom: 2rem;
}
.security-product-card .product-icon i {
    font-size: 3.5rem;
    color: var(--color-white);
}

.security-product-card h3 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
}

.security-product-card > p {
    font-size: 1.7rem;
    line-height: 1.7;
    color: var(--color-gray);
    margin-bottom: 3rem;
}

.product-details,
.technical-specs {
    margin-bottom: 3rem;
}

.product-details h4,
.technical-specs h4 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
}

.product-details ul,
.technical-specs ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.product-details ul li,
.technical-specs ul li {
    font-size: 1.5rem;
    color: var(--color-gray);
    position: relative;
    padding-left: 2rem;
}

.product-details ul li::before,
.technical-specs ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-size: 1.2rem;
}

/* Specialty Grid */
.specialty-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    margin-top: 6rem;
}

.specialty-item {
    padding: 3rem;
    background: var(--color-white);
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(228, 30, 38, 0.1);
}

.specialty-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}
.specialty-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 7rem;
    height: 7rem;
    background: linear-gradient(45deg, var(--color-primary), var(--color-primary-light));
    border-radius: 50%;
    margin: 0 auto 2rem;
}

.specialty-icon i {
    font-size: 2.8rem;
    color: var(--color-white);
}

.specialty-item h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
}

.specialty-item p {
    font-size: 1.5rem;
    line-height: 1.7;
    color: var(--color-gray);
    margin-bottom: 2rem;
}

.specialty-specs ul {
    list-style: none;
    text-align: left;
}

.specialty-specs ul li {
    font-size: 1.4rem;
    color: var(--color-gray);
    margin-bottom: 1rem;
    position: relative;
    padding-left: 2rem;
}

.specialty-specs ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-size: 1.2rem;
}

/* Packaging Showcase */
.packaging-showcase {
    display: flex;
    flex-direction: column;
    gap: 6rem;
    margin-top: 6rem;
}

.packaging-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.packaging-item:nth-child(even) {
    direction: rtl;
}

.packaging-item:nth-child(even) .packaging-content {
    direction: ltr;
}

.packaging-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.packaging-image img {
    width: 100%;
    height: auto;
    transition: var(--transition);
}

.packaging-item:hover .packaging-image img {
    transform: scale(1.05);
}
.packaging-content h3 {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
}

.packaging-content p {
    font-size: 1.6rem;
    line-height: 1.7;
    color: var(--color-gray);
    margin-bottom: 2rem;
}

.packaging-content ul {
    list-style: none;
}
.packaging-content ul li {
    font-size: 1.5rem;
    color: var(--color-gray);
    margin-bottom: 1rem;
    position: relative;
    padding-left: 2rem;
}
.packaging-content ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-size: 1.2rem;
}

/* Quality Assurance */
.quality-assurance {
    padding: 10rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.quality-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4rem;
    margin-top: 6rem;
}

.quality-item {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--color-white);
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.quality-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.quality-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 7rem;
    height: 7rem;
    background: linear-gradient(45deg, var(--color-primary), var(--color-primary-light));
    border-radius: 50%;
    margin: 0 auto 2rem;
}

.quality-icon i {
    font-size: 2.8rem;
    color: var(--color-white);
}

.quality-item h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
}

.quality-item p {
    font-size: 1.4rem;
    line-height: 1.7;
    color: var(--color-gray);
}

.quality-note {
    text-align: center;
    background: #1e293b;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid #334155;
    backdrop-filter: blur(20px);
}

.quality-note p {
    font-size: 1.8rem;
    color: #ffffff;
    line-height: 1.6;
}
/* Responsive Design for Products Page */
@media screen and (max-width: 1024px) {
    .product-nav-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .product-features {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .application-grid {
        grid-template-columns: 1fr;
    }
    
    .spec-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .specialty-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .packaging-item {
        grid-template-columns: 1fr;
    }
    
    .packaging-item:nth-child(even) {
        direction: ltr;
    }
    
    .quality-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .product-details ul,
    .technical-specs ul {
        grid-template-columns: 1fr;
    }
}
@media screen and (max-width: 768px) {
    .product-nav-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .nav-item {
        padding: 2rem;
    }
    
    .specialty-grid {
        grid-template-columns: 1fr;
    }
    
    .quality-features {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .security-product-card {
        padding: 3rem 2rem;
    }
    
    .security-product-card .product-icon {
        width: 6rem;
        height: 6rem;
    }
    
    .security-product-card .product-icon i {
        font-size: 2.8rem;
    }
}

@media screen and (max-width: 480px) {
    .product-section {
        padding: 6rem 0;
    }
    
    .specialty-item {
        padding: 2rem;
    }
    
    .quality-item {
        padding: 2rem;
    }
    
    .spec-card {
        padding: 2rem;
    }
} 

/* Awards & Honours Styles */
.awards-overview {
    padding: 8rem 0;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.award-card {
    background: var(--color-white);
    border-radius: 1.5rem;
    padding: 3rem;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.award-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0.5rem;
    background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light));
}

.award-card:hover {
    transform: translateY(-1rem);
    box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.15);
}

.award-icon {
    width: 8rem;
    height: 8rem;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: var(--transition);
}
.award-card:hover .award-icon {
    transform: scale(1.1);
}
.award-content h3 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--color-secondary);
}

.award-content p {
    color: var(--color-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.award-year {
    display: inline-block;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 1.4rem;
}

/* Certifications Styles */
.certifications {
    padding: 8rem 0;
    background: var(--color-accent);
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.certification-item {
    background: var(--color-white);
    border-radius: 1.5rem;
    padding: 3rem;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 2rem;
}

.certification-item:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15);
}

.certification-icon {
    width: 6rem;
    height: 6rem;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.certification-icon i {
    font-size: 2.5rem;
    color: var(--color-white);
}
.certification-content h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--color-secondary);
}

.certification-content p {
    color: var(--color-gray);
    line-height: 1.6;
}

/* Recognition Styles */
.recognition {
    padding: 8rem 0;
}

.recognition-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-top: 4rem;
}

.recognition-text h3 {
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--color-secondary);
}

.recognition-text p {
    color: var(--color-gray);
    margin-bottom: 3rem;
    line-height: 1.7;
    font-size: 1.7rem;
}

.recognition-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.recognition-highlights .highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.recognition-highlights .highlight-item i {
    color: var(--color-primary);
    font-size: 1.8rem;
}

.recognition-highlights .highlight-item span {
    font-weight: 500;
    color: var(--color-secondary);
}

.recognition-image {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.1);
}

.recognition-image img {
    width: 100%;
    height: auto;
    transition: var(--transition);
}

.recognition-image:hover img {
    transform: scale(1.05);
}

/* Blog Styles */
.featured-article {
    padding: 6rem 0;
    background: var(--color-accent);
}

.featured-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.featured-image {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.1);
}

.featured-image img {
    width: 100%;
    height: auto;
}

.featured-badge {
    position: absolute;
    top: 2rem;
    left: 2rem;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 1.4rem;
}

.featured-text h2 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--color-secondary);
    line-height: 1.2;
}

.featured-text p {
    color: var(--color-gray);
    margin-bottom: 3rem;
    line-height: 1.7;
    font-size: 1.7rem;
}

.article-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    color: var(--color-gray);
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.article-meta i {
    color: var(--color-primary);
}

.blog-grid {
    padding: 8rem 0;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.article-card {
    background: var(--color-white);
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.article-card:hover {
    transform: translateY(-1rem);
    box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.15);
}

.article-image {
    position: relative;
    height: 20rem;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.article-card:hover .article-image img {
    transform: scale(1.1);
}

.article-category {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 1.2rem;
}

.article-content {
    padding: 2.5rem;
}

.article-content h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--color-secondary);
    line-height: 1.3;
}

.article-content p {
    color: var(--color-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.read-more {
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.read-more:hover {
    gap: 1rem;
}

.blog-pagination {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 5rem;
}

.pagination-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    border: 2px solid var(--color-light-gray);
    border-radius: 0.5rem;
    color: var(--color-gray);
    font-weight: 600;
    transition: var(--transition);
    text-decoration: none;
}

.pagination-btn:hover,
.pagination-btn.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
}

.newsletter-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: var(--color-white);
    text-align: center;
}

.newsletter-content h2 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.newsletter-content p {
    font-size: 1.8rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    max-width: 50rem;
    margin: 0 auto;
    gap: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 1.5rem 2rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1.6rem;
}
.newsletter-form .btn {
    background: var(--color-secondary);
    color: var(--color-white);
    border: none;
    padding: 1.5rem 3rem;
}

.newsletter-form .btn:hover {
    background: var(--color-black);
}

/* ===== Enhanced About Us Pages Styles ===== */

/* Improved Container and Section Spacing */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--spacing-md);
    }
}

section {
    padding: var(--spacing-3xl) 0;
    background-color: var(--color-white);
}

@media (max-width: 768px) {
    section {
        padding: var(--spacing-2xl) 0;
    }
}

/* Enhanced Page Header */
.page-header {
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
    padding: var(--spacing-3xl) 0;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.page-header__content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--color-white);
}

.page-header__content h1 {
    font-size: 4.8rem;
    font-weight: 800;
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 1.2;
}

.page-header__content p {
    font-size: 2rem;
    margin-bottom: var(--spacing-lg);
    opacity: 0.9;
    font-weight: 300;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    font-size: 1.4rem;
    opacity: 0.8;
}

.breadcrumb a {
    color: var(--color-white);
    transition: var(--transition);
}

.breadcrumb a:hover {
    opacity: 1;
    text-decoration: underline;
}
.breadcrumb span {
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
    .page-header {
        padding: var(--spacing-2xl) 0;
    }
    
    .page-header__content h1 {
        font-size: 3.2rem;
    }
    
    .page-header__content p {
        font-size: 1.6rem;
    }
}

/* Enhanced Section Headers */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
    padding: 0 var(--spacing-lg);
}

.section-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--color-secondary);
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.2;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 8rem;
    height: 0.4rem;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.section-subtitle {
    font-size: 2rem;
    color: var(--color-gray);
    max-width: 70rem;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 300;
}

@media (max-width: 768px) {
    .section-header {
        margin-bottom: var(--spacing-2xl);
    }
    
    .section-title {
        font-size: 2.8rem;
    }
    
    .section-subtitle {
        font-size: 1.6rem;
    }
}

/* Enhanced Grid Layouts */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-2xl);
    align-items: center;
}
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
}
@media (max-width: 1024px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
}
/* Enhanced Cards */
.card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--color-light-gray);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    transform: scaleX(0);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.card:hover::before {
    transform: scaleX(1);
}

/* Enhanced Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: var(--radius-md);
    font-size: 1.6rem;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
    position: relative;
    overflow: hidden;
    min-height: 4.8rem;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition);
}

.btn:hover::before {
    left: 100%;
}

.btn--primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: var(--color-white);
    box-shadow: var(--shadow-md);
}

.btn--primary:hover {
    background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn--secondary {
    background: linear-gradient(135deg, var(--color-secondary), var(--color-blue-dark));
    color: var(--color-white);
    box-shadow: var(--shadow-md);
}
.btn--secondary:hover {
    background: linear-gradient(135deg, var(--color-blue-dark), var(--color-secondary));
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Enhanced Timeline */
.timeline {
    position: relative;
    padding: var(--spacing-2xl) 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--color-primary), var(--color-secondary));
    transform: translateX(-50%);
    border-radius: var(--radius-sm);
}

.timeline-item {
    position: relative;
    margin-bottom: var(--spacing-3xl);
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}
.timeline-marker {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.marker-dot {
    width: 2rem;
    height: 2rem;
    background: var(--color-primary);
    border: 4px solid var(--color-white);
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    position: relative;
}

.marker-line {
    width: 4px;
    height: 100%;
    background: var(--color-primary);
    position: absolute;
    left: 50%;
    top: 2rem;
    transform: translateX(-50%);
}

.timeline-content {
    background: var(--color-white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin: 0 var(--spacing-xl);
    flex: 1;
    position: relative;
    border: 1px solid var(--color-light-gray);
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border: 1rem solid transparent;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: 100%;
    border-right-color: var(--color-white);
    transform: translateY(-50%);
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: 100%;
    border-left-color: var(--color-white);
    transform: translateY(-50%);
}

.timeline-year {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: var(--color-white);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: var(--spacing-md);
}

.timeline-content h3 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--color-secondary);
}

.timeline-content p {
    font-size: 1.6rem;
    line-height: 1.7;
    color: var(--color-gray);
    margin-bottom: var(--spacing-lg);
}
.timeline-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
}

.highlight {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 1.4rem;
    color: var(--color-gray);
}
.highlight i {
    color: var(--color-primary);
    font-size: 1.6rem;
}
/* Enhanced Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-2xl);
}

.testimonial-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-light-gray);
    transition: var(--transition);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.testimonial-card.featured {
    border: 2px solid var(--color-primary);
    background: linear-gradient(135deg, var(--color-white) 0%, var(--color-accent) 100%);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.client-logo {
    width: 6rem;
    height: 6rem;
    border-radius: var(--radius-md);
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid var(--color-light-gray);
}

.client-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-info h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: var(--spacing-xs);
}

.client-title {
    font-size: 1.4rem;
    color: var(--color-gray);
    margin-bottom: var(--spacing-sm);
}

.rating {
    display: flex;
    gap: var(--spacing-xs);
}

.rating i {
    color: #fbbf24;
    font-size: 1.4rem;
}

.testimonial-content {
    margin-bottom: var(--spacing-lg);
}

.testimonial-content blockquote {
    font-size: 1.6rem;
    line-height: 1.7;
    color: var(--color-black);
    font-style: italic;
    position: relative;
    padding-left: var(--spacing-lg);
}

.testimonial-content blockquote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -0.5rem;
    font-size: 4rem;
    color: var(--color-primary);
    font-family: serif;
    line-height: 1;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--color-light-gray);
}

.client-details strong {
    display: block;
    font-size: 1.6rem;
    color: var(--color-secondary);
    margin-bottom: var(--spacing-xs);
}

.client-details span {
    font-size: 1.4rem;
    color: var(--color-gray);
}

.testimonial-icon {
    color: var(--color-primary);
    font-size: 2rem;
}

/* Enhanced Success Stories */
.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-2xl);
}

.story-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-light-gray);
    transition: var(--transition);
    text-align: center;
}

.story-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.story-icon {
    width: 8rem;
    height: 8rem;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-lg);
    color: var(--color-white);
    font-size: 3rem;
}

.story-card h3 {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: var(--spacing-md);
}

.story-card p {
    font-size: 1.6rem;
    line-height: 1.7;
    color: var(--color-gray);
    margin-bottom: var(--spacing-lg);
}

.story-metrics {
    display: flex;
    justify-content: center;
}

.metric {
    text-align: center;
}

.metric-number {
    display: block;
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: var(--spacing-xs);
}

.metric-label {
    font-size: 1.4rem;
    color: var(--color-gray);
    font-weight: 500;
}

/* Enhanced Industries Grid */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-2xl);
}

.industry-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-light-gray);
    transition: var(--transition);
    text-align: center;
}
.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.industry-icon {
    width: 6rem;
    height: 6rem;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-lg);
    color: var(--color-white);
    font-size: 2.4rem;
}

.industry-card h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: var(--spacing-md);
}

.industry-card p {
    font-size: 1.5rem;
    line-height: 1.6;
    color: var(--color-gray);
}

/* Enhanced Trust Indicators */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-2xl);
}

.trust-item {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-light-gray);
    transition: var(--transition);
    text-align: center;
}

.trust-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.trust-icon {
    width: 7rem;
    height: 7rem;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-lg);
    color: var(--color-white);
    font-size: 2.8rem;
}

.trust-item h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: var(--spacing-md);
}

.trust-item p {
    font-size: 1.5rem;
    line-height: 1.6;
    color: var(--color-gray);
}

/* Enhanced CTA Section */
.cta {
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
    padding: var(--spacing-3xl) 0;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.cta__inner {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--color-white);
    max-width: 80rem;
    margin: 0 auto;
}

.cta__title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 1.2;
}

.cta__inner p {
    font-size: 2rem;
    margin-bottom: var(--spacing-xl);
    opacity: 0.9;
    font-weight: 300;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-lg);
    justify-content: center;
    flex-wrap: wrap;
}

.btn--secondary {
    background: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
    transition: var(--transition);
}

.btn--secondary:hover {
    background: var(--color-white);
    color: var(--color-secondary);
    transform: translateY(-2px);
}

.cta .btn--primary {
    background: var(--color-white);
    color: var(--color-primary);
    font-size: 1.8rem;
    padding: var(--spacing-lg) var(--spacing-2xl);
    min-height: 5.6rem;
}

.cta .btn--primary:hover {
    background: var(--color-accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* ===== Enhanced Image Styles & Frames ===== */

/* Enhanced Image Containers */
.image-container {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--color-white);
    transition: var(--transition);
}

.image-container:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

/* Framed Image Styles */
.framed-image {
    position: relative;
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-white) 100%);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.framed-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 3px solid var(--color-primary);
    border-radius: var(--radius-xl);
    opacity: 0.3;
    transition: var(--transition);
}

.framed-image:hover::before {
    opacity: 0.6;
    border-color: var(--color-secondary);
}

.framed-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    display: block;
    transition: var(--transition);
}

.framed-image:hover img {
    transform: scale(1.02);
}

/* Enhanced Image with Border Frame */
.bordered-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.bordered-image::before {
    content: '';
    position: absolute;
    top: var(--spacing-sm);
    left: var(--spacing-sm);
    right: var(--spacing-sm);
    bottom: var(--spacing-sm);
    border: 2px solid var(--color-white);
    border-radius: var(--radius-md);
    z-index: 2;
    transition: var(--transition);
}

.bordered-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    opacity: 0.1;
    transition: var(--transition);
}

.bordered-image:hover::after {
    opacity: 0.2;
}
.bordered-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.bordered-image:hover img {
    transform: scale(1.05);
}

/* Enhanced Image Overlay */
.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.8) 0%, rgba(228, 30, 38, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    border-radius: var(--radius-lg);
}

.image-container:hover .image-overlay,
.bordered-image:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: var(--color-white);
    padding: var(--spacing-lg);
    transform: translateY(20px);
    transition: var(--transition);
}

.image-container:hover .overlay-content,
.bordered-image:hover .overlay-content {
    transform: translateY(0);
}

.overlay-content h4 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.overlay-content p {
    font-size: 1.6rem;
    opacity: 0.9;
    line-height: 1.5;
}

/* Enhanced Vision & Mission Sections */
.vision-section,
.mission-section {
    padding: var(--spacing-3xl) 0;
    background: var(--color-white);
    position: relative;
}
.vision-section::before,
.mission-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-light-gray), transparent);
}

.vision-content,
.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}
.vision-text,
.mission-text {
    padding: var(--spacing-xl);
    max-width: 500px;
}

.vision-statement,
.mission-statement {
    margin-bottom: var(--spacing-2xl);
}
.vision-statement h3,
.mission-statement h3 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: var(--spacing-lg);
    line-height: 1.3;
    position: relative;
    padding-left: var(--spacing-lg);
}
.vision-statement h3::before,
.mission-statement h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--color-primary), var(--color-secondary));
    border-radius: var(--radius-sm);
}

.vision-statement p,
.mission-statement p {
    font-size: 1.8rem;
    line-height: 1.7;
    color: var(--color-gray);
    margin-bottom: var(--spacing-lg);
}

/* Enhanced Vision Pillars */
.vision-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
    margin-top: var(--spacing-3xl);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.pillar {
    background: var(--color-white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-light-gray);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pillar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    transform: scaleX(0);
    transition: var(--transition);
}

.pillar:hover::before {
    transform: scaleX(1);
}

.pillar:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--color-primary);
}

.pillar-icon {
    width: 7rem;
    height: 7rem;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-lg);
    color: var(--color-white);
    font-size: 2.8rem;
    transition: var(--transition);
    position: relative;
}
.pillar-icon::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.pillar:hover .pillar-icon {
    transform: scale(1.1);
}

.pillar:hover .pillar-icon::after {
    opacity: 0.3;
}

.pillar h4 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: var(--spacing-md);
}

.pillar p {
    font-size: 1.5rem;
    color: var(--color-gray);
    line-height: 1.6;
}
/* Enhanced Mission Objectives */
.mission-objectives {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
    margin-top: var(--spacing-3xl);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}
.objective {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-lg);
    padding: var(--spacing-xl);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-light-gray);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.objective::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--color-primary), var(--color-secondary));
    transform: scaleY(0);
    transition: var(--transition);
}

.objective:hover::before {
    transform: scaleY(1);
}

.objective:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--color-primary);
}

.objective-icon {
    width: 6rem;
    height: 6rem;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 2.4rem;
    flex-shrink: 0;
    transition: var(--transition);
    position: relative;
}

.objective-icon::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.objective:hover .objective-icon {
    transform: scale(1.1);
}

.objective:hover .objective-icon::after {
    opacity: 0.3;
}

.objective-content {
    flex: 1;
}

.objective-content h4 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: var(--spacing-md);
}

.objective-content p {
    font-size: 1.6rem;
    color: var(--color-gray);
    line-height: 1.7;
}

/* Enhanced Values Section */
.values-section {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-white) 100%);
    padding: var(--spacing-3xl) 0;
    position: relative;
}
.values-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-light-gray), transparent);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
    margin-top: var(--spacing-2xl);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.value-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-light-gray);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    transform: scaleX(0);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-icon {
    width: 8rem;
    height: 8rem;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-lg);
    color: var(--color-white);
    font-size: 3.2rem;
    transition: var(--transition);
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
}

.value-card h3 {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: var(--spacing-md);
}

.value-card p {
    font-size: 1.6rem;
    line-height: 1.7;
    color: var(--color-gray);
}

/* Enhanced Team Section */
.team-section {
    background: var(--color-white);
    padding: var(--spacing-3xl) 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
    margin-top: var(--spacing-2xl);
}

.team-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-light-gray);
    transition: var(--transition);
    position: relative;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.team-image {
    position: relative;
    overflow: hidden;
    height: 250px;
    width: 100%;
    cursor: pointer;
    display: block;
    text-decoration: none;
    color: inherit;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-info {
    padding: var(--spacing-xl);
}

.team-info h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: var(--spacing-md);
}

.team-info p {
    font-size: 1.6rem;
    line-height: 1.7;
    color: var(--color-gray);
    margin-bottom: var(--spacing-lg);
}

.team-skills {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.skill {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: var(--color-white);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-sm);
    font-size: 1.2rem;
    font-weight: 600;
}

/* Enhanced Facilities Section */
.facilities-section {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-white) 100%);
    padding: var(--spacing-3xl) 0;
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-2xl);
}

.facility-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-light-gray);
    transition: var(--transition);
}

.facility-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.facility-image {
    position: relative;
    overflow: hidden;
    height: 200px;
    width: 100%;
    cursor: pointer;
    display: block;
    text-decoration: none;
    color: inherit;
}
.facility-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.facility-card:hover .facility-image img {
    transform: scale(1.1);
}

.facility-content {
    padding: var(--spacing-xl);
}

.facility-content h3 {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: var(--spacing-md);
}

.facility-content p {
    font-size: 1.6rem;
    line-height: 1.7;
    color: var(--color-gray);
    margin-bottom: var(--spacing-lg);
}

.facility-features {
    list-style: none;
    padding: 0;
}

.facility-features li {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 1.5rem;
    color: var(--color-gray);
    margin-bottom: var(--spacing-sm);
    padding: var(--spacing-sm) 0;
}

.facility-features li i {
    color: var(--color-primary);
    font-size: 1.6rem;
    width: 2rem;
    text-align: center;
}

/* Enhanced Machinery Section */
.machinery-section {
    background: var(--color-white);
    padding: var(--spacing-3xl) 0;
}

.machinery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-2xl);
}

.machinery-item {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-light-gray);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.machinery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    transform: scaleX(0);
    transition: var(--transition);
}

.machinery-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.machinery-item:hover::before {
    transform: scaleX(1);
}

.machinery-icon {
    width: 8rem;
    height: 8rem;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-lg);
    color: var(--color-white);
    font-size: 3.2rem;
    transition: var(--transition);
}

.machinery-item:hover .machinery-icon {
    transform: scale(1.1) rotate(5deg);
}

.machinery-item h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: var(--spacing-md);
}

.machinery-item p {
    font-size: 1.6rem;
    line-height: 1.7;
    color: var(--color-gray);
}

/* Enhanced Quality Process */
.quality-process {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-white) 100%);
    padding: var(--spacing-3xl) 0;
}

.process-flow {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
    margin-top: var(--spacing-2xl);
}

.process-step {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-light-gray);
    transition: var(--transition);
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    transform: scaleX(0);
    transition: var(--transition);
}

.process-step::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid var(--color-primary);
    opacity: 0;
    transition: var(--transition);
}

.process-step:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.process-step:hover::before {
    transform: scaleX(1);
}

.process-step:hover::after {
    opacity: 1;
}

.step-icon {
    width: 7rem;
    height: 7rem;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-lg);
    color: var(--color-white);
    font-size: 2.8rem;
    transition: var(--transition);
}

.process-step:hover .step-icon {
    transform: scale(1.1);
}

.process-step h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: var(--spacing-md);
}

.process-step p {
    font-size: 1.6rem;
    line-height: 1.7;
    color: var(--color-gray);
    margin-bottom: var(--spacing-lg);
}

.step-features {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    width: 100%;
    margin-top: auto;
}

.feature {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 1.4rem;
    color: var(--color-secondary);
    font-weight: 500;
}

.feature i {
    color: var(--color-primary);
    font-size: 1.2rem;
}

/* Enhanced Quality Standards */
.quality-standards {
    background: var(--color-white);
    padding: var(--spacing-3xl) 0;
}

.standards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-2xl);
}

.standard-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-light-gray);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.standard-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    transform: scaleX(0);
    transition: var(--transition);
}

.standard-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.standard-card:hover::before {
    transform: scaleX(1);
}

.standard-icon {
    width: 8rem;
    height: 8rem;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-lg);
    color: var(--color-white);
    font-size: 3.2rem;
    transition: var(--transition);
}

.standard-card:hover .standard-icon {
    transform: scale(1.1) rotate(5deg);
}

.standard-card h3 {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: var(--spacing-md);
}

.standard-card p {
    font-size: 1.6rem;
    line-height: 1.7;
    color: var(--color-gray);
    margin-bottom: var(--spacing-lg);
}

.standard-features {
    list-style: none;
    padding: 0;
    text-align: left;
}
.standard-features li {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 1.5rem;
    color: var(--color-gray);
    margin-bottom: var(--spacing-sm);
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid var(--color-light-gray);
}

.standard-features li i {
    color: var(--color-primary);
    font-size: 1.4rem;
    flex-shrink: 0;
}

.standard-features li:last-child {
    border-bottom: none;
}

/* Enhanced Quality Team */
.quality-team {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-white) 100%);
    padding: var(--spacing-3xl) 0;
}
.team-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-2xl);
}
.highlight-item {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-light-gray);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.highlight-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    transform: scaleX(0);
    transition: var(--transition);
}

.highlight-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.highlight-item:hover::before {
    transform: scaleX(1);
}

.highlight-icon {
    width: 8rem;
    height: 8rem;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-lg);
    color: var(--color-white);
    font-size: 3.2rem;
    transition: var(--transition);
}

.highlight-item:hover .highlight-icon {
    transform: scale(1.1) rotate(5deg);
}

.highlight-item h3 {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: var(--spacing-md);
}
    .highlight-item p {
        font-size: 1.6rem;
        line-height: 1.7;
        color: var(--color-gray);
        margin-bottom: var(--spacing-lg);
    }

    .highlight-stats {
        margin-top: var(--spacing-lg);
        padding-top: var(--spacing-lg);
        border-top: 1px solid var(--color-light-gray);
    }

    .highlight-stats .stat {
        text-align: center;
    }

    .highlight-stats .stat-number {
        display: block;
        font-size: 2.4rem;
        font-weight: 800;
        color: var(--color-primary);
        line-height: 1;
        margin-bottom: var(--spacing-xs);
    }

    .highlight-stats .stat-label {
        font-size: 1.2rem;
        color: var(--color-gray);
        text-transform: uppercase;
        letter-spacing: 0.05em;
        font-weight: 600;
    }

    /* Enhanced Milestones Section */
    .milestones {
        background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-white) 100%);
        padding: var(--spacing-3xl) 0;
    }

    .milestones-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: var(--spacing-xl);
        margin-top: var(--spacing-2xl);
    }

    .milestone-card {
        background: var(--color-white);
        border-radius: var(--radius-lg);
        padding: var(--spacing-xl);
        box-shadow: var(--shadow-md);
        border: 1px solid var(--color-light-gray);
        transition: var(--transition);
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .milestone-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
        transform: scaleX(0);
        transition: var(--transition);
    }

    .milestone-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-xl);
    }

    .milestone-card:hover::before {
        transform: scaleX(1);
    }

    .milestone-icon {
        width: 8rem;
        height: 8rem;
        background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto var(--spacing-lg);
        color: var(--color-white);
        font-size: 3.2rem;
        transition: var(--transition);
    }

    .milestone-card:hover .milestone-icon {
        transform: scale(1.1) rotate(5deg);
    }

    .milestone-card h3 {
        font-size: 2.4rem;
        font-weight: 700;
        color: var(--color-secondary);
        margin-bottom: var(--spacing-md);
    }

    .milestone-card p {
        font-size: 1.6rem;
        line-height: 1.7;
        color: var(--color-gray);
    }

    /* ===== Quality Page Specific Styles ===== */

    /* Quality Hero Section */
    .quality-hero {
        background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
        padding: var(--spacing-3xl) 0;
        position: relative;
        overflow: hidden;
        color: var(--color-white);
    }

    .quality-hero .container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-3xl);
        align-items: center;
        position: relative;
        z-index: 2;
    }

    .hero-content {
        padding: var(--spacing-xl) 0;
    }

    .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: var(--spacing-sm);
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        padding: var(--spacing-sm) var(--spacing-lg);
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, 0.2);
        margin-bottom: var(--spacing-lg);
        font-size: 1.4rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

    .hero-badge i {
        color: var(--color-primary);
        background: var(--color-white);
        border-radius: 50%;
        width: 2rem;
        height: 2rem;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1rem;
    }

    .hero-title {
        font-size: 5.6rem;
        font-weight: 800;
        margin-bottom: var(--spacing-lg);
        line-height: 1.2;
        background: linear-gradient(135deg, var(--color-white) 0%, rgba(255, 255, 255, 0.8) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .hero-subtitle {
        font-size: 2rem;
        line-height: 1.6;
        margin-bottom: var(--spacing-xl);
        opacity: 0.9;
    }

    .hero-stats {
        display: flex;
        gap: var(--spacing-xl);
        margin-top: var(--spacing-xl);
    }

    .stat-item {
        text-align: center;
    }

    .stat-number {
        display: block;
        font-size: 3.2rem;
        font-weight: 800;
        color: var(--color-primary);
        line-height: 1;
    }

    .stat-label {
        font-size: 1.4rem;
        opacity: 0.8;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

    .hero-image {
        position: relative;
        border-radius: var(--radius-xl);
        overflow: hidden;
        box-shadow: var(--shadow-xl);
    }

    .hero-image img {
        width: 100%;
        height: 400px;
        object-fit: cover;
    }

    .image-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
        padding: var(--spacing-xl);
        color: var(--color-white);
        text-align: center;
    }

    .overlay-content i {
        font-size: 3rem;
        color: var(--color-primary);
        margin-bottom: var(--spacing-sm);
    }

    .overlay-content h3 {
        font-size: 2rem;
        font-weight: 700;
    }

    .hero-bg-pattern {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                          radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
        z-index: 1;
    }

    /* Quality Commitment Section */
    .quality-commitment {
        background: var(--color-white);
        padding: var(--spacing-3xl) 0;
    }

    .commitment-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-3xl);
        align-items: center;
    }

    .commitment-content {
        padding: var(--spacing-xl);
    }

    .commitment-text .lead-text {
        font-size: 2rem;
        font-weight: 600;
        color: var(--color-secondary);
        line-height: 1.6;
        margin-bottom: var(--spacing-lg);
    }

    .commitment-text p {
        font-size: 1.8rem;
        line-height: 1.7;
        color: var(--color-gray);
        margin-bottom: var(--spacing-xl);
    }

    .commitment-features {
        display: flex;
        flex-direction: column;
        gap: var(--spacing-lg);
    }

    .feature-item {
        display: flex;
        align-items: flex-start;
        gap: var(--spacing-md);
        padding: var(--spacing-lg);
        background: var(--color-accent);
        border-radius: var(--radius-lg);
        border-left: 4px solid var(--color-primary);
        transition: var(--transition);
    }

    .feature-item:hover {
        transform: translateX(8px);
        box-shadow: var(--shadow-md);
    }

    .feature-icon {
        width: 5rem;
        height: 5rem;
        background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--color-white);
        font-size: 2rem;
        flex-shrink: 0;
    }

    .feature-content h4 {
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--color-secondary);
        margin-bottom: var(--spacing-sm);
    }

    .feature-content p {
        font-size: 1.5rem;
        color: var(--color-gray);
        line-height: 1.6;
        margin: 0;
    }

    .commitment-image {
        position: relative;
    }

    .image-card {
        border-radius: var(--radius-xl);
        overflow: hidden;
        box-shadow: var(--shadow-lg);
        position: relative;
    }

    .image-card img {
        width: 100%;
        height: 400px;
        object-fit: cover;
    }

    .card-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
        padding: var(--spacing-lg);
        color: var(--color-white);
    }

    .overlay-stats {
        display: flex;
        justify-content: space-around;
        text-align: center;
    }

    .overlay-stats .stat {
        display: flex;
        flex-direction: column;
    }

    .stat-value {
        font-size: 2.4rem;
        font-weight: 800;
        color: var(--color-primary);
        line-height: 1;
    }

    .stat-desc {
        font-size: 1.2rem;
        opacity: 0.8;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

    /* ISO Certification Section */
    .iso-certification {
        background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-white) 100%);
        padding: var(--spacing-3xl) 0;
    }

    .iso-content {
        display: grid;
        grid-template-columns: 2fr 1fr;
        gap: var(--spacing-3xl);
        margin-top: var(--spacing-2xl);
        align-items: start;
    }

    .iso-info h3 {
        font-size: 2.8rem;
        font-weight: 700;
        color: var(--color-secondary);
        margin-bottom: var(--spacing-lg);
        line-height: 1.3;
    }

    .iso-info p {
        font-size: 1.8rem;
        line-height: 1.7;
        color: var(--color-gray);
        margin-bottom: var(--spacing-xl);
    }

    .iso-intro {
        margin-bottom: var(--spacing-xl);
    }

    .iso-intro h3 {
        font-size: 2.8rem;
        font-weight: 700;
        color: var(--color-secondary);
        margin-bottom: var(--spacing-lg);
        line-height: 1.3;
    }

    .iso-intro p {
        font-size: 1.8rem;
        line-height: 1.7;
        color: var(--color-gray);
    }

    .iso-benefits {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: var(--spacing-lg);
    }

    .benefit-card {
        display: flex;
        align-items: flex-start;
        gap: var(--spacing-md);
        padding: var(--spacing-xl);
        background: var(--color-white);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        border: 1px solid var(--color-light-gray);
        transition: var(--transition);
        position: relative;
        overflow: hidden;
    }

    .benefit-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
        transform: scaleX(0);
        transition: var(--transition);
    }

    .benefit-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-xl);
        border-color: var(--color-primary);
    }

    .benefit-card:hover::before {
        transform: scaleX(1);
    }

    .benefit-icon {
        width: 5rem;
        height: 5rem;
        background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--color-white);
        font-size: 2rem;
        flex-shrink: 0;
        transition: var(--transition);
    }

    .benefit-item:hover .benefit-icon {
        transform: scale(1.1);
    }

    .benefit-content h4 {
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--color-secondary);
        margin-bottom: var(--spacing-sm);
    }

    .benefit-content p {
        font-size: 1.5rem;
        color: var(--color-gray);
        line-height: 1.6;
    }

    /* ISO Certificate Card */
    .iso-certificate {
        position: sticky;
        top: var(--spacing-xl);
    }

    .certificate-card {
        background: var(--color-white);
        border-radius: var(--radius-lg);
        padding: var(--spacing-xl);
        box-shadow: var(--shadow-lg);
        border: 1px solid var(--color-light-gray);
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .certificate-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
        transform: scaleX(0);
        transition: var(--transition);
    }

    .certificate-card:hover::before {
        transform: scaleX(1);
    }

    .certificate-header {
        margin-bottom: var(--spacing-lg);
        text-align: center;
    }

    .cert-icon {
        width: 8rem;
        height: 8rem;
        background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto var(--spacing-md);
        color: var(--color-white);
        font-size: 3.2rem;
        transition: var(--transition);
    }

    .certificate-header h3 {
        font-size: 2.4rem;
        font-weight: 700;
        color: var(--color-secondary);
        margin-bottom: var(--spacing-sm);
    }

    .cert-subtitle {
        font-size: 1.4rem;
        color: var(--color-gray);
        text-transform: uppercase;
        letter-spacing: 0.05em;
        font-weight: 600;
    }

    .certificate-body {
        margin-bottom: var(--spacing-lg);
    }

    .cert-detail {
        display: flex;
        align-items: flex-start;
        gap: var(--spacing-sm);
        margin-bottom: var(--spacing-md);
        padding: var(--spacing-sm) 0;
    }

    .cert-detail i {
        color: var(--color-primary);
        font-size: 1.6rem;
        margin-top: 0.2rem;
        flex-shrink: 0;
    }

    .cert-detail div {
        font-size: 1.5rem;
        color: var(--color-gray);
        line-height: 1.5;
    }

    .cert-detail div strong {
        color: var(--color-secondary);
        font-weight: 600;
    }

    .certificate-footer {
        margin-top: var(--spacing-lg);
        text-align: center;
    }

    .cert-validity {
        margin-top: var(--spacing-sm);
    }

    .cert-validity small {
        color: var(--color-gray);
        font-size: 1.2rem;
    }

    .cert-status {
        background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
        color: var(--color-white);
        padding: var(--spacing-sm) var(--spacing-lg);
        border-radius: var(--radius-sm);
        font-size: 1.4rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

    /* Enhanced Quality Process Section */
    .quality-process {
        background: var(--color-white);
        padding: var(--spacing-3xl) 0;
        position: relative;
    }

    .quality-process .section-header {
        text-align: center;
        margin-bottom: var(--spacing-3xl);
    }

    .quality-process .process-flow {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: var(--spacing-xl);
        margin-top: var(--spacing-2xl);
    }
    .quality-process .process-step {
        background: var(--color-white);
        border-radius: var(--radius-lg);
        padding: var(--spacing-xl);
        box-shadow: var(--shadow-md);
        border: 1px solid var(--color-light-gray);
        transition: var(--transition);
        text-align: center;
        position: relative;
        overflow: hidden;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .step-number {
        position: absolute;
        top: var(--spacing-md);
        right: var(--spacing-md);
        width: 3rem;
        height: 3rem;
        background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--color-white);
        font-size: 1.4rem;
        font-weight: 700;
        z-index: 2;
    }

    .quality-process .process-step::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
        transform: scaleX(0);
        transition: var(--transition);
    }

    .quality-process .process-step:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-xl);
    }

    .quality-process .process-step:hover::before {
        transform: scaleX(1);
    }
    .quality-process .step-icon {
        width: 8rem;
        height: 8rem;
        background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto var(--spacing-lg);
        color: var(--color-white);
        font-size: 3.2rem;
        transition: var(--transition);
        flex-shrink: 0;
    }

    .quality-process .process-step:hover .step-icon {
        transform: scale(1.1);
    }

    .quality-process .process-step h3 {
        font-size: 2.2rem;
        font-weight: 700;
        color: var(--color-secondary);
        margin-bottom: var(--spacing-md);
        flex-shrink: 0;
    }

    .quality-process .process-step p {
        font-size: 1.6rem;
        line-height: 1.7;
        color: var(--color-gray);
        flex-grow: 1;
        margin-bottom: var(--spacing-lg);
    }
    .step-features {
        display: flex;
        flex-wrap: wrap;
        gap: var(--spacing-sm);
        justify-content: center;
    }
    .feature-tag {
        background: var(--color-accent);
        color: var(--color-secondary);
        padding: var(--spacing-xs) var(--spacing-sm);
        border-radius: var(--radius-sm);
        font-size: 1.2rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        border: 1px solid var(--color-light-gray);
    }
    /* Enhanced Quality Team Section */
    .quality-team {
        background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-white) 100%);
        padding: var(--spacing-3xl) 0;
        position: relative;
    }

    .quality-team .section-header {
        text-align: center;
        margin-bottom: var(--spacing-3xl);
    }

    .quality-team .team-highlights {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: var(--spacing-xl);
        margin-top: var(--spacing-2xl);
    }

    .quality-team .team-highlights .highlight-item {
        background: var(--color-white);
        border-radius: var(--radius-lg);
        padding: var(--spacing-xl);
        box-shadow: var(--shadow-md);
        border: 1px solid var(--color-light-gray);
        transition: var(--transition);
        text-align: center;
        position: relative;
        overflow: hidden;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .quality-team .team-highlights .highlight-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
        transform: scaleX(0);
        transition: var(--transition);
    }
    .quality-team .team-highlights .highlight-icon {
        width: 8rem;
        height: 8rem;
        background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto var(--spacing-lg);
        color: var(--color-white);
        font-size: 3.2rem;
        transition: var(--transition);
        flex-shrink: 0;
    }

    .quality-team .team-highlights .highlight-item:hover .highlight-icon {
        transform: scale(1.1) rotate(5deg);
    }

    .quality-team .team-highlights .highlight-item h3 {
        font-size: 2.4rem;
        font-weight: 700;
        color: var(--color-secondary);
        margin-bottom: var(--spacing-md);
        flex-shrink: 0;
    }

    .quality-team .team-highlights .highlight-item p {
        font-size: 1.6rem;
        line-height: 1.7;
        color: var(--color-gray);
        flex-grow: 1;
    }

/* Responsive Design for Enhanced Sections */
@media (max-width: 1024px) {
    .vision-content,
    .mission-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
        max-width: 800px;
    }
    
    .vision-text,
    .mission-text {
        max-width: 100%;
        text-align: center;
    }
    
    .vision-pillars {
        grid-template-columns: repeat(3, 1fr);
        max-width: 900px;
    }
    
    .mission-objectives {
        grid-template-columns: repeat(2, 1fr);
        max-width: 900px;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 900px;
    }
    
    .team-grid,
    .facilities-grid,
    .machinery-grid,
    .process-flow,
    .standards-grid,
    .team-highlights,
    .milestones-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .quality-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }
    
    .iso-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }
    
    .iso-benefits {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .quality-process .process-flow {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .quality-team .team-highlights {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .vision-content,
    .mission-content {
        max-width: 100%;
        gap: var(--spacing-xl);
    }
    
    .vision-pillars {
        grid-template-columns: 1fr;
        max-width: 100%;
        gap: var(--spacing-lg);
    }
    
    .mission-objectives {
        grid-template-columns: 1fr;
        max-width: 100%;
        gap: var(--spacing-lg);
    }
    
    .pillar,
    .objective {
        padding: var(--spacing-lg);
    }
    
    .pillar-icon {
        width: 6rem;
        height: 6rem;
        font-size: 2.4rem;
    }
    
    .objective-icon {
        width: 5rem;
        height: 5rem;
        font-size: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
        gap: var(--spacing-lg);
    }
    
    .team-grid,
    .facilities-grid,
    .machinery-grid,
    .process-flow,
    .standards-grid,
    .team-highlights,
    .milestones-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .iso-benefits {
        grid-template-columns: 1fr;
    }
    
    .quality-process .process-flow {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .quality-team .team-highlights {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .quality-policy h3 {
        font-size: 2.4rem;
        padding-left: var(--spacing-md);
    }
    
    .quality-policy p {
        font-size: 1.6rem;
    }
    
    .iso-info h3 {
        font-size: 2.4rem;
    }
    
    .iso-info p {
        font-size: 1.6rem;
    }
    
    .vision-statement h3,
    .mission-statement h3 {
        font-size: 2.4rem;
        padding-left: var(--spacing-md);
    }
    
    .vision-statement p,
    .mission-statement p {
        font-size: 1.6rem;
    }
    
    .team-image {
        height: 200px;
    }
    
    .facility-image {
        height: 150px;
    }
}

@media (max-width: 480px) {
    .vision-content,
    .mission-content {
        gap: var(--spacing-lg);
    }
    
    .vision-statement h3,
    .mission-statement h3 {
        font-size: 2.2rem;
        padding-left: var(--spacing-md);
    }
    
    .vision-statement p,
    .mission-statement p {
        font-size: 1.6rem;
    }
    
    .vision-pillars,
    .mission-objectives {
        gap: var(--spacing-md);
    }
    
    .pillar,
    .objective {
        padding: var(--spacing-md);
    }
    
    .pillar-icon {
        width: 5rem;
        height: 5rem;
        font-size: 2rem;
        margin-bottom: var(--spacing-md);
    }
    
    .objective-icon {
        width: 4rem;
        height: 4rem;
        font-size: 1.8rem;
    }
    
    .pillar h4,
    .objective-content h4 {
        font-size: 1.8rem;
    }
    
    .pillar p,
    .objective-content p {
        font-size: 1.4rem;
    }
    .value-icon,
    .machinery-icon,
    .step-icon,
    .standard-icon,
    .highlight-icon,
    .milestone-icon,
    .benefit-icon {
        width: 6rem;
        height: 6rem;
        font-size: 2.4rem;
    }
}



/* Standardized Section Container */
.section-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

/* Section Wrapper with consistent spacing */
.section-wrapper {
    padding: 8rem 0;
    width: 100%;
    position: relative;
}

/* Unified Section Header */
.section-header-wrapper {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.section-header-wrapper .section-title {
    font-size: 3.6rem;
    font-weight: 700;
    color: var(--color-secondary);
    text-transform: uppercase;
    margin-bottom: 2.5rem;
    position: relative;
    display: inline-block;
}

.section-header-wrapper .section-title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 6rem;
    height: 0.3rem;
    background-color: var(--color-primary);
    transition: var(--transition);
}

.section-header-wrapper .section-subtitle {
    font-size: 1.8rem;
    color: var(--color-gray);
    max-width: 70%;
    margin: 0 auto;
    line-height: 1.6;
}

/* Update responsive styles */
@media (max-width: 768px) {
    .section-header-wrapper .section-subtitle {
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    .section-header-wrapper .section-title {
        font-size: 3rem;
    }
    .section-header-wrapper .section-subtitle {
        max-width: 100%;
        font-size: 1.6rem;
    }
}

/* ===== Gallery Styles ===== */

/* Gallery Categories */
.gallery-categories {
    padding: var(--spacing-3xl) 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-2xl);
}

.category-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--color-light-gray);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--color-primary);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    transition: var(--transition);
}

.category-card:hover .category-icon {
    transform: scale(1.1);
}

.category-icon i {
    font-size: 2.4rem;
    color: var(--color-white);
}

.category-card h3 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: var(--spacing-sm);
}

.category-card p {
    color: var(--color-gray);
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
}

/* Gallery Section */
.gallery-section {
    padding: var(--spacing-3xl) 0;
}

.gallery-section.alt-bg {
    background-color: var(--color-accent);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-2xl);
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(228, 30, 38, 0.9), rgba(30, 58, 138, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: var(--color-white);
    padding: var(--spacing-md);
}

.overlay-content h4 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.overlay-content p {
    font-size: 1.4rem;
    opacity: 0.9;
}



/* Responsive Gallery */
@media (max-width: 1024px) {
    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }
    
    .gallery-categories-preview {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 2.5rem;
    }
    
    .markets__grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    
    .gallery-categories-preview {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .markets__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .category-card {
        padding: 2rem;
    }
    
    .category-preview-content {
        padding: 2rem;
    }
    
    .market-card__content {
        padding: 2rem 1.5rem;
    }
    
    .market-card__overlay h3 {
        font-size: 2.2rem;
    }
    
    .market-card__overlay ul li {
        font-size: 1.4rem;
    }
    
    .category-preview-content h3 {
        font-size: 2rem;
    }
    
    .category-preview-content p {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item img {
        height: 200px;
    }
    
    .category-preview-image {
        height: 200px;
    }
    
    .market-card__image {
        height: 25rem;
    }
    
    .market-card__content {
        padding: 1.5rem 1rem;
    }
    
    .market-card__overlay h3 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .market-card__overlay ul li {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }
    
    .category-preview-content {
        padding: 1.5rem;
    }
    
    .category-preview-content h3 {
        font-size: 1.8rem;
    }
    
    .category-preview-content p {
        font-size: 1.3rem;
    }
}

/* ===== Enhanced Gallery Styles ===== */
.gallery-categories {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-white) 100%);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.category-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(228, 30, 38, 0.1), transparent);
    transition: left 0.6s ease;
}

.category-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: var(--color-primary);
}

.category-card:hover::before {
    left: 100%;
}
.category-icon {
    width: 8rem;
    height: 8rem;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
}

.category-card:hover .category-icon {
    transform: rotateY(180deg) scale(1.1);
    box-shadow: 0 10px 30px rgba(228, 30, 38, 0.3);
}

.category-icon i {
    font-size: 3rem;
    color: var(--color-white);
    transition: all 0.4s ease;
}

.category-card h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
}

.category-card:hover h3 {
    color: var(--color-primary);
}

.category-card p {
    font-size: 1.6rem;
    color: var(--color-gray);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.category-card .btn {
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.gallery-section {
    padding: 8rem 0;
    position: relative;
}
.gallery-section.alt-bg {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-blue-light) 100%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    aspect-ratio: 4/3;
    background: var(--color-white);
}

.gallery-item:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.9);
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: brightness(1.1);
}
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(228, 30, 38, 0.9) 0%, 
        rgba(30, 58, 138, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(0.8);
}
.gallery-item:hover .gallery-overlay {
    opacity: 1;
    transform: scale(1);
}

.overlay-content {
    text-align: center;
    color: var(--color-white);
    padding: 2rem;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.gallery-item:hover .overlay-content {
    transform: translateY(0);
}

.overlay-content h4 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.overlay-content p {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    line-height: 1.5;
}

.overlay-content i {
    font-size: 2.4rem;
    opacity: 0.8;
    animation: pulse 2s infinite;
}
/* Enhanced animations for gallery items */
.gallery-item[data-aos="zoom-in"] {
    transform: scale(0.8);
    opacity: 0;
}
.gallery-item[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
    opacity: 1;
}
/* Special styling for quality section images to ensure full visibility */
#quality .gallery-item {
    aspect-ratio: auto;
    min-height: 350px;
    background: var(--color-white);
    border: 2px solid var(--color-light-gray);
    transition: all 0.4s ease;
}

#quality .gallery-item:hover {
    border-color: var(--color-primary);
    box-shadow: 0 20px 40px rgba(228, 30, 38, 0.15);
}

#quality .gallery-item img {
    object-fit: contain;
    background: var(--color-white);
    padding: 2rem;
    max-height: 100%;
    width: 100%;
    transition: all 0.4s ease;
}

#quality .gallery-item:hover img {
    transform: scale(1.05);
    filter: brightness(1.05);
}

/* Enhanced quality section layout */
#quality .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 4rem;
}

#quality .gallery-overlay {
    background: linear-gradient(135deg, 
        rgba(228, 30, 38, 0.95) 0%, 
        rgba(30, 58, 138, 0.95) 100%);
    backdrop-filter: blur(5px);
}

#quality .overlay-content {
    padding: 3rem;
}

#quality .overlay-content h4 {
    font-size: 2.6rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
}

#quality .overlay-content p {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

#quality .overlay-content i {
    font-size: 3rem;
    opacity: 0.9;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2.5rem;
    }
    
    #quality .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 3rem;
    }
    
    .category-card {
        padding: 2.5rem 1.5rem;
    }
    
    .category-icon {
        width: 7rem;
        height: 7rem;
    }
    
    .category-icon i {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    #quality .gallery-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    #quality .gallery-item {
        min-height: 300px;
    }
    
    #quality .overlay-content {
        padding: 2rem;
    }
    
    #quality .overlay-content h4 {
        font-size: 2.2rem;
    }
    
    #quality .overlay-content p {
        font-size: 1.6rem;
    }
    
    .gallery-item {
        aspect-ratio: 3/2;
    }
    
    .category-card {
        padding: 2rem 1.5rem;
    }
    
    .category-card h3 {
        font-size: 2rem;
    }
    
    .overlay-content h4 {
        font-size: 2rem;
    }
    
    .overlay-content p {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .gallery-categories {
        padding: 6rem 0;
    }
    
    .gallery-section {
        padding: 6rem 0;
    }
    
    .categories-grid {
        gap: 1.5rem;
    }
    
    .gallery-grid {
        gap: 1.5rem;
    }
    
    .category-card {
        padding: 1.5rem 1rem;
    }
    
    .category-icon {
        width: 6rem;
        height: 6rem;
        margin-bottom: 1.5rem;
    }
    
    .category-icon i {
        font-size: 2rem;
    }
    
    .category-card h3 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .category-card p {
        font-size: 1.4rem;
        margin-bottom: 2rem;
    }
    
    .overlay-content {
        padding: 1.5rem;
    }
    
    .overlay-content h4 {
        font-size: 1.8rem;
    }
    
    .overlay-content p {
        font-size: 1.3rem;
    }
}

/* Enhanced hover effects for better user experience */
.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(228, 30, 38, 0.1) 0%, 
        rgba(30, 58, 138, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.gallery-item:hover::before {
    opacity: 1;
}

/* Loading animation for images */
.gallery-item img {
    transition: opacity 0.3s ease;
}

.gallery-item img[loading] {
    opacity: 0;
}

.gallery-item img[loaded] {
    opacity: 1;
}

/* Enhanced category card animations */
.category-card {
    animation: fadeInUp 0.6s ease forwards;
}

.category-card:nth-child(1) { animation-delay: 0.1s; }
.category-card:nth-child(2) { animation-delay: 0.2s; }
.category-card:nth-child(3) { animation-delay: 0.3s; }
.category-card:nth-child(4) { animation-delay: 0.4s; }
.category-card:nth-child(5) { animation-delay: 0.5s; }
.category-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced pulse animation for search icon */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

/* Callback Form Section */
.callback-form-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 6rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.callback-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.callback-form-header h2 {
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 1rem;
}

.callback-form-header p {
    font-size: 1.6rem;
    color: var(--color-gray);
    margin-bottom: 3rem;
}

.callback-form {
    background: var(--color-white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.callback-form .form-row {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.callback-form .form-group {
    flex: 1;
}

.callback-form input {
    width: 100%;
    padding: 1.5rem 2rem;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1.6rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.callback-form input:focus {
    outline: none;
    border-color: var(--color-primary);
    background: var(--color-white);
    box-shadow: 0 0 0 4px rgba(228, 30, 38, 0.1);
}

.callback-form input::placeholder {
    color: #6c757d;
}

.btn-submit {
    width: 100%;
    padding: 1.5rem 3rem;
    background: linear-gradient(45deg, var(--color-primary), var(--color-primary-light));
    color: var(--color-white);
    border: none;
    border-radius: 12px;
    font-size: 1.6rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(228, 30, 38, 0.3);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(228, 30, 38, 0.4);
}

.btn-submit i {
    font-size: 1.8rem;
}

/* Responsive Callback Form */
@media screen and (max-width: 768px) {
    .callback-form-section {
        padding: 4rem 0;
    }
    
    .callback-form-header h2 {
        font-size: 2.8rem;
    }
    
    .callback-form-header p {
        font-size: 1.4rem;
    }
    
    .callback-form {
        padding: 2.5rem;
        margin: 0 1rem;
    }
    
    .callback-form .form-row {
        flex-direction: column;
        gap: 1.5rem;
    }
}

@media screen and (max-width: 480px) {
    .callback-form-header h2 {
        font-size: 2.4rem;
    }
    
    .callback-form-header p {
        font-size: 1.3rem;
    }
    
    .callback-form {
        padding: 2rem;
    }
    
    .callback-form input {
        padding: 1.2rem 1.5rem;
        font-size: 1.4rem;
    }
    
    .btn-submit {
        padding: 1.2rem 2rem;
        font-size: 1.4rem;
    }
}

/* Callback Modal Styles */
.callback-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.callback-modal.active {
    display: flex;
}

.callback-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    animation: modalFadeIn 0.3s ease-out;
}

.callback-modal-content {
    position: relative;
    background: white;
    border-radius: 20px;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
    overflow: hidden;
}

.callback-modal-header {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    color: white;
    padding: 2rem 2rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.callback-modal-header h3 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 600;
}

.callback-modal-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.callback-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.callback-modal-body {
    padding: 2rem;
}

.callback-modal-body p {
    margin: 0 0 1.5rem;
    color: #666;
    font-size: 1.1rem;
    line-height: 1.5;
}

.callback-modal-form .form-group {
    margin-bottom: 1.5rem;
}

.callback-modal-form input {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.callback-modal-form input:focus {
    outline: none;
    border-color: var(--color-primary);
    background: white;
    box-shadow: 0 0 0 3px rgba(228, 30, 38, 0.1);
}

.btn-submit-modal {
    width: 100%;
    padding: 1.2rem 2rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-submit-modal:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(228, 30, 38, 0.3);
}

.btn-submit-modal:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Responsive Modal */
@media (max-width: 768px) {
    .callback-modal {
        padding: 1rem;
    }
    
    .callback-modal-content {
        max-width: 100%;
    }
    
    .callback-modal-header {
        padding: 1.5rem 1.5rem 1rem;
    }
    
    .callback-modal-header h3 {
        font-size: 1.5rem;
    }
    
    .callback-modal-body {
        padding: 1.5rem;
    }
    
    .callback-modal-form input {
        padding: 0.8rem 1.2rem;
        font-size: 0.95rem;
    }
    
    .btn-submit-modal {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}

/* ===== Export Benefits ===== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.benefit-item {
    background: var(--color-white);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    transform: scaleX(0);
    transition: var(--transition);
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.benefit-item:hover::before {
    transform: scaleX(1);
}
.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: var(--transition);
}

.benefit-icon i {
    font-size: 3.2rem;
    color: var(--color-white);
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.1);
}

.benefit-item h3 {
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 1.5rem;
}

.benefit-item p {
    font-size: 1.6rem;
    color: var(--color-gray);
    line-height: 1.6;
}

/* ===== Export Content ===== */
.export-content h3 {
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 2rem;
}

.export-content p {
    font-size: 1.8rem;
    color: var(--color-gray);
    line-height: 1.7;
    margin-bottom: 3rem;
}

.export-highlights {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.export-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.export-image img {
    width: 100%;
    height: auto;
    transition: var(--transition);
}

.export-image:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .benefit-item {
        padding: 2rem;
    }
    
    .benefit-icon {
        width: 60px;
        height: 60px;
    }
    
    .benefit-icon i {
        font-size: 2.4rem;
    }
    
    .export-content h3 {
        font-size: 2.4rem;
    }
    
    .export-content p {
        font-size: 1.6rem;
    }
}
/* ===== Product Detail Section Styles ===== */
.product-detail-section {
    padding: 6rem 0;
    background-color: var(--color-white);
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.product-detail-content {
    padding-right: 2rem;
}
.product-detail-sidebar {
    position: sticky;
    top: 2rem;
}

.product-intro {
    margin-bottom: 4rem;
}

.product-intro h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 2rem;
    line-height: 1.3;
}

.product-intro p {
    font-size: 1.7rem;
    line-height: 1.7;
    color: var(--color-gray);
    margin-bottom: 2rem;
}

.product-solutions h3 {
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--color-secondary);
    margin-bottom: 3rem;
    text-align: center;
}
.solution-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}
.solution-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 2rem;
    background: var(--color-white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 1px solid rgba(228, 30, 38, 0.1);
}
.solution-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

/* Alternating layout for solution items */
.solution-item:nth-child(even) .solution-image {
    order: 2;
}

.solution-item:nth-child(even) .solution-content {
    order: 1;
}

.solution-item:nth-child(odd) .solution-image {
    order: 1;
}

.solution-item:nth-child(odd) .solution-content {
    order: 2;
}

.solution-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.solution-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--transition);
}

.solution-item:hover .solution-image img {
    transform: scale(1.05);
}

.solution-content {
    padding: 1rem 0;
}

.solution-content h4 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.solution-content p {
    font-size: 1.6rem;
    line-height: 1.7;
    color: var(--color-gray);
    margin-bottom: 2rem;
}

.solution-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.feature-tag {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(45deg, var(--color-primary), var(--color-primary-light));
    color: var(--color-white);
    font-size: 1.3rem;
    font-weight: 600;
    border-radius: 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Contact Form Card */
.contact-form-card {
    background: var(--color-white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
    border: 1px solid rgba(228, 30, 38, 0.1);
}

.contact-form-card h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 2rem;
    text-align: center;
}

.contact-form .form-group {
    margin-bottom: 2rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1.2rem 1.5rem;
    border: 2px solid var(--color-light-gray);
    border-radius: 8px;
    font-size: 1.5rem;
    transition: var(--transition);
    background: var(--color-white);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(228, 30, 38, 0.1);
}

.phone-input {
    display: flex;
    gap: 1rem;
}

.country-code {
    width: 120px;
    padding: 1.2rem 1rem;
    border: 2px solid var(--color-light-gray);
    border-radius: 8px;
    font-size: 1.4rem;
    background: var(--color-white);
}

.phone-input input {
    flex: 1;
}

.btn--full {
    width: 100%;
    padding: 1.5rem;
    font-size: 1.6rem;
    font-weight: 600;
}

/* Services Card */
.services-card {
    background: var(--color-white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
    border: 1px solid rgba(228, 30, 38, 0.1);
}

.services-card h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 2rem;
    text-align: center;
}

.services-list {
    list-style: none;
}

.services-list li {
    margin-bottom: 1rem;
}

.services-list a {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    color: var(--color-gray);
    font-size: 1.5rem;
    font-weight: 500;
    border-radius: 8px;
    transition: var(--transition);
    text-decoration: none;
}

.services-list a::before {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--color-primary);
    margin-right: 1rem;
    font-size: 1.2rem;
}

.services-list a:hover {
    background: rgba(228, 30, 38, 0.1);
    color: var(--color-primary);
    transform: translateX(5px);
}

/* Social Card */
.social-card {
    background: var(--color-white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(228, 30, 38, 0.1);
}

.social-card h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 2rem;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 5rem;
    height: 5rem;
    background: linear-gradient(45deg, var(--color-primary), var(--color-primary-light));
    color: var(--color-white);
    border-radius: 50%;
    font-size: 1.8rem;
    transition: var(--transition);
    text-decoration: none;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(228, 30, 38, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .product-detail-content {
        padding-right: 0;
    }
    
    .product-detail-sidebar {
        position: static;
    }
    
    .solution-item {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .solution-item:nth-child(even) .solution-image,
    .solution-item:nth-child(even) .solution-content,
    .solution-item:nth-child(odd) .solution-image,
    .solution-item:nth-child(odd) .solution-content {
        order: unset;
    }
    
    .solution-image img {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .product-detail-section {
        padding: 4rem 0;
    }
    
    .product-intro h2 {
        font-size: 2.4rem;
    }
    
    .product-solutions h3 {
        font-size: 2rem;
    }
    
    .solution-item {
        padding: 1.5rem;
    }
    
    .solution-content h4 {
        font-size: 1.8rem;
    }
    
    .solution-content p {
        font-size: 1.5rem;
    }
    
    .solution-image img {
        height: 200px;
    }
    
    .contact-form-card,
    .services-card,
    .social-card {
        padding: 2rem;
    }
    
    .phone-input {
        flex-direction: column;
    }
    
    .country-code {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .solution-features {
        flex-direction: column;
    }
    
    .feature-tag {
        text-align: center;
    }
    
    .social-links {
        flex-wrap: wrap;
    }
}

/* ===== Testimonials Section ===== */
.testimonials {
    background: linear-gradient(135deg, var(--color-accent) 0%, #f1f5f9 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.testimonial-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -1rem;
    left: 2rem;
    font-size: 8rem;
    color: var(--color-primary);
    opacity: 0.1;
    font-family: serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.testimonial-rating {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.testimonial-rating i {
    color: #fbbf24;
    font-size: 1.6rem;
}

.testimonial-text {
    font-size: 1.6rem;
    line-height: 1.7;
    color: var(--color-gray);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.author-info h4 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--color-secondary);
    margin-bottom: 0.5rem;
}

.author-info span {
    font-size: 1.4rem;
    color: var(--color-gray);
}

.testimonials-cta {
    text-align: center;
}

/* ===== Services Overview Section ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

/* Single row services grid */
.services-grid-single-row {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

@media (max-width: 1200px) {
    .services-grid-single-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .services-grid-single-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.service-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--color-light-gray);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--color-primary);
}

.service-icon {
    width: 6rem;
    height: 6rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-icon i {
    font-size: 2.4rem;
    color: var(--color-white);
}

.service-card h3 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
}

.service-card p {
    font-size: 1.5rem;
    line-height: 1.6;
    color: var(--color-gray);
    margin-bottom: 2rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.4rem;
    color: var(--color-gray);
    margin-bottom: 0.8rem;
}

.service-features i {
    color: var(--color-primary);
    font-size: 1.2rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 1.4rem;
    text-decoration: none;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--color-primary-dark);
    gap: 1rem;
}

.services-cta {
    text-align: center;
}

/* ===== Why Choose Us Section ===== */
.why-choose-us {
    background: linear-gradient(135deg, var(--color-accent) 0%, #f1f5f9 100%);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.advantage-item {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 3rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.advantage-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(228, 30, 38, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
    opacity: 0;
    transition: var(--transition);
}

.advantage-item:hover::before {
    opacity: 1;
}

.advantage-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.advantage-icon {
    width: 8rem;
    height: 8rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.advantage-item:hover .advantage-icon {
    transform: scale(1.1) rotate(5deg);
}

.advantage-icon i {
    font-size: 3rem;
    color: var(--color-white);
}

.advantage-item h3 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.advantage-item p {
    font-size: 1.5rem;
    line-height: 1.6;
    color: var(--color-gray);
    position: relative;
    z-index: 1;
}

/* ===== Enhanced CTA Section ===== */
.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}
.btn-whatsapp {
    background: #25d366;
    border-color: #25d366;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
}

.btn-whatsapp:hover {
    background: #128c7e;
    border-color: #128c7e;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

/* ===== Testimonials Page Styles ===== */
.testimonials-overview {
    background: linear-gradient(135deg, var(--color-accent) 0%, #f1f5f9 100%);
}

.testimonials-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.stat-card {
    background: var(--color-white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stat-card .stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.stat-card .stat-label {
    font-size: 1.4rem;
    color: var(--color-gray);
    font-weight: 500;
}
.testimonial-card.featured {
    border: 2px solid var(--color-primary);
    position: relative;
}

.testimonial-card.featured::before {
    content: 'Featured';
    position: absolute;
    top: -1rem;
    right: 2rem;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-md);
    font-size: 1.2rem;
    font-weight: 600;
}

.company-logo {
    margin-top: 1rem;
}

.company-logo img {
    height: 4rem;
    width: auto;
    object-fit: contain;
}

/* Industry Tabs */
.industry-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}
.tab-btn {
    padding: 1rem 2rem;
    border: 2px solid var(--color-primary);
    background: transparent;
    color: var(--color-primary);
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}
.tab-btn.active,
.tab-btn:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.industry-panel {
    display: none;
}

.industry-panel.active {
    display: block;
}
/* Scroll Indicator */
.scroll-indicator-new {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: white;
    z-index: 4;
    animation: fadeInUp 1s ease-out 1.4s both;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid white;
    border-radius: 12px;
    position: relative;
}
.scroll-wheel {
    width: 4px;
    height: 8px;
    background: white;
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0%, 20% { transform: translateX(-50%) translateY(0); opacity: 1; }
    100% { transform: translateX(-50%) translateY(12px); opacity: 0; }
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== Gallery Carousel Styles ===== */
.gallery-carousel-section {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 3rem 0 2rem 0;
}

.gallery-carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.gallery-carousel {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.gallery-item {
    height: 400px;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.gallery-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    cursor: pointer;
}

.gallery-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(227, 30, 38, 0.8), rgba(196, 30, 58, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-image-container img {
    transform: scale(1.1);
}

.gallery-content {
    text-align: center;
    color: white;
    padding: 2rem;
}

.gallery-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.gallery-category {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.gallery-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: white;
    color: #e31e26;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.gallery-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

/* Navigation */
.gallery-nav-next,
.gallery-nav-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e31e26;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 10;
}

.gallery-nav-next:hover,
.gallery-nav-prev:hover {
    background: #e31e26;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.gallery-nav-next {
    right: -25px;
}

.gallery-nav-prev {
    left: -25px;
}

/* Pagination */
.gallery-pagination {
    position: relative;
    margin-top: 2rem;
    text-align: center;
}

.gallery-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #ccc;
    opacity: 1;
    margin: 0 6px;
    transition: all 0.3s ease;
}

.gallery-pagination .swiper-pagination-bullet-active {
    background: #e31e26;
    transform: scale(1.2);
}

/* CTA Button */
.gallery-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content-new {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-title-new {
        font-size: 3rem;
    }
    
    .machine-container {
        max-width: 400px;
    }
    
    .floating-stats-new {
        position: static;
        transform: none;
        justify-content: center;
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-banner-new {
        min-height: 80vh;
    }
    
    .hero-title-new {
        font-size: 2.5rem;
    }
    
    .hero-subtitle-new {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary-new,
    .btn-outline-new {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .floating-stats-new {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .stat-item-new {
        flex: 1;
        min-width: 120px;
    }
    
    .gallery-nav-next,
    .gallery-nav-prev {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .gallery-nav-next {
        right: -20px;
    }
    
    .gallery-nav-prev {
        left: -20px;
    }
}

@media (max-width: 480px) {
    .hero-container {
        padding: 0 1rem;
    }
    
    .hero-title-new {
        font-size: 2rem;
    }
    
    .hero-content-new {
        gap: 2rem;
    }
    
    .gallery-item {
        height: 300px;
    }
    
    .gallery-carousel-container {
        padding: 0 1rem;
    }
}

/* ===== NEW HERO BANNER STYLES ===== */

/* Banner Container */
.banner-container {
    height: 90vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #050d1f;
    overflow: hidden;
}

.banner-container picture,
.banner-container .hero-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Dark Overlay */
.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 25, 47, 0.7);
    z-index: 1;
}

/* Banner Content */
.banner-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 0 2rem;
    color: white;
    margin-left: 10%;
    margin-right: auto;
}

/* Sub-headline */
.sub-headline {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    opacity: 0.9;
    color: #E63946;
    text-shadow: 
        1px 1px 2px rgba(0,0,0,0.8),
        2px 2px 4px rgba(230,57,70,0.3),
        0 0 10px rgba(230,57,70,0.2);
    transform: perspective(200px) rotateX(3deg);
    animation: subHeadlinePulse 2s ease-in-out infinite alternate;
}

@keyframes subHeadlinePulse {
    0% {
        text-shadow: 
            1px 1px 2px rgba(0,0,0,0.8),
            2px 2px 4px rgba(230,57,70,0.3),
            0 0 10px rgba(230,57,70,0.2);
    }
    100% {
        text-shadow: 
            1px 1px 2px rgba(0,0,0,0.8),
            2px 2px 4px rgba(230,57,70,0.5),
            0 0 15px rgba(230,57,70,0.4),
            0 0 25px rgba(230,57,70,0.2);
    }
}

/* Main Headline */
.main-headline {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 
        2px 2px 0px #000,
        4px 4px 8px rgba(0,0,0,0.5),
        6px 6px 12px rgba(0,0,0,0.3),
        8px 8px 16px rgba(0,0,0,0.2),
        0 0 20px rgba(255,255,255,0.1);
    transform: perspective(500px) rotateX(5deg);
    animation: textGlow 3s ease-in-out infinite alternate;
}

@keyframes textGlow {
    0% {
        text-shadow: 
            2px 2px 0px #000,
            4px 4px 8px rgba(0,0,0,0.5),
            6px 6px 12px rgba(0,0,0,0.3),
            8px 8px 16px rgba(0,0,0,0.2),
            0 0 20px rgba(255,255,255,0.1);
    }
    100% {
        text-shadow: 
            2px 2px 0px #000,
            4px 4px 8px rgba(0,0,0,0.5),
            6px 6px 12px rgba(0,0,0,0.3),
            8px 8px 16px rgba(0,0,0,0.2),
            0 0 30px rgba(255,255,255,0.2),
            0 0 40px rgba(230,57,70,0.3);
    }
}

/* Description */
.description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    color: white;
    max-width: 500px;
    text-shadow: 
        1px 1px 2px rgba(0,0,0,0.7),
        2px 2px 4px rgba(0,0,0,0.5);
    transform: perspective(300px) rotateX(2deg);
}

/* Button Group */
.button-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

/* CTA Buttons */
.cta-button {
    display: inline-block;
    padding: 18px 35px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    box-shadow: 
        0 8px 16px rgba(0,0,0,0.3),
        0 4px 8px rgba(0,0,0,0.2),
        inset 0 1px 0 rgba(255,255,255,0.2);
    border: 2px solid transparent;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.cta-button:hover::before {
    transform: translateX(100%);
}

.cta-button.primary {
    background: linear-gradient(135deg, #E63946 0%, #D62828 50%, #B91C1C 100%);
    color: white;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    border-image: linear-gradient(45deg, #E63946, #D62828, #B91C1C) 1;
}

.cta-button.primary:hover {
    transform: translateY(-8px) rotateX(10deg) rotateY(5deg);
    box-shadow: 
        0 20px 40px rgba(230,57,70,0.4),
        0 15px 25px rgba(0,0,0,0.3),
        0 5px 10px rgba(0,0,0,0.2),
        inset 0 1px 0 rgba(255,255,255,0.3);
    background: linear-gradient(135deg, #FF4757 0%, #E63946 50%, #D62828 100%);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.cta-button.secondary {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #e9ecef 100%);
    color: #1D3557;
    text-shadow: 1px 1px 2px rgba(255,255,255,0.8);
    border: 2px solid rgba(29,53,87,0.2);
}

.cta-button.secondary:hover {
    transform: translateY(-8px) rotateX(10deg) rotateY(-5deg);
    box-shadow: 
        0 20px 40px rgba(29,53,87,0.3),
        0 15px 25px rgba(0,0,0,0.2),
        0 5px 10px rgba(0,0,0,0.1),
        inset 0 1px 0 rgba(255,255,255,0.8);
    background: linear-gradient(135deg, #ffffff 0%, #f1f3f4 50%, #e8eaed 100%);
    color: #0F172A;
    text-shadow: 1px 1px 2px rgba(255,255,255,0.9);
    border-color: rgba(29,53,87,0.3);
}

/* Button Press Effect */
.cta-button:active {
    transform: translateY(-2px) rotateX(5deg);
    transition: all 0.1s ease;
}

/* Trust Signals */
.trust-signals {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.trust-signals span {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.8;
    color: white;
    position: relative;
    padding-left: 1rem;
}

.trust-signals span:before {
    content: "?";
    position: absolute;
    left: 0;
    color: #E63946;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    .banner-container {
        height: 80vh;
        padding: 0 1rem;
    }
    
    .banner-content {
        padding: 0 1rem;
        max-width: 100%;
        margin-left: 5%;
        margin-right: auto;
    }
    
    .main-headline {
        font-size: 36px;
        margin-bottom: 1rem;
    }
    
    .description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .button-group {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .cta-button {
        padding: 12px 24px;
        font-size: 0.9rem;
        text-align: center;
    }
    
    .trust-signals {
        gap: 1rem;
        flex-direction: column;
    }
    
    .trust-signals span {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .banner-container {
        height: 75vh;
    }
    
    .main-headline {
        font-size: 28px;
    }
    
    .sub-headline {
        font-size: 0.85rem;
    }
    
    .description {
        font-size: 0.9rem;
    }
    
    .cta-button {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}
/* ===== MOBILE HERO SECTION ===== */

@media screen and (max-width: 768px) {
    .luxe-hero {
        min-height: 100vh;
        width: 100%;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        background-attachment: scroll;
        padding-top: 70px;
        padding-bottom: 40px;
    }
    
    /* Mobile Banner Container Fixes */
    .banner-container {
        height: 100vh;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        padding-top: 70px;
    }
    
    /* Enhanced Banner Overlay for Better Text Visibility */
    .banner-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, 
            rgba(0, 0, 0, 0.7) 0%, 
            rgba(0, 0, 0, 0.5) 50%, 
            rgba(0, 0, 0, 0.8) 100%);
        z-index: 1;
    }
    
    /* Mobile Banner Content */
    .banner-content {
        position: relative;
        z-index: 2;
        max-width: 90%;
        padding: 0 20px;
        color: white;
        text-align: center;
        margin: 0 auto;
    }
    
    /* Mobile Sub-headline */
    .sub-headline {
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 2px;
        text-transform: uppercase;
        margin-bottom: 15px;
        color: rgba(255, 255, 255, 0.9);
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
        background: rgba(0, 0, 0, 0.3);
        padding: 8px 16px;
        border-radius: 20px;
        display: inline-block;
        backdrop-filter: blur(10px);
    }
    
    /* Mobile Main Headline */
    .main-headline {
        font-size: clamp(2.5rem, 8vw, 3.5rem);
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 20px;
        color: white;
        text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.9);
        background: rgba(0, 0, 0, 0.4);
        padding: 20px;
        border-radius: 15px;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    /* Mobile Description */
    .description {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 30px;
        color: rgba(255, 255, 255, 0.95);
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
        background: rgba(0, 0, 0, 0.3);
        padding: 15px 20px;
        border-radius: 10px;
        backdrop-filter: blur(10px);
    }
    
    /* Mobile Button Group */
    .button-group {
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: center;
        margin-bottom: 30px;
    }
    
    /* Mobile CTA Buttons */
    .cta-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 15px 30px;
        border-radius: 50px;
        font-weight: 600;
        font-size: 16px;
        text-decoration: none;
        transition: all 0.3s ease;
        min-width: 200px;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }
    
    .cta-button.primary {
        background: linear-gradient(135deg, #e31e26, #c41e3a);
        color: white;
        border: 2px solid rgba(255, 255, 255, 0.2);
    }
    
    .cta-button.primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(227, 30, 38, 0.4);
        background: linear-gradient(135deg, #c41e3a, #a0171f);
    }
    
    .cta-button.secondary {
        background: rgba(255, 255, 255, 0.1);
        color: white;
        border: 2px solid rgba(255, 255, 255, 0.3);
        backdrop-filter: blur(10px);
    }
    
    .cta-button.secondary:hover {
        background: rgba(255, 255, 255, 0.2);
        border-color: rgba(255, 255, 255, 0.5);
        transform: translateY(-2px);
    }
    
    /* Mobile Trust Signals */
    .trust-signals {
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    
    .trust-signals span {
        background: rgba(0, 0, 0, 0.4);
        color: rgba(255, 255, 255, 0.9);
        padding: 8px 16px;
        border-radius: 20px;
        font-size: 14px;
        font-weight: 500;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .luxe-hero__content {
        text-align: center;
        padding: 0 20px;
        max-width: 100%;
    }
    
    .luxe-hero__title {
        font-size: clamp(2.5rem, 8vw, 3.5rem);
        line-height: 1.2;
        margin-bottom: 20px;
        font-weight: 700;
    }
    
    .luxe-hero__subtext {
        font-size: clamp(1.1rem, 4vw, 1.3rem);
        margin-bottom: 30px;
        line-height: 1.5;
        opacity: 0.9;
    }
    
    .luxe-hero__ctas {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        padding: 15px 25px;
        font-size: 16px;
        font-weight: 600;
        border-radius: 50px;
        text-align: center;
        transition: all 0.3s ease;
    }
    
    .btn--primary {
        background: linear-gradient(135deg, #e31e26, #c41e3a);
        color: white;
        box-shadow: 0 4px 15px rgba(227, 30, 38, 0.3);
    }
    
    .btn--primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(227, 30, 38, 0.4);
    }
    
    .btn--ghost {
        background: rgba(255, 255, 255, 0.1);
        color: white;
        border: 2px solid rgba(255, 255, 255, 0.3);
        backdrop-filter: blur(10px);
    }
    
    .luxe-hero__trust {
        flex-direction: column;
        gap: 10px;
        margin-top: 30px;
    }
    
    .glass-pill {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        padding: 8px 16px;
        border-radius: 20px;
        font-size: 14px;
        font-weight: 500;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
}

/* ===== Recent Work Carousel Section Enhancements ===== */
.recent-work.section-wrapper {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f8fafc 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.recent-work.section-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(227, 30, 38, 0.03) 0%, transparent 70%);
    animation: rotateBackground 30s linear infinite;
    pointer-events: none;
}

@keyframes rotateBackground {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.recent-work .section-header-wrapper {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 1;
}

.recent-work .section-title {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #1e293b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.recent-work .section-title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #e31e26, transparent);
    border-radius: 2px;
}

.recent-work .section-subtitle {
    font-size: 1.8rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 400;
}

.recent-work .carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.recent-work .carousel-navigation {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}


/* ===== Gallery Filter Buttons Styling ===== */
.gallery-filter {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    font-size: 1.6rem;
    font-weight: 600;
    color: #475569;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-transform: capitalize;
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(227, 30, 38, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.filter-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(227, 30, 38, 0.2);
    border-color: #e31e26;
    color: #e31e26;
}

.filter-btn:hover::before {
    width: 300px;
    height: 300px;
}

.filter-btn.active {
    background: linear-gradient(135deg, #e31e26 0%, #c11119 100%);
    border-color: #c11119;
    color: #ffffff;
    box-shadow: 0 6px 25px rgba(227, 30, 38, 0.3);
    transform: translateY(-2px);
}

.filter-btn.active::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
    font-size: 1.4rem;
    font-weight: bold;
}

.filter-btn:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .gallery-filter {
        gap: 1rem;
    }
    
    .filter-btn {
        padding: 1rem 2rem;
        font-size: 1.4rem;
    }
}

/* ===== Product Pages Showcase Cards Enhanced Styling ===== */
.modern-product-showcase {
    padding: 4rem 0;
}

.showcase-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.showcase-header {
    text-align: center;
    margin-bottom: 4rem;
}

.showcase-title {
    font-size: 3.6rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.showcase-subtitle {
    font-size: 1.8rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.showcase-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid #e2e8f0;
}

.showcase-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(227, 30, 38, 0.15);
    border-color: #e31e26;
}

.showcase-image-container {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    cursor: pointer;
}

.showcase-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.1));
}

.showcase-card:hover .showcase-image {
    transform: scale(1.08);
    filter: drop-shadow(0 8px 25px rgba(227, 30, 38, 0.2));
}

.showcase-image-container::before {
    content: '🔍';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    background: rgba(227, 30, 38, 0.9);
    color: white;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 2;
}

.showcase-card:hover .showcase-image-container::before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.showcase-image-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.showcase-card:hover .showcase-image-container::after {
    opacity: 1;
}

.showcase-content {
    padding: 2.5rem;
}

.showcase-card-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
}

.showcase-card:hover .showcase-card-title {
    color: #e31e26;
}

.showcase-description {
    font-size: 1.5rem;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.showcase-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.showcase-feature-badge {
    padding: 0.6rem 1.4rem;
    background: #f1f5f9;
    color: #475569;
    border-radius: 20px;
    font-size: 1.3rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.showcase-feature-badge.green {
    background: #d1fae5;
    color: #059669;
}

.showcase-feature-badge.blue {
    background: #dbeafe;
    color: #2563eb;
}
.showcase-feature-badge.orange {
    background: #fed7aa;
    color: #ea580c;
}

.showcase-card:hover .showcase-feature-badge {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.showcase-cta {
    margin-top: auto;
}

.showcase-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.4rem 2.8rem;
    background: linear-gradient(135deg, #e31e26 0%, #c11119 100%);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: 1.5rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(227, 30, 38, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    overflow: hidden;
}

.showcase-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.showcase-btn:hover::before {
    width: 300px;
    height: 300px;
}

.showcase-btn:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 30px rgba(227, 30, 38, 0.4);
    background: linear-gradient(135deg, #ff2936 0%, #e31e26 100%);
}

.showcase-btn i {
    transition: transform 0.3s ease;
}

.showcase-btn:hover i {
    transform: translateX(5px);
}

.showcase-btn:active {
    transform: translateX(2px);
}

@media (max-width: 768px) {
    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .showcase-title {
        font-size: 2.8rem;
    }
    
    .showcase-subtitle {
        font-size: 1.6rem;
    }
    
    .showcase-image-container {
        height: 220px;
        padding: 1rem;
    }
    
    .showcase-content {
        padding: 2rem;
    }
    
    .showcase-card-title {
        font-size: 2rem;
    }
    
    .showcase-description {
        font-size: 1.4rem;
    }
}

/* ===== MOBILE SECTIONS ===== */

@media screen and (max-width: 768px) {
    .section-wrapper {
        padding: 50px 0;
        overflow-x: hidden;
    }
    
    .section-container {
        padding: 0 15px;
        max-width: 100%;
        width: 100%;
    }
    
    .section-title {
        font-size: clamp(2rem, 6vw, 2.8rem);
        margin-bottom: 15px;
        line-height: 1.3;
        text-align: center;
        padding: 0 10px;
    }
    
    .section-subtitle {
        font-size: clamp(1rem, 4vw, 1.3rem);
        margin-bottom: 30px;
        line-height: 1.6;
        text-align: center;
        padding: 0 10px;
    }
    
    /* Ensure proper spacing for all sections */
    .section-header-wrapper {
        margin-bottom: 40px;
        padding: 0 10px;
    }
    
    /* Fix any overflow issues */
    * {
        max-width: 100%;
        box-sizing: border-box;
    }
    
    /* Ensure images don't cause horizontal scroll */
    img {
        max-width: 100%;
        height: auto;
    }
    
    /* Fix any container overflow */
    .container {
        padding: 0 15px;
        max-width: 100%;
    }
}

/* ===== MOBILE ABOUT SECTION ===== */

@media screen and (max-width: 768px) {
    .about__inner {
        flex-direction: column;
        gap: 40px;
    }
    
    .about__image {
        order: 2;
        width: 100%;
    }
    
    .about__image img {
        width: 100%;
        height: auto;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    .about__content {
        order: 1;
        text-align: center;
    }
    
    .about__content p {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 30px;
    }
    
    .about-highlights {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .highlight-item {
        display: flex;
        align-items: center;
        gap: 15px;
        padding: 20px;
        background: rgba(248, 250, 252, 0.8);
        border-radius: 15px;
        border: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .highlight-icon {
        flex-shrink: 0;
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, #e31e26, #c41e3a);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 20px;
    }
    
    .highlight-content h4 {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 5px;
        color: var(--color-black);
    }
    
    .highlight-content p {
        font-size: 14px;
        color: var(--color-gray);
        margin: 0;
    }
}

/* ===== MOBILE QUALITY CONTROL SECTION ===== */

@media screen and (max-width: 768px) {
    .quality-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .quality-item {
        text-align: center;
        padding: 25px 20px;
        background: rgba(255, 255, 255, 0.8);
        border-radius: 15px;
        border: 1px solid rgba(0, 0, 0, 0.05);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }
    
    .quality-icon {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, #e31e26, #c41e3a);
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
        color: white;
        font-size: 24px;
    }
    
    .quality-item h3 {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 15px;
        color: var(--color-black);
    }
    
    .quality-item p {
        font-size: 14px;
        line-height: 1.6;
        color: var(--color-gray);
    }
}

/* ===== MOBILE STATS SECTION ===== */

@media screen and (max-width: 768px) {
    .stats__grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 0 10px;
        max-width: 100%;
        overflow: visible;
        margin: 0 auto;
        width: 100%;
        box-sizing: border-box;
    }
    
    .stat-item {
        text-align: center;
        padding: 20px 10px;
        background: rgba(255, 255, 255, 0.95);
        border-radius: 12px;
        border: 1px solid rgba(0, 0, 0, 0.05);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
        min-height: 110px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: relative;
        overflow: visible;
        width: 100%;
        box-sizing: border-box;
    }
    
    .stat-item:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    }
    
    .stat-item__number {
        font-size: 2.4rem;
        font-weight: 700;
        color: var(--color-primary);
        margin-bottom: 5px;
        line-height: 1;
        display: inline-block;
    }
    
    .stat-item__plus,
    .stat-item__percent {
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--color-primary);
        display: inline;
        margin-left: 2px;
    }
    
    .stat-item__label {
        font-size: 12px;
        font-weight: 600;
        color: var(--color-gray);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        line-height: 1.2;
        margin-top: 8px;
        text-align: center;
        word-break: keep-all;
        white-space: nowrap;
    }
    
    /* Ensure all stats fit properly on mobile */
    .stats__grid .stat-item:nth-child(3),
    .stats__grid .stat-item:nth-child(4) {
        margin-top: 0;
    }
    
    /* Special styling for satisfaction and retention boxes */
    .stat-item:nth-child(3) .stat-item__label,
    .stat-item:nth-child(4) .stat-item__label {
        font-size: 11px;
        letter-spacing: 0.3px;
        line-height: 1.1;
        padding: 0 5px;
    }
    
    /* Ensure container doesn't clip content */
    .stats {
        overflow: visible;
        padding: 40px 0;
    }
    
    .stats .section-container {
        overflow: visible;
        padding: 0 15px;
    }
}
/* ===== MOBILE PORTFOLIO SECTION ===== */

@media screen and (max-width: 768px) {
    .portfolio-carousel {
        margin: 0 -10px;
    }
    
    /* Mobile 3D Carousel Styles */
    .carousel-container {
        padding: 0 10px;
        margin: 0 auto;
    }
    
    .carousel-3d {
        height: 300px;
        perspective: 800px;
        position: relative;
        overflow: visible;
    }
    
    .carousel-slide {
        position: absolute;
        width: 280px;
        height: 200px;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%) translateZ(-100px) scale(0.8);
        transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        opacity: 0.6;
        z-index: 1;
    }
    
    .carousel-slide.active {
        opacity: 1;
        z-index: 3;
        transform: translate(-50%, -50%) translateZ(0) scale(1);
    }
    
    .carousel-slide.prev {
        transform: translate(-50%, -50%) translateX(-120px) translateZ(-150px) rotateY(25deg) scale(0.8);
        z-index: 2;
    }
    
    .carousel-slide.next {
        transform: translate(-50%, -50%) translateX(120px) translateZ(-150px) rotateY(-25deg) scale(0.8);
        z-index: 2;
    }
    
    .carousel-slide-inner {
        width: 100%;
        height: 100%;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .carousel-slide-inner:hover {
        transform: scale(1.02);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    }
    
    .carousel-slide-inner img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }
    
    .carousel-slide-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
        color: white;
        padding: 20px 15px 15px;
        transform: translateY(100%);
        transition: transform 0.3s ease;
    }
    
    .carousel-slide:hover .carousel-slide-overlay {
        transform: translateY(0);
    }
    
    .carousel-slide-overlay h4 {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 5px;
    }
    
    .carousel-slide-overlay p {
        font-size: 12px;
        opacity: 0.9;
        line-height: 1.4;
    }
    
    /* Mobile Carousel Navigation */
    .carousel-navigation {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-top: 30px;
    }
    
    .carousel-nav {
        width: 50px;
        height: 50px;
        background: rgba(255, 255, 255, 0.9);
        border: 2px solid var(--color-primary);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
    
    .carousel-nav:hover {
        background: var(--color-primary);
        color: white;
        transform: scale(1.1);
        box-shadow: 0 6px 20px rgba(227, 30, 38, 0.3);
    }
    
    .carousel-nav i {
        font-size: 18px;
        color: var(--color-primary);
        transition: color 0.3s ease;
    }
    
    .carousel-nav:hover i {
        color: white;
    }
    
    /* Mobile Carousel CTA */
    .carousel-cta {
        text-align: center;
        margin-top: 40px;
    }
    
    .carousel-cta .btn {
        background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
        color: white;
        padding: 15px 30px;
        border-radius: 50px;
        font-weight: 600;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(227, 30, 38, 0.3);
    }
    
    .carousel-cta .btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(227, 30, 38, 0.4);
    }
    
    .portfolio-item {
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    .portfolio-item img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }
    
    .portfolio-item__overlay {
        padding: 20px;
        background: rgba(0, 0, 0, 0.8);
        backdrop-filter: blur(10px);
    }
    
    .portfolio-item__title {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 8px;
        color: white;
    }
    
    .portfolio-item__category {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.8);
        margin-bottom: 15px;
    }
    
    .portfolio-item__link {
        width: 40px;
        height: 40px;
        background: var(--color-primary);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 16px;
        transition: all 0.3s ease;
    }
    
    .portfolio-item__link:hover {
        background: var(--color-primary-dark);
        transform: scale(1.1);
    }
    
    .swiper-pagination {
        bottom: 10px;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }
}

/* ===== MOBILE GALLERY PREVIEW SECTION ===== */

@media screen and (max-width: 768px) {
    .gallery-categories-preview {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }
    
    .category-preview-card {
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        background: white;
    }
    
    .category-preview-image {
        height: 180px;
        position: relative;
        overflow: hidden;
    }
    
    .category-preview-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }
    
    .category-preview-card:hover .category-preview-image img {
        transform: scale(1.05);
    }
    
    .category-preview-content {
        padding: 25px 20px;
    }
    
    .category-preview-content h3 {
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 10px;
        color: var(--color-black);
    }
    
    .category-preview-content p {
        font-size: 14px;
        line-height: 1.6;
        color: var(--color-gray);
        margin-bottom: 20px;
    }
    
    .category-action-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: var(--color-primary);
        font-weight: 600;
        font-size: 14px;
        text-decoration: none;
        transition: all 0.3s ease;
    }
    
    .category-action-btn:hover {
        color: var(--color-primary-dark);
        transform: translateX(5px);
    }
}

/* ===== MOBILE CLIENTS SECTION ===== */

@media screen and (max-width: 768px) {
    .clients-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .client-logo-wrapper {
        padding: 20px 15px;
        height: 80px;
        background: white;
        border-radius: 12px;
        border: 1px solid rgba(0, 0, 0, 0.05);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }
    
    .client-logo-wrapper:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }
    
    .client-logo-wrapper img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        filter: grayscale(100%);
        transition: filter 0.3s ease;
    }
    
    .client-logo-wrapper:hover img {
        filter: grayscale(0%);
    }
}

/* ===== MOBILE TESTIMONIALS SECTION ===== */

@media screen and (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .testimonial-card {
        padding: 25px 20px;
        background: white;
        border-radius: 15px;
        border: 1px solid rgba(0, 0, 0, 0.05);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }
    
    .testimonial-rating {
        margin-bottom: 15px;
    }
    
    .testimonial-rating i {
        color: #ffc107;
        font-size: 16px;
        margin-right: 2px;
    }
    
    .testimonial-text {
        font-size: 15px;
        line-height: 1.6;
        color: var(--color-gray);
        margin-bottom: 20px;
        font-style: italic;
    }
    
    .testimonial-author h4 {
        font-size: 16px;
        font-weight: 600;
        color: var(--color-black);
        margin-bottom: 5px;
    }
    
    .testimonial-author span {
        font-size: 14px;
        color: var(--color-gray);
    }
}
/* ===== MOBILE SERVICES SECTION ===== */

@media screen and (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .service-card {
        padding: 25px 20px;
        background: white;
        border-radius: 15px;
        border: 1px solid rgba(0, 0, 0, 0.05);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        text-align: center;
        transition: all 0.3s ease;
    }
    
    .service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, #e31e26, #c41e3a);
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
        color: white;
        font-size: 24px;
    }
    
    .service-card h3 {
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 15px;
        color: var(--color-black);
    }
    
    .service-card p {
        font-size: 14px;
        line-height: 1.6;
        color: var(--color-gray);
        margin-bottom: 20px;
    }
    
    .service-features {
        list-style: none;
        margin-bottom: 20px;
    }
    
    .service-features li {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 14px;
        color: var(--color-gray);
        margin-bottom: 8px;
    }
    
    .service-features i {
        color: var(--color-primary);
        font-size: 12px;
    }
    
    .service-link {
        color: var(--color-primary);
        font-weight: 600;
        font-size: 14px;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 5px;
        transition: all 0.3s ease;
    }
    
    .service-link:hover {
        color: var(--color-primary-dark);
        transform: translateX(5px);
    }
}

/* ===== MOBILE WHY CHOOSE US SECTION ===== */

@media screen and (max-width: 768px) {
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .advantage-item {
        padding: 25px 20px;
        background: white;
        border-radius: 15px;
        border: 1px solid rgba(0, 0, 0, 0.05);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        text-align: center;
        transition: all 0.3s ease;
    }
    
    .advantage-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    }
    
    .advantage-icon {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, #e31e26, #c41e3a);
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
        color: white;
        font-size: 24px;
    }
    
    .advantage-item h3 {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 15px;
        color: var(--color-black);
    }
    
    .advantage-item p {
        font-size: 14px;
        line-height: 1.6;
        color: var(--color-gray);
    }
}

/* ===== MOBILE CTA SECTION ===== */

@media screen and (max-width: 768px) {
    .cta__inner {
        padding: 40px 20px;
        text-align: center;
        background: linear-gradient(135deg, #e31e26, #c41e3a);
        border-radius: 20px;
        margin: 0 20px;
    }
    
    .cta__title {
        font-size: clamp(2rem, 6vw, 2.8rem);
        color: white;
        margin-bottom: 20px;
        font-weight: 700;
    }
    
    .cta__inner p {
        font-size: 16px;
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 30px;
        line-height: 1.6;
    }
    
    .cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .btn-whatsapp {
        background: #25d366;
        color: white;
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 15px 25px;
        border-radius: 50px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    }
    
    .btn-whatsapp:hover {
        background: #20ba5a;
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    }
    
    .btn--secondary {
        background: rgba(255, 255, 255, 0.1);
        color: white;
        border: 2px solid rgba(255, 255, 255, 0.3);
        backdrop-filter: blur(10px);
        padding: 15px 25px;
        border-radius: 50px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
    }
    
    .btn--secondary:hover {
        background: rgba(255, 255, 255, 0.2);
        border-color: rgba(255, 255, 255, 0.5);
        transform: translateY(-2px);
    }
}

/* ===== MOBILE FOOTER ===== */

@media screen and (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
        background: var(--color-black);
        color: white;
    }
    
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer__logo img {
        height: 40px;
        width: auto;
        margin-bottom: 20px;
    }
    
    .footer__column p {
        font-size: 14px;
        line-height: 1.6;
        color: rgba(255, 255, 255, 0.8);
        margin-bottom: 20px;
    }
    
    .footer__heading {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 20px;
        color: white;
    }
    
    .footer__links {
        list-style: none;
    }
    
    .footer__links li {
        margin-bottom: 10px;
    }
    
    .footer__links a {
        color: rgba(255, 255, 255, 0.8);
        font-size: 14px;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    
    .footer__links a:hover {
        color: var(--color-primary);
    }
    
    .footer__contact {
        list-style: none;
    }
    
    .footer__contact li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        margin-bottom: 15px;
        font-size: 14px;
        color: rgba(255, 255, 255, 0.8);
        line-height: 1.5;
    }
    
    .footer__contact i {
        color: var(--color-primary);
        font-size: 16px;
        margin-top: 2px;
        flex-shrink: 0;
    }
    
    .footer__social {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-top: 20px;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 18px;
        text-decoration: none;
        transition: all 0.3s ease;
    }
    
    .social-icon:hover {
        background: var(--color-primary);
        transform: translateY(-2px);
    }
    
    .footer__bottom {
        text-align: center;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: 30px;
    }
    
    .footer__bottom p {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.6);
        margin: 0;
    }
}

/* ===== MOBILE FLOATING ELEMENTS ===== */

@media screen and (max-width: 768px) {
    .floating-buttons {
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 1000;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    
    .floating-whatsapp-btn {
        width: 60px;
        height: 60px;
        background: #25d366;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 24px;
        text-decoration: none;
        box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
        transition: all 0.3s ease;
        animation: pulse 2s infinite;
    }
    
    .floating-whatsapp-btn:hover {
        background: #20ba5a;
        transform: scale(1.1);
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    }
    
    
    @keyframes pulse {
        0% {
            box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
        }
        70% {
            box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
        }
        100% {
            box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
        }
    }
}
/* ===== MOBILE POPUP MODAL ===== */

@media screen and (max-width: 768px) {
    .popup-contact {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(5px);
        z-index: 2000;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .popup-contact.active {
        opacity: 1;
        visibility: visible;
    }
    
    .popup-contact__inner {
        background: white;
        border-radius: 20px;
        width: 100%;
        max-width: 400px;
        max-height: 90vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        transform: scale(0.9);
        transition: transform 0.3s ease;
    }
    
    .popup-contact.active .popup-contact__inner {
        transform: scale(1);
    }
    
    .popup-contact__header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 20px 25px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .popup-contact__header h3 {
        font-size: 20px;
        font-weight: 600;
        color: var(--color-black);
        margin: 0;
    }
    
    .popup-contact__close {
        width: 30px;
        height: 30px;
        background: rgba(0, 0, 0, 0.1);
        border: none;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--color-gray);
        font-size: 16px;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .popup-contact__close:hover {
        background: var(--color-primary);
        color: white;
    }
    
    .popup-contact__form {
        padding: 25px;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 15px;
        border: 2px solid rgba(0, 0, 0, 0.1);
        border-radius: 10px;
        font-size: 16px;
        font-family: inherit;
        transition: border-color 0.3s ease;
        background: white;
    }
    
    .form-group input:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: var(--color-primary);
    }
    
    .form-group textarea {
        resize: vertical;
        min-height: 100px;
    }
}

/* ===== MOBILE CALLBACK MODAL ===== */

@media screen and (max-width: 768px) {
    .callback-modal {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(5px);
        z-index: 2000;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .callback-modal.active {
        opacity: 1;
        visibility: visible;
    }
    
    .callback-modal-content {
        background: white;
        border-radius: 20px;
        width: 100%;
        max-width: 400px;
        max-height: 90vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        transform: scale(0.9);
        transition: transform 0.3s ease;
    }
    
    .callback-modal.active .callback-modal-content {
        transform: scale(1);
    }
    
    .callback-modal-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 20px 25px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .callback-modal-header h3 {
        font-size: 20px;
        font-weight: 600;
        color: var(--color-black);
        margin: 0;
    }
    
    .callback-modal-close {
        width: 30px;
        height: 30px;
        background: rgba(0, 0, 0, 0.1);
        border: none;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--color-gray);
        font-size: 16px;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .callback-modal-close:hover {
        background: var(--color-primary);
        color: white;
    }
    
    .callback-modal-body {
        padding: 25px;
    }
    
    .callback-modal-body p {
        font-size: 16px;
        color: var(--color-gray);
        margin-bottom: 25px;
        line-height: 1.6;
    }
    
    .btn-submit-modal {
        width: 100%;
        background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
        color: white;
        border: none;
        padding: 15px 25px;
        border-radius: 50px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }
    
    .btn-submit-modal:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(227, 30, 38, 0.4);
    }
}

/* ===== MOBILE PERFORMANCE OPTIMIZATIONS ===== */

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Optimize images for mobile */
@media screen and (max-width: 768px) {
    img {
        max-width: 100%;
        height: auto;
    }
    
    /* Ensure images don't overflow containers */
    .portfolio-item img,
    .category-preview-image img,
    .about__image img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }
}

/* Touch-friendly button sizes */
@media screen and (max-width: 768px) {
    button,
    .btn,
    .nav__link,
    .social-icon,
    .floating-whatsapp-btn {
        min-height: 44px;
        min-width: 44px;
    }
}

/* ===== MOBILE ACCESSIBILITY ===== */

/* Focus states for mobile */
@media screen and (max-width: 768px) {
    button:focus,
    .btn:focus,
    .nav__link:focus,
    input:focus,
    textarea:focus {
        outline: 2px solid var(--color-primary);
        outline-offset: 2px;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn--primary {
        background: #000;
        color: #fff;
        border: 2px solid #fff;
    }
    
    .nav__link {
        color: #000;
    }
    
    .nav__link:hover,
    .nav__link.active {
        background: #000;
        color: #fff;
    }
}

/* ===== MOBILE SPECIFIC UTILITIES ===== */

/* Hide elements on mobile that aren't needed */
@media screen and (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }
    
    .mobile-only {
        display: block !important;
    }
}

/* Show elements only on desktop */
@media screen and (min-width: 769px) {
    .mobile-only {
        display: none !important;
    }
    
    .desktop-only {
        display: block !important;
    }
}

/* ===== MOBILE LOADING STATES ===== */

@media screen and (max-width: 768px) {
    .page-loader {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: white;
        z-index: 9999;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .loader {
        width: 40px;
        height: 40px;
        border: 3px solid #f3f3f3;
        border-top: 3px solid var(--color-primary);
        border-radius: 50%;
        animation: spin 1s linear infinite;
    }
    
    @keyframes spin {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }
}

/* ===== MOBILE SCROLL INDICATORS ===== */

@media screen and (max-width: 768px) {
    /* Custom scrollbar for webkit browsers */
    ::-webkit-scrollbar {
        width: 6px;
    }
    
    ::-webkit-scrollbar-track {
        background: #f1f1f1;
    }
    
    ::-webkit-scrollbar-thumb {
        background: var(--color-primary);
        border-radius: 3px;
    }
    
    ::-webkit-scrollbar-thumb:hover {
        background: var(--color-primary-dark);
    }
}

/* ===== MOBILE SAFE AREAS (for devices with notches) ===== */

@media screen and (max-width: 768px) {
    .header {
        padding-top: env(safe-area-inset-top);
    }
    
    .floating-buttons {
        bottom: calc(20px + env(safe-area-inset-bottom));
    }
    
    .footer {
        padding-bottom: calc(20px + env(safe-area-inset-bottom));
    }
}
/* ===== MOBILE PRINT STYLES ===== */

@media print and (max-width: 768px) {
    .header,
    .floating-buttons,
    .popup-contact,
    .callback-modal {
        display: none !important;
    }
    
    .section-wrapper {
        padding: 20px 0;
        break-inside: avoid;
    }
    
    .section-title {
        font-size: 24px;
        color: #000;
    }
    
    .btn {
        border: 1px solid #000;
        background: transparent !important;
        color: #000 !important;
    }
}

/* ===== FINAL MOBILE MENU STYLES ===== */
@media screen and (max-width: 768px) {
    main { padding-top: 70px !important; }
    .hamburger { display: flex !important; flex-direction: column !important; justify-content: center !important; align-items: center !important; width: 50px !important; height: 50px !important; background: linear-gradient(135deg, #e31e26 0%, #c11119 100%) !important; border: 2px solid rgba(255, 255, 255, 0.2) !important; border-radius: 12px !important; cursor: pointer !important; z-index: 10001 !important; position: fixed !important; right: 15px !important; top: 12px !important; padding: 12px !important; box-shadow: 0 4px 20px rgba(227, 30, 38, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1) !important; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important; backdrop-filter: blur(10px) !important; -webkit-backdrop-filter: blur(10px) !important; }
    .hamburger:hover { transform: translateY(-2px) !important; box-shadow: 0 6px 25px rgba(227, 30, 38, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2) !important; background: linear-gradient(135deg, #ff2936 0%, #e31e26 100%) !important; }
    .hamburger:active { transform: translateY(0) !important; box-shadow: 0 2px 15px rgba(227, 30, 38, 0.4) !important; }
    .hamburger span { display: block !important; width: 25px !important; height: 3px !important; background: #ffffff !important; border-radius: 2px !important; transition: all 0.3s ease !important; }
    .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px) !important; }
    .hamburger.active span:nth-child(2) { opacity: 0 !important; }
    .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px) !important; }
    .nav { display: block !important; position: fixed !important; top: 70px !important; right: 0 !important; bottom: 0 !important; width: 320px !important; max-width: 85% !important; height: auto !important; min-height: calc(100vh - 70px) !important; background: #ffffff !important; backdrop-filter: blur(20px) !important; -webkit-backdrop-filter: blur(20px) !important; transform: translateX(100%) !important; transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important; z-index: 10000 !important; overflow-y: auto !important; -webkit-overflow-scrolling: touch !important; padding: 20px 0 !important; box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15) !important; border-left: 1px solid rgba(0, 0, 0, 0.1) !important; animation: none !important; opacity: 1 !important; margin: 0 !important; }
    .nav.active { transform: translateX(0) !important; animation: none !important; }
    .nav__list { flex-direction: column !important; gap: 0 !important; margin-top: 0 !important; align-items: flex-start !important; }
    .nav__item { width: 100% !important; border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important; }
    .nav__link { display: block !important; width: 100% !important; padding: 18px 25px !important; font-size: 16px !important; font-weight: 500 !important; color: #1e293b !important; }
    .nav__link:hover, .nav__link.active { color: #e31e26 !important; background: rgba(228, 30, 38, 0.05) !important; padding-left: 30px !important; }
    .dropdown-menu { position: static !important; background: #f8fafc !important; box-shadow: none !important; border: none !important; border-top: 1px solid rgba(0,0,0,0.1) !important; max-height: 0 !important; overflow: hidden !important; opacity: 0 !important; display: block !important; transform: translateY(-10px) !important; padding: 0 !important; transition: all 0.3s ease !important; }
    .dropdown-menu.active { max-height: 500px !important; opacity: 1 !important; transform: translateY(0) !important; }
    .dropdown-menu a { padding: 12px 35px !important; font-size: 15px !important; color: #64748b !important; }
    .nav-overlay { position: fixed !important; top: 0 !important; left: 0 !important; right: 0 !important; bottom: 0 !important; background: rgba(0, 0, 0, 0.5) !important; z-index: 9999 !important; opacity: 0 !important; visibility: hidden !important; pointer-events: none !important; transition: all 0.3s ease !important; }
    .nav-overlay.active { opacity: 1 !important; visibility: visible !important; pointer-events: auto !important; }
    body.nav-open { overflow: hidden !important; }
    .header__social { display: none !important; }
}