/* ============================================
   AARCS INC - Light Theme Corporate Website
   Chemical Industry Design - Parallax Effects
   ============================================ */

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
    /* Primary Colors */
    --primary-white: #ffffff;
    --primary-light: #f0fdfa;
    --primary-gray: #f1f5f4;
    --primary-dark: #0f172a;
    
    /* Accent Colors - Chemical/Scientific */
    --accent-teal: #0f766e;
    --accent-teal-light: #14b8a6;
    --accent-teal-dark: #0d5d56;
    --accent-emerald: #059669;
    --accent-emerald-light: #34d399;
    --accent-amber: #d97706;
    --accent-amber-light: #fbbf24;
    
    /* Text Colors */
    --text-dark: #0f172a;
    --text-gray: #475569;
    --text-light: #64748b;
    --text-white: #ffffff;
    
    /* Background Variants */
    --bg-white: #ffffff;
    --bg-light: #f8fafa;
    --bg-teal-tint: #f0fdfa;
    --bg-dark-section: #042f2e;
    
    /* Borders & Shadows */
    --border-light: #e2e8f0;
    --border-teal: rgba(15, 118, 110, 0.2);
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
    --shadow-teal: 0 10px 40px rgba(15, 118, 110, 0.15);
    
    /* Gradients */
    --gradient-teal: linear-gradient(135deg, #0f766e 0%, #059669 100%);
    --gradient-amber: linear-gradient(135deg, #d97706 0%, #b45309 100%);
    --gradient-hero: linear-gradient(135deg, #f0fdfa 0%, #ccfbf1 50%, #f0fdfa 100%);
    
    /* Typography */
    --font-heading: 'DM Sans', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.loading {
    overflow: hidden;
}

body.menu-open {
    overflow: hidden;
}

::selection {
    background: var(--accent-teal);
    color: var(--text-white);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-teal);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-teal-dark);
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}

h1 { font-size: clamp(2.5rem, 5vw, 3.8rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.5rem, 3vw, 1.8rem); }
h4 { font-size: 1.4rem; }
h5 { font-size: 1.2rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-gray);
}

a {
    color: var(--accent-teal);
    text-decoration: none;
    transition: var(--transition-smooth);
}

a:hover {
    color: var(--accent-teal-dark);
}

/* ============================================
   LAYOUT
   ============================================ */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: var(--bg-teal-tint);
    border: 1px solid var(--border-teal);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--accent-teal);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-title {
    margin-bottom: 16px;
}

.section-description {
    font-size: 1.15rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   PRELOADER
   ============================================ */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
}

.preloader-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-teal);
    margin-bottom: 20px;
    animation: pulse 1.5s ease infinite;
}

.preloader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--border-light);
    border-top-color: var(--accent-teal);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

/* ============================================
   SCROLL PROGRESS BAR
   ============================================ */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--gradient-teal);
    z-index: 1001;
    width: 0%;
    transition: width 0.1s ease;
}

/* ============================================
   SKIP TO CONTENT (Accessibility)
   ============================================ */
.skip-to-content {
    position: fixed;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-teal);
    color: var(--text-white);
    padding: 12px 24px;
    border-radius: 0 0 8px 8px;
    z-index: 10000;
    transition: top 0.3s ease;
}

.skip-to-content:focus {
    top: 0;
    outline: none;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-smooth);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 15px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--accent-teal);
    letter-spacing: -0.5px;
    transition: var(--transition-smooth);
}

.logo:hover {
    color: var(--accent-teal-dark);
    transform: scale(1.02);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
}

.nav-link {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-gray);
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-teal);
    transition: var(--transition-smooth);
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-teal);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Dropdown Menu */
.has-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--bg-white);
    min-width: 220px;
    padding: 12px 0;
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-light);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    list-style: none;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: var(--text-gray);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.dropdown-menu li a:hover {
    background: var(--bg-teal-tint);
    color: var(--accent-teal);
}

.nav-cta {
    padding: 12px 28px;
    background: var(--gradient-teal);
    border-radius: 8px;
    font-weight: 600;
    color: var(--text-white) !important;
    box-shadow: 0 4px 15px rgba(15, 118, 110, 0.3);
}

.nav-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(15, 118, 110, 0.4);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
    background: none;
    border: none;
    z-index: 1001;
}

.menu-toggle span {
    width: 28px;
    height: 2px;
    background: var(--text-dark);
    transition: var(--transition-smooth);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-white);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav ul {
    list-style: none;
    text-align: center;
}

.mobile-nav ul li {
    margin-bottom: 20px;
}

.mobile-nav ul li a {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
}

.mobile-nav ul li a:hover {
    color: var(--accent-teal);
}

.mobile-nav ul li .btn {
    font-size: 1rem;
    margin-top: 20px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.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: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-teal);
    color: var(--text-white);
    box-shadow: 0 4px 20px rgba(15, 118, 110, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(15, 118, 110, 0.4);
    color: var(--text-white);
}

.btn-secondary {
    background: var(--bg-white);
    color: var(--accent-teal);
    border: 2px solid var(--accent-teal);
}

.btn-secondary:hover {
    background: var(--accent-teal);
    color: var(--text-white);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--border-light);
}

.btn-outline:hover {
    border-color: var(--accent-teal);
    color: var(--accent-teal);
    transform: translateY(-2px);
}

.btn-amber {
    background: var(--gradient-amber);
    color: var(--text-white);
    box-shadow: 0 4px 20px rgba(217, 119, 6, 0.3);
}

.btn-amber:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(217, 119, 6, 0.4);
    color: var(--text-white);
}

.btn-ghost {
    background: transparent;
    color: var(--text-white);
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-ghost:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
    color: var(--text-white);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 20px 40px;
    font-size: 1.1rem;
}

.btn svg {
    transition: var(--transition-smooth);
}

.btn:hover svg {
    transform: translateX(4px);
}

/* ============================================
   HERO SECTION - PARALLAX
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--gradient-hero);
    overflow: hidden;
}

/* Parallax Background */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/assets/images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.08;
}

/* Hexagon Pattern */
.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='49' viewBox='0 0 28 49'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%230f766e' fill-opacity='0.04'%3E%3Cpath d='M13.99 9.25l13 7.5v15l-13 7.5L1 31.75v-15l12.99-7.5zM3 17.9v12.7l10.99 6.34 11-6.35V17.9l-11-6.34L3 17.9zM0 15l12.98-7.5V0h-2v6.35L0 12.69v2.3zm0 18.5L12.98 41v8h-2v-6.85L0 35.81v-2.3zM15 0v7.5L27.99 15H28v-2.31h-.01L17 6.35V0h-2zm0 49v-8l12.99-7.5H28v2.31h-.01L17 42.15V49h-2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

/* Floating Shapes */
.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.floating-shape {
    position: absolute;
    background: var(--accent-teal);
    opacity: 0.08;
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.floating-shape:nth-child(1) {
    width: 300px;
    height: 300px;
    top: -100px;
    right: 10%;
    animation-delay: 0s;
}

.floating-shape:nth-child(2) {
    width: 200px;
    height: 200px;
    bottom: 10%;
    left: 5%;
    animation-delay: -5s;
}

.floating-shape:nth-child(3) {
    width: 150px;
    height: 150px;
    top: 40%;
    right: 5%;
    animation-delay: -10s;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
}

.hero h1 {
    margin-bottom: 28px;
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.hero h1 .highlight {
    color: var(--accent-teal);
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

/* ============================================
   CERTIFICATIONS BAR
   ============================================ */
.certifications-bar {
    padding: 40px 0;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-light);
}

.certifications-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.cert-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: var(--bg-teal-tint);
    border: 1px solid var(--border-teal);
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.cert-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.cert-item svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent-teal);
}

.cert-item span {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

/* ============================================
   ABOUT PREVIEW SECTION
   ============================================ */
.about-preview {
    background: var(--bg-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content h2 {
    margin-bottom: 24px;
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.about-content .btn {
    margin-top: 10px;
}

.about-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   PROBLEM-SOLUTION SECTION
   ============================================ */
.problems-section {
    background: var(--bg-teal-tint);
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.problem-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    transition: var(--transition-smooth);
}

.problem-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-teal);
}

.problem-card .problem {
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 2px dashed var(--border-light);
}

.problem-card .problem-label {
    display: inline-block;
    padding: 4px 12px;
    background: #fef2f2;
    color: #dc2626;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 4px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.problem-card .problem p {
    font-style: italic;
    color: var(--text-gray);
    margin: 0;
}

.problem-card .solution-label {
    display: inline-block;
    padding: 4px 12px;
    background: var(--bg-teal-tint);
    color: var(--accent-teal);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 4px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.problem-card .solution p {
    color: var(--text-dark);
    margin: 0;
    font-weight: 500;
}

/* ============================================
   FEATURED PRODUCTS
   ============================================ */
.products-section {
    background: var(--bg-white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.product-card {
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    transition: var(--transition-smooth);
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 50px 50px 0 0;
    border-color: var(--accent-teal) transparent transparent transparent;
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 3;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-teal);
}

.product-card:hover::before {
    opacity: 1;
}

.product-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-tag {
    position: absolute;
    bottom: 15px;
    left: 15px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-teal);
    z-index: 2;
    box-shadow: var(--shadow-sm);
}

.product-content {
    padding: 28px;
}

.product-icon {
    width: 55px;
    height: 55px;
    background: var(--gradient-teal);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: var(--transition-smooth);
}

.product-card:hover .product-icon {
    transform: rotate(-5deg) scale(1.05);
}

.product-icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--text-white);
}

.product-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    transition: var(--transition-smooth);
}

.product-card:hover h3 {
    color: var(--accent-teal);
}

.product-card p {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-teal);
    font-weight: 600;
}

.product-link:hover {
    gap: 14px;
}

.product-link svg {
    width: 18px;
    height: 18px;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.process-section {
    background: var(--bg-teal-tint);
    position: relative;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: var(--border-teal);
    z-index: 0;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.process-number {
    width: 80px;
    height: 80px;
    background: var(--bg-white);
    border: 3px solid var(--accent-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-teal);
    transition: var(--transition-smooth);
}

.process-step:hover .process-number {
    background: var(--accent-teal);
    color: var(--text-white);
    transform: scale(1.1);
}

.process-step h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.process-step p {
    font-size: 0.95rem;
    color: var(--text-gray);
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-section {
    background: var(--bg-white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.why-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--bg-white);
    border-radius: 16px;
    border: 1px solid var(--border-light);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-teal);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.why-card:hover::before {
    transform: scaleX(1);
}

.why-icon {
    width: 80px;
    height: 80px;
    background: var(--bg-teal-tint);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    transition: var(--transition-smooth);
}

.why-card:hover .why-icon {
    background: var(--accent-teal);
}

.why-card:hover .why-icon svg {
    stroke: var(--text-white);
}

.why-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--accent-teal);
    transition: var(--transition-smooth);
}

.why-card h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.why-card p {
    font-size: 0.95rem;
    color: var(--text-gray);
}

/* ============================================
   GLOBAL MAP SECTION - PARALLAX
   ============================================ */
.map-section {
    padding: 120px 0;
    background: var(--bg-dark-section);
    position: relative;
    overflow: hidden;
}

.map-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='49' viewBox='0 0 28 49'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%2314b8a6' fill-opacity='0.06'%3E%3Cpath d='M13.99 9.25l13 7.5v15l-13 7.5L1 31.75v-15l12.99-7.5zM3 17.9v12.7l10.99 6.34 11-6.35V17.9l-11-6.34L3 17.9zM0 15l12.98-7.5V0h-2v6.35L0 12.69v2.3zm0 18.5L12.98 41v8h-2v-6.85L0 35.81v-2.3zM15 0v7.5L27.99 15H28v-2.31h-.01L17 6.35V0h-2zm0 49v-8l12.99-7.5H28v2.31h-.01L17 42.15V49h-2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    background-attachment: fixed;
    pointer-events: none;
}

.map-section .section-header {
    position: relative;
    z-index: 2;
}

.map-section .section-subtitle {
    background: rgba(20, 184, 166, 0.2);
    border-color: rgba(20, 184, 166, 0.4);
    color: var(--accent-teal-light);
}

.map-section .section-title {
    color: var(--text-white);
}

.map-section .section-description {
    color: rgba(255, 255, 255, 0.8);
}

.map-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    z-index: 2;
}

.map-container img {
    width: 100%;
    opacity: 0.5;
    filter: brightness(1.2) hue-rotate(140deg);
}

.map-markers {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.map-marker {
    position: absolute;
    width: 16px;
    height: 16px;
    background: var(--accent-teal-light);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    box-shadow: 0 0 20px var(--accent-teal-light);
    animation: markerPulse 2s infinite;
    cursor: pointer;
}

.map-marker.hq {
    width: 24px;
    height: 24px;
    background: var(--accent-amber);
    box-shadow: 0 0 30px var(--accent-amber);
}

.map-marker::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: rgba(20, 184, 166, 0.3);
    border-radius: 50%;
    animation: markerRing 2s infinite;
}

.map-marker .tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-white);
    color: var(--text-dark);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-lg);
}

.map-marker:hover .tooltip {
    opacity: 1;
    visibility: visible;
    bottom: calc(100% + 10px);
}

/* Marker positions */
.marker-toronto { top: 28%; left: 22%; }
.marker-vancouver { top: 26%; left: 12%; }
.marker-montreal { top: 27%; left: 26%; }
.marker-newyork { top: 32%; left: 24%; }
.marker-london { top: 25%; left: 47%; }
.marker-dubai { top: 40%; left: 58%; }
.marker-singapore { top: 55%; left: 75%; }
.marker-sydney { top: 72%; left: 85%; }
.marker-brazil { top: 62%; left: 32%; }

.countries-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.country-tag {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: var(--text-white);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.country-tag:hover {
    background: rgba(20, 184, 166, 0.3);
    border-color: var(--accent-teal-light);
    transform: translateY(-3px);
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.stat-card {
    text-align: center;
    padding: 50px 30px;
    background: var(--bg-white);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-teal);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: var(--bg-teal-tint);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    transition: var(--transition-smooth);
}

.stat-card:hover .stat-icon {
    background: var(--accent-teal);
}

.stat-card:hover .stat-icon svg {
    stroke: var(--text-white);
}

.stat-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--accent-teal);
    transition: var(--transition-smooth);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent-teal);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

/* ============================================
   INDUSTRIES SECTION
   ============================================ */
.industries-section {
    background: var(--bg-teal-tint);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.industry-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid var(--border-light);
    transition: var(--transition-smooth);
}

.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-teal);
}

.industry-icon {
    width: 70px;
    height: 70px;
    background: var(--bg-teal-tint);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition-smooth);
}

.industry-card:hover .industry-icon {
    background: var(--accent-teal);
}

.industry-card:hover .industry-icon svg {
    stroke: var(--text-white);
}

.industry-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--accent-teal);
    transition: var(--transition-smooth);
}

.industry-card h4 {
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.industry-card p {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin: 0;
}

/* ============================================
   CTA SECTION - PARALLAX
   ============================================ */
.cta-section {
    padding: 120px 0;
    background: var(--bg-dark-section);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/assets/images/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.1;
}

.cta-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='49' viewBox='0 0 28 49'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%2314b8a6' fill-opacity='0.06'%3E%3Cpath d='M13.99 9.25l13 7.5v15l-13 7.5L1 31.75v-15l12.99-7.5zM3 17.9v12.7l10.99 6.34 11-6.35V17.9l-11-6.34L3 17.9z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

/* Floating Particles */
.cta-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--accent-teal-light);
    border-radius: 50%;
    opacity: 0.4;
    animation: particleFloat 15s ease-in-out infinite;
}

.particle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { top: 60%; left: 20%; animation-delay: -3s; }
.particle:nth-child(3) { top: 30%; left: 70%; animation-delay: -6s; }
.particle:nth-child(4) { top: 70%; left: 80%; animation-delay: -9s; }
.particle:nth-child(5) { top: 40%; left: 40%; animation-delay: -12s; }
.particle:nth-child(6) { top: 80%; left: 60%; animation-delay: -2s; }
.particle:nth-child(7) { top: 10%; left: 50%; animation-delay: -7s; }
.particle:nth-child(8) { top: 50%; left: 90%; animation-delay: -11s; }

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-white);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.8;
}

.cta-phone {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-amber);
    margin-bottom: 30px;
}

.cta-phone svg {
    width: 28px;
    height: 28px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ============================================
   WAVE DIVIDERS
   ============================================ */
.wave-divider {
    position: relative;
    height: 80px;
    overflow: hidden;
}

.wave-divider svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.wave-divider.top {
    transform: rotate(180deg);
}

/* ============================================
   TRUST SECTION
   ============================================ */
.trust-section {
    padding: 80px 0;
    background: var(--bg-white);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.trust-content {
    text-align: center;
}

.trust-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 40px;
}

.trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: var(--transition-smooth);
}

.trust-badge:hover {
    transform: translateY(-5px);
}

.trust-badge-icon {
    width: 70px;
    height: 70px;
    background: var(--bg-teal-tint);
    border: 2px solid var(--border-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.trust-badge:hover .trust-badge-icon {
    background: var(--accent-teal);
    border-color: var(--accent-teal);
}

.trust-badge-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--accent-teal);
    transition: var(--transition-smooth);
}

.trust-badge:hover .trust-badge-icon svg {
    stroke: var(--text-white);
}

.trust-badge span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-gray);
}

/* ============================================
   PAGE HERO (Internal Pages)
   ============================================ */
.page-hero {
    padding: 180px 0 100px;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='49' viewBox='0 0 28 49'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%230f766e' fill-opacity='0.04'%3E%3Cpath d='M13.99 9.25l13 7.5v15l-13 7.5L1 31.75v-15l12.99-7.5zM3 17.9v12.7l10.99 6.34 11-6.35V17.9l-11-6.34L3 17.9z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.breadcrumb a {
    color: var(--text-gray);
}

.breadcrumb a:hover {
    color: var(--accent-teal);
}

.breadcrumb span {
    color: var(--text-light);
}

.breadcrumb .separator {
    color: var(--text-light);
}

.page-hero h1 {
    margin-bottom: 20px;
}

.page-hero p {
    font-size: 1.25rem;
    color: var(--text-gray);
}

/* ============================================
   ABOUT PAGE SECTIONS
   ============================================ */
.glance-section {
    background: var(--bg-white);
}

.glance-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.glance-card {
    text-align: center;
    padding: 40px 20px;
    background: var(--bg-teal-tint);
    border-radius: 16px;
    border: 1px solid var(--border-teal);
}

.glance-card h4 {
    font-size: 2rem;
    color: var(--accent-teal);
    margin-bottom: 8px;
}

.glance-card p {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin: 0;
}

.story-section {
    background: var(--bg-teal-tint);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-content h2 {
    margin-bottom: 24px;
}

.story-content p {
    font-size: 1.05rem;
    margin-bottom: 20px;
}

.story-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
}

.mission-section {
    background: var(--bg-white);
}

.mission-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.mission-content h2 {
    margin-bottom: 24px;
}

.mission-content p {
    font-size: 1.2rem;
    line-height: 1.9;
}

.values-section {
    background: var(--bg-teal-tint);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.value-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid var(--border-light);
    transition: var(--transition-smooth);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-teal);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: var(--bg-teal-tint);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition-smooth);
}

.value-card:hover .value-icon {
    background: var(--accent-teal);
}

.value-card:hover .value-icon svg {
    stroke: var(--text-white);
}

.value-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--accent-teal);
    transition: var(--transition-smooth);
}

.value-card h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.value-card p {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin: 0;
}

.compliance-section {
    background: var(--bg-white);
}

.compliance-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.compliance-content h2 {
    margin-bottom: 24px;
}

.compliance-content p {
    font-size: 1.05rem;
    margin-bottom: 24px;
}

.compliance-list {
    list-style: none;
}

.compliance-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 1rem;
    color: var(--text-dark);
}

.compliance-list li svg {
    width: 20px;
    height: 20px;
    stroke: var(--accent-teal);
    flex-shrink: 0;
    margin-top: 3px;
}

.compliance-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.compliance-badge {
    padding: 20px 30px;
    background: var(--bg-teal-tint);
    border: 1px solid var(--border-teal);
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition-smooth);
}

.compliance-badge:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.compliance-badge svg {
    width: 32px;
    height: 32px;
    stroke: var(--accent-teal);
}

.compliance-badge span {
    font-weight: 600;
    color: var(--text-dark);
}

/* ============================================
   PRODUCTS PAGE
   ============================================ */
.product-filter {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    margin-bottom: 60px;
}

.filter-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
    display: block;
}

.filter-select {
    width: 100%;
    max-width: 400px;
    padding: 14px 20px;
    background: var(--bg-light);
    border: 2px solid var(--border-light);
    border-radius: 8px;
    font-size: 1rem;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.filter-select:focus {
    outline: none;
    border-color: var(--accent-teal);
}

.product-overview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.product-overview-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.product-overview-card:hover {
    border-color: var(--accent-teal);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.product-overview-card.active {
    background: var(--bg-teal-tint);
    border-color: var(--accent-teal);
}

.product-overview-card svg {
    width: 40px;
    height: 40px;
    stroke: var(--accent-teal);
}

.product-overview-card span {
    font-weight: 600;
    color: var(--text-dark);
}

/* Product Detail Sections */
.product-detail {
    padding: 80px 0;
    border-bottom: 1px solid var(--border-light);
}

.product-detail:nth-child(even) {
    background: var(--bg-teal-tint);
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.product-detail:nth-child(even) .product-detail-grid {
    direction: rtl;
}

.product-detail:nth-child(even) .product-detail-content,
.product-detail:nth-child(even) .product-detail-image {
    direction: ltr;
}

.product-detail-content h2 {
    margin-bottom: 20px;
}

.product-detail-content > p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.product-detail-content h4 {
    font-size: 1.1rem;
    margin-bottom: 16px;
    color: var(--accent-teal);
}

.product-list {
    list-style: none;
    margin-bottom: 24px;
}

.product-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px dashed var(--border-light);
    font-size: 0.95rem;
}

.product-list li:last-child {
    border-bottom: none;
}

.product-list li svg {
    width: 16px;
    height: 16px;
    stroke: var(--accent-teal);
}

.applications-text {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.product-detail-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.product-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Sticky Sidebar Nav */
.products-sidebar {
    position: sticky;
    top: 100px;
    background: var(--bg-white);
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
}

.products-sidebar h4 {
    font-size: 1rem;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.sidebar-nav {
    list-style: none;
}

.sidebar-nav li {
    margin-bottom: 8px;
}

.sidebar-nav a {
    display: block;
    padding: 10px 16px;
    color: var(--text-gray);
    font-size: 0.9rem;
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
    background: var(--bg-teal-tint);
    color: var(--accent-teal);
}

/* Downloads Section */
.downloads-section {
    background: var(--bg-teal-tint);
}

.downloads-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.download-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: var(--transition-smooth);
}

.download-card:hover {
    border-color: var(--accent-teal);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.download-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-teal-tint);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.download-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent-teal);
}

.download-info h5 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.download-info span {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section {
    background: var(--bg-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    background: var(--bg-teal-tint);
    border: 1px solid var(--border-teal);
    border-radius: 16px;
    padding: 30px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: var(--transition-smooth);
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.contact-card-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-teal);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-card-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--text-white);
}

.contact-card-content h4 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.contact-card-content a,
.contact-card-content p {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 600;
    margin: 0;
}

.contact-card-content span {
    font-size: 0.9rem;
    color: var(--text-light);
    display: block;
    margin-top: 4px;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.contact-form-wrapper h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-label .required {
    color: #dc2626;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-light);
    border: 2px solid var(--border-light);
    border-radius: 8px;
    font-size: 1rem;
    color: var(--text-dark);
    font-family: var(--font-body);
    transition: var(--transition-smooth);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--accent-teal);
    background: var(--bg-white);
    box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-light);
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

.response-note {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px;
    background: var(--bg-teal-tint);
    border-radius: 8px;
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.response-note svg {
    width: 20px;
    height: 20px;
    stroke: var(--accent-teal);
    flex-shrink: 0;
}

/* Map Section */
.map-embed-section {
    background: var(--bg-teal-tint);
}

.map-embed {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-embed iframe {
    width: 100%;
    height: 450px;
    border: none;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 80px 0 30px;
    background: var(--bg-white);
    border-top: 1px solid var(--border-light);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand .logo {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 44px;
    height: 44px;
    background: var(--bg-teal-tint);
    border: 1px solid var(--border-teal);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.social-link:hover {
    background: var(--accent-teal);
    border-color: var(--accent-teal);
    transform: translateY(-3px);
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: var(--accent-teal);
    transition: var(--transition-smooth);
}

.social-link:hover svg {
    fill: var(--text-white);
}

.footer-column h4 {
    font-size: 1.05rem;
    margin-bottom: 24px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    color: var(--text-gray);
    font-size: 0.95rem;
    position: relative;
}

.footer-links a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-teal);
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--accent-teal);
}

.footer-links a:hover::before {
    width: 100%;
}

.footer-newsletter p {
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 18px;
    background: var(--bg-light);
    border: 2px solid var(--border-light);
    border-radius: 8px;
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: var(--transition-smooth);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--accent-teal);
    background: var(--bg-white);
}

.newsletter-form input::placeholder {
    color: var(--text-light);
}

.newsletter-form button {
    padding: 14px 24px;
    background: var(--gradient-teal);
    border: none;
    border-radius: 8px;
    color: var(--text-white);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.newsletter-form button:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-teal);
}

.footer-contact-bar {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    padding: 30px 0;
    margin-bottom: 30px;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.footer-contact-bar .contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact-bar .contact-item svg {
    width: 20px;
    height: 20px;
    stroke: var(--accent-teal);
}

.footer-contact-bar .contact-item span,
.footer-contact-bar .contact-item a {
    font-size: 0.95rem;
    color: var(--text-gray);
}

.footer-contact-bar .contact-item a:hover {
    color: var(--accent-teal);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a {
    font-size: 0.9rem;
    color: var(--text-light);
}

.footer-bottom-links a:hover {
    color: var(--accent-teal);
}

/* ============================================
   FLOATING ELEMENTS
   ============================================ */
.floating-quote-btn {
    position: fixed;
    bottom: 100px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: var(--gradient-amber);
    color: var(--text-white);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 10px 30px rgba(217, 119, 6, 0.4);
    z-index: 998;
    transition: var(--transition-smooth);
}

.floating-quote-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(217, 119, 6, 0.5);
    color: var(--text-white);
}

.floating-quote-btn svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-teal);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-teal);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-smooth);
    z-index: 997;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(15, 118, 110, 0.4);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
    stroke: var(--text-white);
}

/* ============================================
   COOKIE CONSENT
   ============================================ */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-white);
    padding: 20px;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.1);
    z-index: 9998;
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.cookie-consent.active {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
    font-size: 0.95rem;
    color: var(--text-gray);
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

/* ============================================
   TOAST NOTIFICATIONS
   ============================================ */
.toast-container {
    position: fixed;
    top: 100px;
    right: 30px;
    z-index: 9999;
}

.toast {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 20px 24px;
    box-shadow: var(--shadow-xl);
    border-left: 4px solid var(--accent-teal);
    margin-bottom: 16px;
    animation: slideIn 0.5s ease;
    max-width: 400px;
}

.toast.success {
    border-left-color: var(--accent-emerald);
}

.toast.error {
    border-left-color: #dc2626;
}

.toast-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.toast-header svg {
    width: 24px;
    height: 24px;
}

.toast.success .toast-header svg {
    stroke: var(--accent-emerald);
}

.toast.error .toast-header svg {
    stroke: #dc2626;
}

.toast-header h5 {
    font-size: 1rem;
    margin: 0;
}

.toast-body {
    font-size: 0.9rem;
    color: var(--text-gray);
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(5deg); }
    50% { transform: translateY(0) rotate(0deg); }
    75% { transform: translateY(20px) rotate(-5deg); }
}

@keyframes markerPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.2); }
}

@keyframes markerRing {
    0% { transform: translate(-50%, -50%) scale(0.5); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(2); opacity: 0; }
}

@keyframes particleFloat {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.4; }
    25% { transform: translate(20px, -30px) scale(1.2); opacity: 0.6; }
    50% { transform: translate(-10px, -50px) scale(1); opacity: 0.3; }
    75% { transform: translate(30px, -20px) scale(1.3); opacity: 0.5; }
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================
   404 PAGE
   ============================================ */
.error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
}

.error-content h1 {
    font-size: 8rem;
    color: var(--accent-teal);
    line-height: 1;
    margin-bottom: 20px;
}

.error-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.error-content p {
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto 30px;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .nav-menu {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .about-grid,
    .story-grid,
    .compliance-grid,
    .contact-grid,
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .product-detail:nth-child(even) .product-detail-grid {
        direction: ltr;
    }
    
    .stats-grid,
    .why-grid,
    .values-grid,
    .glance-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-grid::before {
        display: none;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .problems-grid,
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .product-overview {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .downloads-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .section {
        padding: 80px 0;
    }
    
    .hero {
        min-height: auto;
        padding: 150px 0 100px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .stats-grid,
    .why-grid,
    .values-grid,
    .glance-grid,
    .process-grid,
    .problems-grid,
    .industries-grid,
    .products-grid,
    .product-overview,
    .downloads-grid {
        grid-template-columns: 1fr;
    }
    
    .certifications-grid {
        flex-direction: column;
        gap: 16px;
    }
    
    .cert-item {
        width: 100%;
        justify-content: center;
    }
    
    .trust-badges {
        gap: 30px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-contact-bar {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    .page-hero {
        padding: 140px 0 80px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .floating-quote-btn {
        bottom: 90px;
        right: 20px;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .floating-quote-btn span {
        display: none;
    }
    
    .back-to-top {
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .countries-list {
        gap: 10px;
    }
    
    .country-tag {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}

/* Landscape Mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 120px 0 60px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .hero-buttons {
        flex-direction: row;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .page-hero {
        padding: 100px 0 50px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .stat-card {
        padding: 30px 20px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-height: 400px) and (orientation: landscape) {
    .hero {
        padding: 100px 0 40px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .hero-description {
        display: none;
    }
    
    .preloader {
        display: none;
    }
}

/* Touch Device Optimizations */
@media (pointer: coarse) {
    .btn,
    .nav-link,
    .product-card,
    .nav-cta {
        min-height: 44px;
    }
    
    .dropdown-menu {
        display: none;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .hero-bg {
        background-attachment: scroll;
    }
    
    .map-section::before,
    .cta-section::before {
        background-attachment: scroll;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --border-light: #000000;
        --text-gray: #000000;
    }
    
    .btn-primary,
    .btn-amber {
        border: 2px solid #000000;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .floating-quote-btn,
    .back-to-top,
    .cookie-consent,
    .preloader {
        display: none !important;
    }
    
    .hero {
        min-height: auto;
        padding: 40px 0;
    }
    
    body {
        background: white;
        color: black;
    }
    
    a {
        color: black;
        text-decoration: underline;
    }
}

/* Developer Credit */
.developer-credit {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 400;
}

.developer-credit a {
    font-size: 0.9rem;
    color: var(--accent-teal);
    font-weight: 400;
}

.developer-credit a:hover {
    color: var(--accent-teal-dark);
}

/* ============================================
   FLOATING CAPSULE NAVBAR ON SCROLL
   ============================================ */
.header.scrolled {
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    border-radius: 100px;
    padding: 12px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

/* Smooth transition for all header changes */
.header {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    left: 0;
    transform: translateX(0);
    border-radius: 0;
}

/* Mobile capsule adjustments */
@media (max-width: 768px) {
    .header.scrolled {
        width: 95%;
        top: 10px;
        padding: 10px 20px;
        border-radius: 50px;
    }
}

/* ============================================
   FORM ALERTS & NEWSLETTER ALERTS
   Add this at the END of your style.css file
   ============================================ */

/* Form Alert Styles */
.form-alert {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 24px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.form-alert-success {
    background: #ecfdf5;
    border: 1px solid #10b981;
}

.form-alert-error {
    background: #fef2f2;
    border: 1px solid #ef4444;
}

.form-alert-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

.form-alert-success .form-alert-icon svg {
    stroke: #10b981;
}

.form-alert-error .form-alert-icon svg {
    stroke: #ef4444;
}

.form-alert-content h5 {
    font-size: 1.1rem;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.form-alert-content p {
    font-size: 0.95rem;
    margin: 0;
    color: var(--text-gray);
}

/* Newsletter Alerts */
.newsletter-alert {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 8px;
    font-size: 0.9rem;
}

.newsletter-success {
    background: #ecfdf5;
    border: 1px solid #10b981;
    color: #065f46;
}

.newsletter-success svg {
    width: 20px;
    height: 20px;
    stroke: #10b981;
    flex-shrink: 0;
}

.newsletter-error {
    background: #fef2f2;
    border: 1px solid #ef4444;
    color: #991b1b;
}

.newsletter-error svg {
    width: 20px;
    height: 20px;
    stroke: #ef4444;
    flex-shrink: 0;
}

/* ============================================
   NEWSLETTER MESSAGE STYLES
   Add this at the END of your style.css file
   ============================================ */

.newsletter-message {
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.newsletter-message.success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #10b981;
}

.newsletter-message.error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #ef4444;
}

/* ============================================
   CONTACT MESSAGE STYLES
   Add this at the END of your style.css file
   ============================================ */

.contact-message {
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 1rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.contact-message.success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #10b981;
}

.contact-message.error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #ef4444;
}
/* ============================================
   RESOURCES PAGE STYLES
   ============================================ */
.resources-downloads-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.resources-downloads-grid .download-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 28px;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.resources-downloads-grid .download-card:hover {
    border-color: var(--accent-teal);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.resources-downloads-grid .download-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: var(--accent-teal);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.resources-downloads-grid .download-icon svg {
    width: 28px;
    height: 28px;
    stroke: white;
}

.resources-downloads-grid .download-info {
    flex: 1;
}

.resources-downloads-grid .download-info h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.resources-downloads-grid .download-info span {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.5;
    display: block;
}

.resources-downloads-grid .download-info .download-link {
    margin-top: 10px;
    font-size: 0.85rem;
    color: var(--accent-teal);
    font-weight: 600;
}

/* Resources Page Responsive */
@media (max-width: 1024px) {
    .resources-downloads-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    /* Compliance section for resources page */
    .compliance-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .compliance-badges {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .resources-downloads-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .resources-downloads-grid .download-card {
        padding: 20px;
        gap: 16px;
    }
    
    .resources-downloads-grid .download-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
    }
    
    .resources-downloads-grid .download-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .resources-downloads-grid .download-info h5 {
        font-size: 1rem;
    }
    
    .resources-downloads-grid .download-info span {
        font-size: 0.85rem;
    }
    
    /* Compliance badges responsive */
    .compliance-badges {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    
    .compliance-badge {
        padding: 16px 20px;
        justify-content: flex-start;
        width: 100%;
    }
    
    .compliance-badge svg {
        width: 28px;
        height: 28px;
    }
    
    .compliance-badge span {
        font-size: 0.95rem;
    }
    
    /* Compliance content responsive */
    .compliance-content h2 {
        font-size: 1.6rem;
    }
    
    .compliance-content p {
        font-size: 1rem;
    }
    
    .compliance-list li {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .resources-downloads-grid .download-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 24px 16px;
    }
    
    .resources-downloads-grid .download-icon {
        width: 60px;
        height: 60px;
        min-width: 60px;
    }
    
    /* Page hero text responsive */
    .page-hero h1 {
        font-size: 1.8rem;
    }
    
    .page-hero p {
        font-size: 1rem;
    }
    
    /* Section header responsive */
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    /* Compliance badges small screen */
    .compliance-badge {
        padding: 14px 16px;
        gap: 10px;
    }
    
    .compliance-badge svg {
        width: 24px;
        height: 24px;
        min-width: 24px;
    }
    
    .compliance-badge span {
        font-size: 0.9rem;
    }
    
    /* CTA section responsive */
    .cta-content h2 {
        font-size: 1.6rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
}

/* ============================================
   BROCHURE CARDS - GRADIENT ACCENT DESIGN
   Resources Page PDF Downloads
   ============================================ */

.brochure-cards-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.brochure-card {
    display: block;
    position: relative;
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border-light);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.brochure-card:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 30px rgba(15, 118, 110, 0.15);
    border-color: var(--accent-teal);
}

.brochure-card-accent {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: var(--gradient-teal);
    transition: width 0.3s ease;
}

.brochure-card:hover .brochure-card-accent {
    width: 8px;
}

.brochure-card-content {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 28px 30px 28px 35px;
}

.brochure-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: var(--bg-teal-tint);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.brochure-card:hover .brochure-icon {
    background: var(--accent-teal);
    transform: scale(1.05);
}

.brochure-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--accent-teal);
    transition: stroke 0.3s ease;
}

.brochure-card:hover .brochure-icon svg {
    stroke: var(--text-white);
}

.brochure-info {
    flex: 1;
}

.brochure-info h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
    transition: color 0.3s ease;
}

.brochure-card:hover .brochure-info h4 {
    color: var(--accent-teal);
}

.brochure-info p {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin: 0 0 12px 0;
    line-height: 1.5;
}

.brochure-download {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-teal);
    transition: gap 0.3s ease;
}

.brochure-card:hover .brochure-download {
    gap: 12px;
}

.brochure-download svg {
    width: 16px;
    height: 16px;
    stroke: var(--accent-teal);
    transition: transform 0.3s ease;
}

.brochure-card:hover .brochure-download svg {
    transform: translateX(4px);
}

/* Brochure Cards Responsive */
@media (max-width: 768px) {
    .brochure-cards-grid {
        gap: 16px;
    }
    
    .brochure-card-content {
        padding: 22px 20px 22px 28px;
        gap: 18px;
    }
    
    .brochure-icon {
        width: 48px;
        height: 48px;
    }
    
    .brochure-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .brochure-info h4 {
        font-size: 1.05rem;
    }
    
    .brochure-info p {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
    
    .brochure-download {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .brochure-card:hover {
        transform: translateX(4px);
    }
    
    .brochure-card-content {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 18px 20px 24px;
        gap: 14px;
    }
    
    .brochure-icon {
        width: 44px;
        height: 44px;
    }
    
    .brochure-icon svg {
        width: 22px;
        height: 22px;
    }
    
    .brochure-info h4 {
        font-size: 1rem;
    }
    
    .brochure-info p {
        font-size: 0.85rem;
    }
}