/* ========================================
   MAGNI ENTERPRISE - Modern 2026 Design
   Clean, Professional, Eco-Focused
   ======================================== */

/* CSS Variables - Based on Magni Enterprise Logo Colors */
:root {
    /* Logo Colors */
    --color-red: #EB2027;
    --color-orange: #F79420;
    --color-blue: #44ABE1;
    --color-green: #41AC49;
    --color-gray: #848484;

    /* Primary Palette */
    --primary-color: #EB2027;
    --primary-dark: #c91a20;
    --primary-light: #ff4a50;
    --secondary-color: #1a1f36;
    --accent-color: #44ABE1;
    --accent-orange: #F79420;
    --accent-green: #41AC49;

    /* Text Colors */
    --text-dark: #1a1f36;
    --text-medium: #4a5568;
    --text-light: #718096;
    --text-white: #ffffff;

    /* Background Colors */
    --bg-light: #f7f8fc;
    --bg-white: #ffffff;
    --bg-dark: #1a1f36;
    --bg-gradient: linear-gradient(135deg, #f7f8fc 0%, #eef2f7 100%);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #EB2027 0%, #F79420 100%);
    --gradient-hero: linear-gradient(135deg, #1a1f36 0%, #2d3748 100%);
    --gradient-blue: linear-gradient(135deg, #44ABE1 0%, #2980b9 100%);
    --gradient-green: linear-gradient(135deg, #41AC49 0%, #2ecc71 100%);
    --gradient-orange: linear-gradient(135deg, #F79420 0%, #f39c12 100%);
    --gradient-mesh: radial-gradient(at 40% 20%, hsla(212, 72%, 59%, 0.1) 0px, transparent 50%),
                     radial-gradient(at 80% 0%, hsla(189, 100%, 56%, 0.1) 0px, transparent 50%),
                     radial-gradient(at 0% 50%, hsla(355, 85%, 52%, 0.1) 0px, transparent 50%),
                     radial-gradient(at 80% 50%, hsla(39, 93%, 55%, 0.1) 0px, transparent 50%),
                     radial-gradient(at 0% 100%, hsla(141, 46%, 46%, 0.1) 0px, transparent 50%);

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 40px rgba(235, 32, 39, 0.15);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.06);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 100px;

    /* Transitions */
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Poppins', var(--font-primary);
}

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

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

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

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

p {
    margin-bottom: 1rem;
    color: var(--text-medium);
}

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

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

ul {
    list-style: none;
}

/* Selection */
::selection {
    background: var(--primary-color);
    color: var(--text-white);
}

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-narrow {
    max-width: 800px;
}

/* ========================================
   BUTTONS - Modern Glass Morphism
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    padding: 1rem 2rem;
    font-family: var(--font-primary);
    font-size: 0.9375rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
    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: var(--transition-slow);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-white);
    box-shadow: 0 4px 20px rgba(235, 32, 39, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(235, 32, 39, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

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

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

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border-color: #fff;
    transform: translateY(-2px);
}

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

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-full {
    width: 100%;
}

.btn-sm {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
}

.button-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
    padding: 0.875rem 0;
}

.header.scrolled .nav-link {
    color: var(--text-dark);
}

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

.logo {
    display: flex;
    align-items: center;
    z-index: 1001;
}

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

.header.scrolled .logo-img {
    height: 38px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link {
    font-weight: 500;
    font-size: 0.9375rem;
    color: var(--text-white);
    padding: 0.625rem 1.125rem;
    border-radius: var(--radius-full);
    position: relative;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: rgba(255, 255, 255, 0.7);
}

.header.scrolled .nav-link:hover,
.header.scrolled .nav-link.active {
    color: var(--primary-color);
}

/* Mobile Menu Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-white);
    border-radius: 2px;
    transition: var(--transition);
}

.header.scrolled .nav-toggle span {
    background: var(--text-dark);
}

/* Header Light (for inner pages) */
.header-light {
    background: var(--bg-white);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
}

.header-light .nav-link {
    color: var(--text-dark);
}

.header-light .nav-link:hover,
.header-light .nav-link.active {
    color: var(--primary-color);
}

.header-light .nav-toggle span {
    background: var(--text-dark);
}

/* ========================================
   HERO SECTION - Modern 2026 Design
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-hero);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-mesh);
    opacity: 0.8;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    padding: 2rem 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(65, 172, 73, 0.15);
    border: 1px solid rgba(65, 172, 73, 0.3);
    border-radius: var(--radius-full);
    color: #4ade80;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.hero-badge i {
    font-size: 0.75rem;
}

.hero-title {
    color: var(--text-white);
    margin-bottom: 1.5rem;
    font-size: clamp(2.75rem, 6vw, 4.5rem);
    line-height: 1.1;
}

.hero-title .highlight {
    background: linear-gradient(135deg, #4ade80 0%, #22d3ee 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Hero Visual */
.hero-visual {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    width: 45%;
    max-width: 600px;
    z-index: 1;
}

.hero-visual img {
    width: 100%;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.3));
}

.hero-logo-svg {
    width: 100%;
    max-width: 450px;
    height: auto;
    filter: drop-shadow(0 10px 40px rgba(0, 0, 0, 0.2));
    animation: float 6s ease-in-out infinite;
}

/* Hero Image Stack */
.hero-image-stack {
    position: relative;
    width: 100%;
    height: 450px;
}

.hero-image-card {
    position: absolute;
    width: 280px;
    height: 200px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transition: var(--transition);
    border: 4px solid rgba(255, 255, 255, 0.2);
}

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

.hero-image-card:hover {
    transform: translateY(-10px) scale(1.05);
    z-index: 10;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.hero-img-1 {
    top: 0;
    left: 0;
    animation: floatCard1 8s ease-in-out infinite;
}

.hero-img-2 {
    top: 120px;
    right: 0;
    animation: floatCard2 7s ease-in-out infinite 1s;
}

.hero-img-3 {
    bottom: 0;
    left: 60px;
    animation: floatCard3 9s ease-in-out infinite 0.5s;
}

@keyframes floatCard1 {
    0%, 100% { transform: translateY(0) rotate(-3deg); }
    50% { transform: translateY(-15px) rotate(-1deg); }
}

@keyframes floatCard2 {
    0%, 100% { transform: translateY(0) rotate(2deg); }
    50% { transform: translateY(-12px) rotate(4deg); }
}

@keyframes floatCard3 {
    0%, 100% { transform: translateY(0) rotate(1deg); }
    50% { transform: translateY(-18px) rotate(-2deg); }
}

/* Hero Shapes */
.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
    background: var(--text-white);
}

.shape-1 {
    width: 600px;
    height: 600px;
    top: -20%;
    right: -10%;
    animation: float 15s ease-in-out infinite;
}

.shape-2 {
    width: 400px;
    height: 400px;
    bottom: -10%;
    left: -5%;
    animation: float 12s ease-in-out infinite reverse;
}

.shape-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    right: 30%;
    animation: float 8s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(3deg); }
}

/* Hero Slider with Background Images */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 31, 54, 0.85) 0%, rgba(26, 31, 54, 0.7) 50%, rgba(26, 31, 54, 0.8) 100%);
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide-1 {
    background-image: url('../images/main-bg.jpg');
}

.hero-slide-2 {
    background-image: url('../images/turtle-bg.jpg');
}

.hero-slide-3 {
    background-image: url('../images/world-bg.jpg');
}

/* Hero Slider Indicators */
.hero-slider-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 10;
}

.hero-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.hero-slider-dot:hover {
    background: rgba(255, 255, 255, 0.5);
}

.hero-slider-dot.active {
    background: var(--text-white);
    border-color: var(--text-white);
    transform: scale(1.2);
}

/* Hero Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.25rem;
    animation: bounce 2s ease-in-out infinite;
    z-index: 5;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Hero Inline Logo */
.hero-logo-wrapper {
    margin-top: 2.5rem;
    opacity: 0.9;
}

.hero-logo-inline {
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
}

/* ========================================
   SECTIONS COMMON
   ======================================== */
.section {
    padding: 7rem 0;
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 4rem;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(235, 32, 39, 0.08);
    color: var(--primary-color);
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.section-title {
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-light);
}

.bg-light {
    background: var(--bg-light);
}

/* ========================================
   PRODUCTS OVERVIEW SECTION
   ======================================== */
.products-overview {
    background: var(--bg-gradient);
    position: relative;
}

.products-overview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-mesh);
    opacity: 0.5;
}

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

.products-grid-home {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.product-category-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-category-card .btn {
    margin-top: auto;
}

.product-category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(235, 32, 39, 0.1);
}

.card-icon {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.card-icon i {
    font-size: 1.75rem;
    color: var(--text-white);
}

/* SVG Icon in Cards */
.card-svg-icon {
    display: flex;
    align-items: center;
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
}

.card-svg-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-category-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.375rem;
}

.product-category-card > p {
    color: var(--text-light);
    font-size: 0.9375rem;
    margin-bottom: 1.25rem;
}

.card-features {
    margin-bottom: 1.5rem;
}

.card-features li {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.5rem 0;
    color: var(--text-medium);
    font-size: 0.9375rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.card-features li:last-child {
    border-bottom: none;
}

.card-features li i {
    color: var(--accent-green);
    font-size: 0.75rem;
}

/* ========================================
   ABOUT PREVIEW SECTION
   ======================================== */
.about-preview {
    background: var(--bg-white);
}

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

.about-content .section-tag {
    margin-bottom: 1.25rem;
}

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

.about-content p {
    font-size: 1.0625rem;
    margin-bottom: 1.25rem;
}

.about-content .btn {
    margin-top: 0.5rem;
}

/* About Stats Inline */
.about-stats-inline {
    display: flex;
    gap: 2.5rem;
    margin: 2rem 0;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

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

.stat-inline .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.stat-inline .stat-text {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.stat-inline .stat-label {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 0.25rem;
}

/* About Product Image */
.about-product-image {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
}

.about-team-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* Product Video */
.product-video {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* Product Detail Image */
.product-detail-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    opacity: 0.1;
    z-index: -1;
}

/* About Visual Container (Globe Graphic) */
.about-visual-container {
    position: relative;
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--gradient-primary));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-visual-globe {
    font-size: 8rem;
    color: white;
    opacity: 0.9;
    animation: float 6s ease-in-out infinite;
}

.about-visual-connections {
    position: absolute;
    width: 100%;
    height: 100%;
}

.connection-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    opacity: 0.8;
}

.connection-dot.dot-1 { top: 20%; left: 15%; animation: pulse 2s ease-in-out infinite; }
.connection-dot.dot-2 { top: 30%; right: 20%; animation: pulse 2s ease-in-out infinite 0.5s; }
.connection-dot.dot-3 { bottom: 25%; left: 25%; animation: pulse 2s ease-in-out infinite 1s; }
.connection-dot.dot-4 { bottom: 35%; right: 15%; animation: pulse 2s ease-in-out infinite 1.5s; }

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.5); opacity: 0.4; }
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta {
    background: var(--gradient-hero);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-mesh);
    opacity: 0.6;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

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

.cta p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.cta-green {
    position: relative;
    background: linear-gradient(135deg, rgba(65, 172, 73, 0.92) 0%, rgba(27, 94, 32, 0.95) 100%), url('../images/photo-1439405326854-014607f694d7.jpeg') center center / cover no-repeat;
}

.cta-forest {
    position: relative;
    background: linear-gradient(135deg, rgba(65, 172, 73, 0.88) 0%, rgba(27, 94, 32, 0.93) 100%), url('../images/sebastian-unrau-sp-p7uuT0tw-unsplash.jpg') center center / cover no-repeat;
}

.cta-world {
    position: relative;
    background: linear-gradient(135deg, rgba(68, 171, 225, 0.9) 0%, rgba(26, 31, 54, 0.95) 100%), url('../images/bags-hero.jpg') center center / cover no-repeat;
}

.cta-blue {
    position: relative;
    background: linear-gradient(135deg, rgba(68, 171, 225, 0.92) 0%, rgba(41, 128, 185, 0.95) 100%);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--bg-dark);
    color: var(--text-white);
    padding-top: 5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo-img {
    height: 36px;
    margin-bottom: 1.25rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9375rem;
    line-height: 1.7;
}

.footer-links h4 {
    color: var(--text-white);
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9375rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--text-white);
    padding-left: 4px;
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

/* ========================================
   BACK TO TOP
   ======================================== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    background: var(--primary-color);
    color: var(--text-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-md);
    font-size: 1rem;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

/* ========================================
   PAGE HEADERS
   ======================================== */
.page-header {
    background: var(--gradient-primary);
    padding: 10rem 0 5rem;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-white);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-mesh);
    opacity: 0.4;
}

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

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

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

.page-header-small {
    padding: 8rem 0 3.5rem;
}

.page-header-blue {
    background: var(--gradient-blue);
}

.page-header-green {
    background: var(--gradient-green);
}

.page-header-about {
    background: var(--gradient-hero);
}

.page-header-contact {
    background: linear-gradient(135deg, #1a2a4a 0%, #0d1929 50%, #1a1f36 100%);
}

/* ========================================
   PRODUCT PAGES
   ======================================== */
.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.product-detail-grid.reverse {
    direction: rtl;
}

.product-detail-grid.reverse > * {
    direction: ltr;
}

.product-detail-content h2 {
    margin-bottom: 1rem;
}

.product-detail-content .lead {
    font-size: 1.125rem;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.feature-list {
    margin: 1.5rem 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 0;
    color: var(--text-medium);
    font-size: 1rem;
}

.feature-list li i {
    color: var(--accent-green);
    font-size: 0.875rem;
}

.product-detail-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
}

.product-detail-image .image-placeholder {
    width: 100%;
    height: 400px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-detail-image .image-placeholder i {
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.4);
}

/* Brand Logo */
.brand-logo {
    height: 60px;
    width: auto;
    margin-bottom: 1.5rem;
    object-fit: contain;
}

/* ========================================
   ABOUT PAGE
   ======================================== */
.about-intro-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: start;
}

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

.about-intro-content p {
    font-size: 1.0625rem;
    margin-bottom: 1.25rem;
}

.about-intro-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.stat-icon {
    width: 56px;
    height: 56px;
    background: rgba(235, 32, 39, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.stat-icon i {
    font-size: 1.25rem;
    color: var(--primary-color);
}

.stat-card .stat-number {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1;
}

.stat-card .stat-label {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    align-items: flex-start;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
    text-align: right;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 72px;
    height: 36px;
    background: var(--primary-color);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.875rem;
    z-index: 1;
}

.timeline-content {
    width: calc(50% - 56px);
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.timeline-content h3 {
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.timeline-content p {
    margin: 0;
    font-size: 0.9375rem;
}

/* Timeline with Images */
.timeline-with-images .timeline-content {
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow: hidden;
}

.timeline-with-images .timeline-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
}

.timeline-with-images .timeline-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.timeline-with-images .timeline-item:hover .timeline-image img {
    transform: scale(1.05);
}

.timeline-with-images .timeline-text {
    padding: 1.5rem;
}

.timeline-with-images .timeline-text h3 {
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.timeline-with-images .timeline-text p {
    margin: 0;
    font-size: 0.9375rem;
}

/* Alternating image positions for visual interest */
.timeline-with-images .timeline-item:nth-child(even) .timeline-content {
    flex-direction: column;
}

.timeline-with-images .timeline-item:nth-child(odd) .timeline-content {
    flex-direction: column;
}

/* Image overlay gradient for better text contrast */
.timeline-with-images .timeline-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(to top, rgba(255,255,255,0.8), transparent);
    pointer-events: none;
}

/* Hover effect for timeline cards */
.timeline-with-images .timeline-content {
    transition: var(--transition);
}

.timeline-with-images .timeline-item:hover .timeline-content {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* Philosophy Section */
.philosophy-grid {
    max-width: 900px;
    margin: 0 auto;
}

blockquote {
    font-size: 1.375rem;
    font-style: italic;
    color: var(--text-dark);
    border-left: 4px solid var(--primary-color);
    padding-left: 2rem;
    margin: 2rem 0;
    line-height: 1.6;
}

blockquote cite {
    display: block;
    margin-top: 1rem;
    font-size: 1rem;
    font-style: normal;
    color: var(--text-light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.value-item {
    text-align: center;
    padding: 1.5rem;
}

.value-item i {
    font-size: 2.25rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.value-item h4 {
    margin-bottom: 0.5rem;
    font-size: 1.0625rem;
}

.value-item p {
    font-size: 0.875rem;
    color: var(--text-light);
    margin: 0;
}

/* ========================================
   CONTACT PAGE
   ======================================== */
.contact-section {
    background: var(--bg-light);
    padding: 5rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 2rem;
    align-items: stretch;
}

.contact-info-card,
.contact-form-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-info-card h2,
.contact-form-card h2 {
    margin-bottom: 0.5rem;
    font-size: 1.625rem;
    color: var(--text-dark);
}

.contact-info-card > p,
.contact-form-card > p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.contact-details {
    margin: 0 0 1.5rem 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.contact-item:hover {
    background: rgba(235, 32, 39, 0.04);
}

.contact-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-orange) 100%);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1rem;
    color: #fff;
}

.contact-text h4 {
    font-size: 0.6875rem;
    color: var(--text-light);
    margin-bottom: 0.25rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-text p,
.contact-text a {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.875rem;
    line-height: 1.4;
    margin: 0;
}

.contact-text a:hover {
    color: var(--primary-color);
}

.contact-person {
    background: linear-gradient(135deg, rgba(68, 171, 225, 0.06) 0%, rgba(65, 172, 73, 0.06) 100%);
    padding: 1.25rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(68, 171, 225, 0.12);
}

.contact-person h3 {
    font-size: 0.75rem;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent-color);
}

/* Form Styles */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.8125rem;
    color: var(--text-dark);
    letter-spacing: 0.01em;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-sm);
    font-family: var(--font-primary);
    font-size: 0.9375rem;
    transition: var(--transition);
    background: var(--bg-light);
}

.form-group input:hover,
.form-group textarea:hover,
.form-group select:hover {
    border-color: rgba(0, 0, 0, 0.2);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-color);
    background: var(--bg-white);
    box-shadow: 0 0 0 3px rgba(68, 171, 225, 0.12);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
    opacity: 0.7;
}

.contact-form {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.contact-form .btn-full {
    margin-top: auto;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
}

/* ========================================
   LEGAL PAGES
   ======================================== */
.legal-content {
    padding: 4rem 0;
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section h2 {
    font-size: 1.375rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.legal-section h3 {
    font-size: 1.125rem;
    margin: 1.5rem 0 0.75rem;
}

.legal-section p {
    font-size: 0.9375rem;
    line-height: 1.8;
}

.legal-section ul {
    padding-left: 1.5rem;
    margin: 1rem 0;
}

.legal-section ul li {
    margin-bottom: 0.5rem;
    color: var(--text-medium);
    font-size: 0.9375rem;
    list-style: disc;
}

.legal-section a {
    color: var(--primary-color);
}

.legal-section a:hover {
    text-decoration: underline;
}

/* ========================================
   ECO BADGES
   ======================================== */
.eco-badges {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.eco-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.eco-badge i {
    font-size: 2rem;
    color: var(--accent-green);
}

.eco-badge span {
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 500;
}

/* ========================================
   ANIMATIONS - AOS Compatible
   ======================================== */
[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.95);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

/* ========================================
   PARTNERS SECTION
   ======================================== */
.partners-section .partners-logos img {
    transition: all 0.3s ease;
}

.partners-section .partners-logos img:hover {
    filter: grayscale(0%) !important;
    opacity: 1 !important;
    transform: scale(1.05);
}

/* ========================================
   ENHANCED STATS SECTION
   ======================================== */
.stats-banner {
    background: var(--gradient-hero);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.stats-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-mesh);
    opacity: 0.5;
}

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

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

.stat-item {
    text-align: center;
    color: var(--text-white);
}

.stat-item .stat-number {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-item .stat-label {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ========================================
   FEATURE HIGHLIGHTS
   ======================================== */
.feature-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 4rem;
}

.feature-highlight-item {
    padding: 2.5rem;
    text-align: center;
    background: var(--bg-white);
    border-right: 1px solid rgba(0, 0, 0, 0.06);
    transition: var(--transition);
}

.feature-highlight-item:last-child {
    border-right: none;
}

.feature-highlight-item:hover {
    background: var(--bg-light);
}

.feature-highlight-item i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.feature-highlight-item.green i { color: var(--accent-green); }
.feature-highlight-item.blue i { color: var(--accent-color); }
.feature-highlight-item.orange i { color: var(--accent-orange); }

.feature-highlight-item h4 {
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.feature-highlight-item p {
    font-size: 0.9375rem;
    color: var(--text-light);
    margin: 0;
}

/* ========================================
   UTILITIES
   ======================================== */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

/* ========================================
   RESPONSIVE PARTNERS
   ======================================== */
@media (max-width: 768px) {
    .partners-section .partners-logos {
        gap: 1.5rem !important;
    }

    .partners-section .partners-logos img {
        height: 28px !important;
    }

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

    .stat-item .stat-number {
        font-size: 2.25rem;
    }

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

    .feature-highlight-item {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }

    .