/* ==========================================
   SIEZZON HAVEN - PREMIUM LANDING PAGE
   MODERN CSS STYLES
   ========================================== */

/* ==========================================
   CSS VARIABLES & RESET
   ========================================== */
:root {
    --primary-orange: #FF6B00;
    --primary-orange-dark: #E65100;
    --primary-orange-light: #FF8C33;
    --black: #1A1A1A;
    --dark-gray: #2D2D2D;
    --medium-gray: #4A4A4A;
    --light-gray: #F8F9FA;
    --off-white: #FFFFFF;
    --white: #FFFFFF;
    --border-color: #E9ECEF;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.15);
    --shadow-orange: 0 4px 20px rgba(255, 107, 0, 0.3);
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
    --transition-slow: 0.8s ease;
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    --font-display: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--black);
    background-color: var(--white);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    width: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ==========================================
   DYNAMIC BACKGROUND SYSTEM
   ========================================== */
.dynamic-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(248, 249, 250, 0.9) 50%, 
        rgba(255, 255, 255, 0.95) 100%);
    animation: gradientShift 20s ease-in-out infinite;
}

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

.bg-mesh {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 107, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 107, 0, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 140, 51, 0.02) 0%, transparent 40%);
    animation: meshMove 30s ease-in-out infinite;
}

@keyframes meshMove {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(2%, 2%) rotate(1deg);
    }
    66% {
        transform: translate(-1%, 1%) rotate(-1deg);
    }
}

.bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: floatShape 25s ease-in-out infinite;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: rgba(255, 107, 0, 0.05);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: rgba(255, 140, 51, 0.04);
    top: 60%;
    right: 15%;
    animation-delay: 5s;
}

.shape-3 {
    width: 350px;
    height: 350px;
    background: rgba(255, 107, 0, 0.03);
    bottom: 20%;
    left: 30%;
    animation-delay: 10s;
}

.shape-4 {
    width: 250px;
    height: 250px;
    background: rgba(255, 140, 51, 0.05);
    top: 30%;
    right: 30%;
    animation-delay: 15s;
}

@keyframes floatShape {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(30px, -30px) scale(1.05);
    }
    50% {
        transform: translate(-20px, 20px) scale(0.95);
    }
    75% {
        transform: translate(20px, 30px) scale(1.02);
    }
}

.bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 107, 0, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 107, 0, 0.02) 1px, transparent 1px);
    background-size: 100px 100px;
    animation: gridMove 60s linear infinite;
}

@keyframes gridMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100px 100px;
    }
}

.bg-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.bg-particles::before,
.bg-particles::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(255, 107, 0, 0.1);
    border-radius: 50%;
    animation: particleFloat 20s linear infinite;
}

.bg-particles::before {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.bg-particles::after {
    top: 80%;
    right: 20%;
    animation-delay: 10s;
}

@keyframes particleFloat {
    0% {
        transform: translate(0, 0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translate(100px, -100px);
        opacity: 0;
    }
}

.bg-noise {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    pointer-events: none;
}

.mouse-light {
    position: absolute;
    top: 0;
    left: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.03) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    transition: transform 0.1s ease-out;
}

/* ==========================================
   CONTAINER
   ========================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

/* ==========================================
   PREMIUM NAVIGATION
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition-medium);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 20px;
    transition: var(--transition-medium);
}

.navbar.scrolled .container {
    padding: 15px 20px;
}

.nav-brand a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 45px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    transition: var(--transition-medium);
}

.navbar.scrolled .logo-img {
    height: 38px;
    max-width: 180px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-link {
    color: var(--black);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition-fast);
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-orange);
    transition: var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

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

.nav-cta {
    background: var(--primary-orange);
    color: var(--white) !important;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-orange);
}

.nav-cta:hover {
    background: var(--primary-orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 107, 0, 0.4);
}

.nav-cta::after {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1002;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background-color: var(--black);
    margin: 4px 0;
    transition: var(--transition-fast);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ==========================================
   MOBILE NAVIGATION OVERLAY
   ========================================== */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
    width: 100%;
    margin: 0;
    padding-left: 0;
    padding-right: 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
    transform: scale(1.05);
    animation: heroImageMove 30s ease-in-out infinite;
    margin: 0;
    padding: 0;
}

@keyframes heroImageMove {
    0%, 100% {
        transform: scale(1.05) translate(0, 0);
    }
    50% {
        transform: scale(1.08) translate(-1%, 1%);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(26, 26, 26, 0.7) 0%, 
        rgba(45, 45, 45, 0.5) 50%,
        rgba(26, 26, 26, 0.7) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    color: var(--white);
}

.hero-label {
    display: inline-block;
    background: rgba(255, 107, 0, 0.2);
    border: 1px solid rgba(255, 107, 0, 0.4);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -2px;
}

.hero-content h1 .highlight {
    color: var(--primary-orange);
    position: relative;
    display: inline-block;
}

.hero-content h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-orange);
    opacity: 0.5;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 35px;
    max-width: 550px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-card {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 400px;
    animation: floatCard 6s ease-in-out infinite;
}

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

.hero-card-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 15px;
}

.hero-card-content {
    text-align: center;
    color: var(--white);
}

.hero-card-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-orange);
}

.stat-label {
    font-size: 14px;
    opacity: 0.9;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 3;
    color: var(--white);
    opacity: 0.7;
}

.scroll-indicator-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--white), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% {
        opacity: 0.3;
        transform: scaleY(1);
    }
    50% {
        opacity: 1;
        transform: scaleY(1.2);
    }
}

.scroll-indicator-text {
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition-fast);
    border: 2px solid transparent;
    cursor: pointer;
    white-space: nowrap;
}

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

.btn-primary:hover {
    background: var(--primary-orange-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 107, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--black);
    transform: translateY(-3px);
}

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

.btn-outline:hover {
    background: var(--primary-orange);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-orange);
}

.btn svg {
    width: 20px;
    height: 20px;
}

/* ==========================================
   SECTION BADGE
   ========================================== */
.section-badge {
    display: inline-block;
    background: rgba(255, 107, 0, 0.1);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--primary-orange);
    margin-bottom: 20px;
}

/* ==========================================
   TRUST STRIP
   ========================================== */
.trust-strip {
    background: var(--white);
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.trust-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--light-gray);
    border-radius: 16px;
    transition: var(--transition-fast);
}

.trust-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.trust-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    color: var(--primary-orange);
}

.trust-icon svg {
    width: 100%;
    height: 100%;
}

.trust-item h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--black);
}

.trust-item p {
    font-size: 14px;
    color: var(--medium-gray);
    line-height: 1.6;
}

/* ==========================================
   ABOUT PREVIEW
   ========================================== */
.about-preview {
    background: var(--white);
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

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

.about-text h2 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--black);
    letter-spacing: -1px;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--medium-gray);
    margin-bottom: 18px;
}

.image-wrapper {
    position: relative;
    display: inline-block;
}

.about-img {
    width: 100%;
    max-width: 450px;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.image-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--primary-orange);
    border-radius: 20px;
    z-index: -1;
}

/* ==========================================
   CONTACT ICONS
   ========================================== */
.contact-icon {
    width: 60px;
    height: 60px;
    color: var(--primary-orange);
    margin-bottom: 15px;
}

.contact-icon svg {
    width: 100%;
    height: 100%;
}

/* ==========================================
   BACK TO TOP BUTTON ICON
   ========================================== */
.back-to-top svg {
    stroke-width: 1.5;
}

/* ==========================================
   ICON STYLING - PROFESSIONAL & RESPONSIVE
   ========================================== */
.trust-icon,
.service-icon,
.approach-icon,
.logistics-icon,
.value-icon,
.contact-icon {
    width: 60px;
    height: 60px;
    color: var(--primary-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease, color 0.3s ease;
}

.trust-icon svg,
.service-icon svg,
.approach-icon svg,
.logistics-icon svg,
.value-icon svg,
.contact-icon svg {
    width: 100%;
    height: 100%;
    stroke-width: 1.5;
}

/* Icon hover effects */
.trust-item:hover .trust-icon,
.service-item:hover .service-icon,
.approach-item:hover .approach-icon,
.logistics-item:hover .logistics-icon,
.value-card:hover .value-icon,
.contact-item:hover .contact-icon {
    transform: scale(1.1);
    color: var(--primary-orange-dark);
}

/* Icon responsive sizing */
@media (max-width: 768px) {
    .trust-icon,
    .service-icon,
    .approach-icon,
    .logistics-icon,
    .value-icon,
    .contact-icon {
        width: 50px;
        height: 50px;
    }
    
    .contact-icon {
        margin-bottom: 12px;
    }
}

@media (max-width: 480px) {
    .trust-icon,
    .service-icon,
    .approach-icon,
    .logistics-icon,
    .value-icon,
    .contact-icon {
        width: 45px;
        height: 45px;
    }
    
    .contact-icon {
        margin-bottom: 10px;
    }
}

/* ==========================================
   SERVICES SECTION LAYOUT
   ========================================== */
.services-section {
    background-color: var(--white);
    padding: 80px 0;
}

.service-detail {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    padding: 40px 0;
    border-bottom: 1px solid var(--border-color);
}

.service-detail:last-child {
    border-bottom: none;
}

.service-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--black);
}

.service-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--medium-gray);
}

@media (max-width: 768px) {
    .service-detail {
        flex-direction: column;
        gap: 20px;
    }
    
    .service-number {
        font-size: 40px;
        min-width: auto;
    }
}

/* ==========================================
   SERVICES ICONS
   ========================================== */
.service-icon {
    width: 60px;
    height: 60px;
    color: var(--primary-orange);
    flex-shrink: 0;
    margin-right: 20px;
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-detail {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.service-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-orange);
    opacity: 0.15;
    min-width: 80px;
}

.service-content {
    flex: 1;
}

.service-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--black);
}

.service-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--medium-gray);
}

/* ==========================================
   PRODUCTS PREVIEW
   ========================================== */
.products-preview {
    background: var(--light-gray);
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 15px;
    color: var(--black);
    letter-spacing: -1px;
}

.section-header p {
    font-size: 16px;
    color: var(--medium-gray);
    max-width: 600px;
    margin: 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.product-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

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

.product-image {
    height: 220px;
    background: var(--light-gray);
    overflow: hidden;
    position: relative;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-medium);
}

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

.product-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
}

.product-tag {
    background: var(--primary-orange);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.product-info {
    padding: 25px;
}

.product-info h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--black);
}

.product-info p {
    font-size: 14px;
    color: var(--medium-gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.section-cta {
    text-align: center;
}

/* ==========================================
   WHY CHOOSE SECTION
   ========================================== */
.why-choose {
    background: var(--black);
    color: var(--white);
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.why-choose .section-header h2 {
    color: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-item {
    text-align: center;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-fast);
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.feature-number {
    font-size: 56px;
    font-weight: 800;
    color: var(--primary-orange);
    margin-bottom: 20px;
    opacity: 0.3;
    line-height: 1;
}

.feature-item h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--white);
}

.feature-item p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

/* ==========================================
   CTA SECTION
   ========================================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-orange-dark) 100%);
    color: var(--white);
    padding: 100px 0;
    text-align: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.05;
    pointer-events: none;
}

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

.cta-section h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--white);
    letter-spacing: -1px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.95);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background: var(--white);
    color: var(--primary-orange);
}

.cta-section .btn-primary:hover {
    background: var(--light-gray);
    color: var(--primary-orange-dark);
}

.cta-section .btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.cta-section .btn-secondary:hover {
    background: var(--white);
    color: var(--primary-orange);
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 80px 0 30px;
    position: relative;
    z-index: 1;
}

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

.footer-brand h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--white);
    letter-spacing: -1px;
}

.footer-brand p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

.footer-links h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--white);
    letter-spacing: 0.5px;
}

.footer-links ul {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
    transition: var(--transition-fast);
}

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

.footer-contact h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--white);
    letter-spacing: 0.5px;
}

.footer-contact p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-fast);
}

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

.footer-social {
    margin-top: 25px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-fast);
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
}

.footer-social a:hover {
    color: var(--primary-orange);
    background: rgba(255, 107, 0, 0.1);
}

.footer-social svg {
    width: 20px;
    height: 20px;
}

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

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

/* ==========================================
   WHATSAPP BUTTON
   ========================================== */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 998;
    transition: var(--transition-fast);
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.whatsapp-button svg {
    width: 32px;
    height: 32px;
    color: var(--white);
}

/* ==========================================
   BACK TO TOP BUTTON
   ========================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-orange);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-orange);
    z-index: 997;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
}

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

.back-to-top:hover {
    background-color: var(--primary-orange-dark);
    transform: translateY(-3px);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
    color: var(--white);
}

/* ==========================================
   SCROLL ANIMATIONS
   ========================================== */
.scroll-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.scroll-animate[data-animate="fade-up"] {
    transform: translateY(40px);
}

.scroll-animate[data-animate="slide-right"] {
    transform: translateX(-40px);
}

.scroll-animate[data-animate="slide-left"] {
    transform: translateX(40px);
}

.scroll-animate[data-animate="scale-in"] {
    transform: scale(0.9);
}

.scroll-animate[data-animate="fade-up"].animate,
.scroll-animate[data-animate="slide-right"].animate,
.scroll-animate[data-animate="slide-left"].animate {
    transform: translate(0);
}

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

/* ==========================================
   RESPONSIVE DESIGN - TABLET
   ========================================== */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 48px;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-visual {
        display: none;
    }

    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

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

    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-image {
        text-align: center;
    }

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

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

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

    .hero-card {
        max-width: 350px;
    }
}

/* ==========================================
   RESPONSIVE DESIGN - MOBILE
   ========================================== */
@media (max-width: 768px) {
    .navbar .container {
        padding: 20px;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100%;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 0;
        padding: 100px 40px;
        transition: var(--transition-medium);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
        z-index: 1001;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        font-size: 18px;
        padding: 15px 0;
        border-bottom: 1px solid var(--border-color);
        width: 100%;
    }

    .nav-cta {
        margin-top: 20px;
        width: 100%;
        text-align: center;
    }

    body.menu-open {
        overflow: hidden;
    }

    .hero {
        padding-top: 100px;
        min-height: auto;
        padding-bottom: 60px;
        padding-left: 0;
        padding-right: 0;
    }

    .hero .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero-background {
        margin: 0;
        padding: 0;
    }

    .hero-bg-image {
        margin: 0;
        padding: 0;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-label {
        font-size: 11px;
        padding: 6px 16px;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .about-text h2 {
        font-size: 32px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .cta-section h2 {
        font-size: 32px;
    }

    .cta-section p {
        font-size: 16px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .whatsapp-button {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }

    .whatsapp-button svg {
        width: 28px;
        height: 28px;
    }

    .back-to-top {
        bottom: 20px;
        left: 20px;
        width: 45px;
        height: 45px;
    }

    .back-to-top svg {
        width: 20px;
        height: 20px;
    }

    .hero-card {
        max-width: 300px;
    }

    .hero-card-img {
        height: 250px;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-label {
        font-size: 12px;
    }
}

/* ==========================================
   RESPONSIVE DESIGN - SMALL MOBILE
   ========================================== */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding-left: 0;
        padding-right: 0;
    }

    .hero .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .hero-background {
        margin: 0;
        padding: 0;
    }

    .hero-bg-image {
        margin: 0;
        padding: 0;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 15px;
    }

    .about-text h2 {
        font-size: 26px;
    }

    .section-header h2 {
        font-size: 26px;
    }

    .cta-section h2 {
        font-size: 26px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .nav-menu {
        width: 90%;
        padding: 80px 25px;
    }

    .hero-card {
        max-width: 280px;
        padding: 15px;
    }

    .hero-card-img {
        height: 200px;
    }

    .stat-number {
        font-size: 24px;
    }

    .stat-label {
        font-size: 11px;
    }

    .trust-item {
        padding: 25px 20px;
    }

    .trust-icon {
        width: 50px;
        height: 50px;
    }

    .trust-item h3 {
        font-size: 16px;
    }

    .trust-item p {
        font-size: 13px;
    }

    .product-card {
        border-radius: 12px;
    }

    .product-info {
        padding: 20px;
    }

    .product-info h3 {
        font-size: 16px;
    }

    .feature-item {
        padding: 30px 20px;
    }

    .feature-number {
        font-size: 36px;
    }

    .feature-item h3 {
        font-size: 16px;
    }

    .feature-item p {
        font-size: 13px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* ==========================================
   IMAGE ERROR HANDLING
   ========================================== */
img {
    display: block;
    max-width: 100%;
    height: auto;
}

img[alt] {
    font-style: italic;
}

.product-img,
.about-img,
.hero-bg-image,
.hero-card-img {
    background-color: var(--light-gray);
    min-height: 200px;
}

/* ==========================================
   ABOUT PAGE - PREMIUM HERO SECTION
   ========================================== */
.about-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 80px;
    overflow: hidden;
}

.about-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.about-hero .hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
    transform: scale(1.05);
    animation: heroImageMove 30s ease-in-out infinite;
}

.about-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(26, 26, 26, 0.85) 0%,
        rgba(45, 45, 45, 0.7) 50%,
        rgba(26, 26, 26, 0.85) 100%);
    z-index: 1;
}

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

.hero-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-hero .hero-content {
    color: var(--white);
}

.hero-eyebrow {
    display: inline-block;
    background: rgba(255, 107, 0, 0.15);
    border: 1px solid rgba(255, 107, 0, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    color: var(--primary-orange);
}

.about-hero h1 {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -2px;
    color: var(--white);
}

.about-hero h1 .highlight {
    color: var(--primary-orange);
    position: relative;
    display: inline-block;
}

.about-hero h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-orange);
    opacity: 0.5;
}

.about-hero p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 550px;
    color: rgba(255, 255, 255, 0.9);
}

.about-hero .hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
    max-width: 500px;
}

.hero-main-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 2;
    animation: floatImage 8s ease-in-out infinite;
}

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

.image-decoration {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--primary-orange);
    border-radius: 20px;
    z-index: 1;
    opacity: 0.3;
    animation: decorationMove 10s ease-in-out infinite;
}

@keyframes decorationMove {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(10px, 10px);
    }
}

.image-accent {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-dark));
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    z-index: 0;
    animation: accentPulse 6s ease-in-out infinite;
}

@keyframes accentPulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.1);
    }
}

/* ==========================================
   COMPANY STORY SECTION
   ========================================== */
.company-story {
    background: var(--white);
    padding: 120px 0;
    position: relative;
    z-index: 1;
}

.story-intro {
    text-align: center;
    margin-bottom: 100px;
}

.section-label {
    display: inline-block;
    background: rgba(255, 107, 0, 0.1);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-orange);
    margin-bottom: 20px;
}

.story-intro h2 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
    color: var(--black);
}

.story-section {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 100px;
    position: relative;
}

.story-section:last-child {
    margin-bottom: 0;
}

.story-section-reverse {
    direction: rtl;
}

.story-section-reverse .story-content {
    direction: ltr;
}

.story-number {
    font-size: 120px;
    font-weight: 800;
    color: var(--primary-orange);
    opacity: 0.08;
    line-height: 1;
    position: sticky;
    top: 200px;
    transition: var(--transition-slow);
}

.story-section:hover .story-number {
    opacity: 0.15;
    transform: scale(1.05);
}

.story-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-orange);
    margin-bottom: 15px;
}

.story-header h3 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--black);
    letter-spacing: -1px;
}

.story-text p {
    font-size: 17px;
    line-height: 1.9;
    color: var(--medium-gray);
    margin-bottom: 20px;
}

.story-text p:last-child {
    margin-bottom: 0;
}

/* ==========================================
   MISSION PAGE - PREMIUM HERO SECTION
   ========================================== */
.mission-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    padding-bottom: 80px;
    overflow: hidden;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.98) 0%, 
        rgba(248, 249, 250, 0.95) 50%,
        rgba(255, 255, 255, 0.98) 100%);
}

.mission-hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.mission-label {
    display: inline-block;
    background: rgba(255, 107, 0, 0.08);
    border: 1px solid rgba(255, 107, 0, 0.2);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 30px;
    color: var(--primary-orange);
    backdrop-filter: blur(10px);
}

.mission-hero h1 {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -3px;
    color: var(--black);
}

.mission-hero h1 .highlight {
    color: var(--primary-orange);
    position: relative;
    display: inline-block;
}

.mission-hero h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-orange);
    opacity: 0.3;
}

.mission-statement {
    font-size: 24px;
    line-height: 1.6;
    font-weight: 500;
    color: var(--medium-gray);
    max-width: 700px;
    margin: 0 auto;
    letter-spacing: -0.5px;
}

.hero-architectural-line {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100px;
    background: linear-gradient(to bottom, var(--primary-orange), transparent);
    opacity: 0.3;
}

/* ==========================================
   MISSION PRINCIPLES SECTION
   ========================================== */
.mission-principles {
    background: var(--white);
    padding: 120px 0;
    position: relative;
    z-index: 1;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.principle-card {
    background: var(--light-gray);
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-medium);
    border: 1px solid transparent;
}

.principle-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange), var(--primary-orange-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.principle-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 107, 0, 0.1);
    background: var(--white);
}

.principle-number {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-orange);
    opacity: 0.08;
    line-height: 1;
    transition: var(--transition-fast);
}

.principle-card:hover .principle-number {
    opacity: 0.15;
    transform: scale(1.1);
}

.principle-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 25px;
    color: var(--primary-orange);
    transition: var(--transition-fast);
}

.principle-card:hover .principle-icon {
    transform: scale(1.1);
    color: var(--primary-orange-dark);
}

.principle-icon svg {
    width: 100%;
    height: 100%;
    stroke-width: 1.5;
}

.principle-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--black);
    letter-spacing: -0.5px;
}

.principle-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--medium-gray);
}

/* ==========================================
   WHO WE SERVE SECTION
   ========================================== */
.who-we-serve {
    background: var(--light-gray);
    padding: 120px 0;
    position: relative;
    z-index: 1;
}

.who-we-serve .section-header {
    text-align: center;
    margin-bottom: 70px;
}

.who-we-serve .section-label {
    display: inline-block;
    background: rgba(255, 107, 0, 0.1);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-orange);
    margin-bottom: 20px;
}

.who-we-serve h2 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
    color: var(--black);
}

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

.customer-card {
    background: var(--white);
    border-radius: 16px;
    padding: 35px 30px;
    transition: var(--transition-medium);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.customer-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-light));
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0;
    transition: var(--transition-medium);
}

.customer-card:hover::after {
    opacity: 0.15;
}

.customer-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 107, 0, 0.2);
}

.customer-icon {
    width: 55px;
    height: 55px;
    margin-bottom: 20px;
    color: var(--primary-orange);
    transition: var(--transition-fast);
}

.customer-card:hover .customer-icon {
    transform: scale(1.1);
    color: var(--primary-orange-dark);
}

.customer-icon svg {
    width: 100%;
    height: 100%;
    stroke-width: 1.5;
}

.customer-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--black);
    letter-spacing: -0.5px;
}

.customer-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--medium-gray);
}

/* ==========================================
   MISSION PAGE RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 1024px) {
    .mission-hero h1 {
        font-size: 56px;
    }

    .mission-statement {
        font-size: 20px;
    }

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

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

@media (max-width: 768px) {
    .mission-hero {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .mission-hero h1 {
        font-size: 42px;
        letter-spacing: -1px;
    }

    .mission-statement {
        font-size: 18px;
    }

    .principles-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .principle-card {
        padding: 30px 25px;
    }

    .customers-grid {
        grid-template-columns: 1fr;
    }

    .who-we-serve h2 {
        font-size: 36px;
    }

    .hero-architectural-line {
        height: 60px;
    }
}

@media (max-width: 480px) {
    .mission-hero h1 {
        font-size: 32px;
    }

    .mission-statement {
        font-size: 16px;
    }

    .mission-label {
        font-size: 11px;
        padding: 8px 18px;
    }

    .principle-card {
        padding: 25px 20px;
    }

    .principle-number {
        font-size: 36px;
    }

    .principle-icon {
        width: 55px;
        height: 55px;
    }

    .principle-card h3 {
        font-size: 18px;
    }

    .principle-card p {
        font-size: 14px;
    }

    .customer-card {
        padding: 25px 20px;
    }

    .who-we-serve h2 {
        font-size: 28px;
    }
}

/* ==========================================
   SERVICES PAGE - PREMIUM HERO SECTION
   ========================================== */
.services-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    padding-bottom: 80px;
    overflow: hidden;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.98) 0%, 
        rgba(248, 249, 250, 0.95) 50%,
        rgba(255, 255, 255, 0.98) 100%);
}

.services-hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.services-label {
    display: inline-block;
    background: rgba(255, 107, 0, 0.08);
    border: 1px solid rgba(255, 107, 0, 0.2);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 30px;
    color: var(--primary-orange);
    backdrop-filter: blur(10px);
}

.services-hero h1 {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -2px;
    color: var(--black);
}

.services-hero h1 .highlight {
    color: var(--primary-orange);
    position: relative;
    display: inline-block;
}

.services-hero h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-orange);
    opacity: 0.3;
}

.services-subtitle {
    font-size: 20px;
    line-height: 1.6;
    font-weight: 500;
    color: var(--medium-gray);
    max-width: 700px;
    margin: 0 auto;
    letter-spacing: -0.5px;
}

/* ==========================================
   SERVICES MODERN GRID
   ========================================== */
.services-modern {
    background: var(--white);
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.service-card {
    background: var(--light-gray);
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-medium);
    border: 1px solid transparent;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange), var(--primary-orange-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 107, 0, 0.1);
    background: var(--white);
}

.service-number {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-orange);
    opacity: 0.08;
    line-height: 1;
    transition: var(--transition-fast);
}

.service-card:hover .service-number {
    opacity: 0.15;
    transform: scale(1.1);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 25px;
    color: var(--primary-orange);
    transition: var(--transition-fast);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    color: var(--primary-orange-dark);
}

.service-icon svg {
    width: 100%;
    height: 100%;
    stroke-width: 1.5;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--black);
    letter-spacing: -0.5px;
}

.service-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--medium-gray);
}

/* ==========================================
   PRODUCTS PAGE - PREMIUM HERO SECTION
   ========================================== */
.products-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    padding-bottom: 80px;
    overflow: hidden;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.98) 0%, 
        rgba(248, 249, 250, 0.95) 50%,
        rgba(255, 255, 255, 0.98) 100%);
}

.products-hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.products-label {
    display: inline-block;
    background: rgba(255, 107, 0, 0.08);
    border: 1px solid rgba(255, 107, 0, 0.2);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 30px;
    color: var(--primary-orange);
    backdrop-filter: blur(10px);
}

.products-hero h1 {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -2px;
    color: var(--black);
}

.products-hero h1 .highlight {
    color: var(--primary-orange);
    position: relative;
    display: inline-block;
}

.products-hero h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-orange);
    opacity: 0.3;
}

.products-subtitle {
    font-size: 20px;
    line-height: 1.6;
    font-weight: 500;
    color: var(--medium-gray);
    max-width: 700px;
    margin: 0 auto;
    letter-spacing: -0.5px;
}

/* ==========================================
   PRODUCTS CATALOGUE STYLES
   ========================================== */
.products-catalogue {
    background: var(--white);
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.product-category {
    margin-bottom: 80px;
}

.product-category:last-child {
    margin-bottom: 0;
}

.category-header {
    margin-bottom: 40px;
}

.category-header h2 {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -1px;
    color: var(--black);
}

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

.product-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
    border: 1px solid var(--border-color);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 107, 0, 0.2);
}

.product-image {
    height: 220px;
    background: var(--light-gray);
    overflow: hidden;
    position: relative;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-medium);
}

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

.product-info {
    padding: 25px;
}

.product-info h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--black);
}

.product-info p {
    font-size: 14px;
    color: var(--medium-gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.availability-notice {
    text-align: center;
    padding: 30px;
    background: var(--light-gray);
    border-radius: 12px;
    margin-top: 60px;
}

.availability-notice p {
    font-size: 15px;
    color: var(--medium-gray);
}

/* ==========================================
   LOGISTICS PAGE - PREMIUM HERO SECTION
   ========================================== */
.logistics-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    padding-bottom: 80px;
    overflow: hidden;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.98) 0%, 
        rgba(248, 249, 250, 0.95) 50%,
        rgba(255, 255, 255, 0.98) 100%);
}

.logistics-hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.logistics-label {
    display: inline-block;
    background: rgba(255, 107, 0, 0.08);
    border: 1px solid rgba(255, 107, 0, 0.2);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 30px;
    color: var(--primary-orange);
    backdrop-filter: blur(10px);
}

.logistics-hero h1 {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -2px;
    color: var(--black);
}

.logistics-hero h1 .highlight {
    color: var(--primary-orange);
    position: relative;
    display: inline-block;
}

.logistics-hero h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-orange);
    opacity: 0.3;
}

.logistics-subtitle {
    font-size: 20px;
    line-height: 1.6;
    font-weight: 500;
    color: var(--medium-gray);
    max-width: 700px;
    margin: 0 auto;
    letter-spacing: -0.5px;
}

/* ==========================================
   LOGISTICS MODERN GRID
   ========================================== */
.logistics-modern {
    background: var(--white);
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

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

.logistics-card {
    background: var(--light-gray);
    border-radius: 20px;
    padding: 35px 25px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-medium);
    border: 1px solid transparent;
}

.logistics-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange), var(--primary-orange-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.logistics-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 107, 0, 0.1);
    background: var(--white);
}

.logistics-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    color: var(--primary-orange);
    transition: var(--transition-fast);
}

.logistics-card:hover .logistics-icon {
    transform: scale(1.1);
    color: var(--primary-orange-dark);
}

.logistics-icon svg {
    width: 100%;
    height: 100%;
    stroke-width: 1.5;
}

.logistics-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--black);
    letter-spacing: -0.5px;
}

.logistics-card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--medium-gray);
}

/* ==========================================
   LOGISTICS BENEFITS SECTION
   ========================================== */
.logistics-benefits {
    background: var(--light-gray);
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.logistics-benefits .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.logistics-benefits .section-label {
    display: inline-block;
    background: rgba(255, 107, 0, 0.1);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-orange);
    margin-bottom: 20px;
}

.logistics-benefits h2 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -1px;
    color: var(--black);
}

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

.benefit-card {
    background: var(--white);
    border-radius: 16px;
    padding: 35px 25px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-medium);
    border: 1px solid var(--border-color);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 107, 0, 0.2);
}

.benefit-number {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-orange);
    opacity: 0.08;
    line-height: 1;
    transition: var(--transition-fast);
}

.benefit-card:hover .benefit-number {
    opacity: 0.15;
    transform: scale(1.1);
}

.benefit-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--black);
    letter-spacing: -0.5px;
}

.benefit-card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--medium-gray);
}

/* ==========================================
   CONTACT PAGE - PREMIUM HERO SECTION
   ========================================== */
.contact-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    padding-bottom: 80px;
    overflow: hidden;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.98) 0%, 
        rgba(248, 249, 250, 0.95) 50%,
        rgba(255, 255, 255, 0.98) 100%);
}

.contact-hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.contact-label {
    display: inline-block;
    background: rgba(255, 107, 0, 0.08);
    border: 1px solid rgba(255, 107, 0, 0.2);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 30px;
    color: var(--primary-orange);
    backdrop-filter: blur(10px);
}

.contact-hero h1 {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -2px;
    color: var(--black);
}

.contact-hero h1 .highlight {
    color: var(--primary-orange);
    position: relative;
    display: inline-block;
}

.contact-hero h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-orange);
    opacity: 0.3;
}

.contact-subtitle {
    font-size: 20px;
    line-height: 1.6;
    font-weight: 500;
    color: var(--medium-gray);
    max-width: 700px;
    margin: 0 auto;
    letter-spacing: -0.5px;
}

/* ==========================================
   CONTACT MODERN SECTION
   ========================================== */
.contact-modern {
    background: var(--white);
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

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

.contact-info h2 {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 40px;
    letter-spacing: -1px;
    color: var(--black);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background: var(--light-gray);
    border-radius: 16px;
    transition: var(--transition-fast);
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    width: 50px;
    height: 50px;
    color: var(--primary-orange);
    flex-shrink: 0;
}

.contact-icon svg {
    width: 100%;
    height: 100%;
    stroke-width: 1.5;
}

.contact-details h3 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--black);
    letter-spacing: 0.5px;
}

.contact-details p {
    font-size: 15px;
    color: var(--medium-gray);
    line-height: 1.6;
}

.contact-details a {
    color: var(--primary-orange);
    text-decoration: none;
    transition: var(--transition-fast);
}

.contact-details a:hover {
    color: var(--primary-orange-dark);
}

.contact-form-wrapper h2 {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 40px;
    letter-spacing: -1px;
    color: var(--black);
}

.contact-form {
    background: var(--light-gray);
    padding: 40px;
    border-radius: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--black);
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 15px;
    font-family: var(--font-primary);
    transition: var(--transition-fast);
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
}

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

.form-message {
    margin-top: 20px;
    padding: 15px 20px;
    border-radius: 10px;
    font-size: 14px;
    line-height: 1.6;
}

.form-message.error {
    background: rgba(220, 38, 38, 0.1);
    color: #dc2626;
    border: 1px solid rgba(220, 38, 38, 0.2);
}

.form-message.success {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

/* ==========================================
   MAP SECTION - RESPONSIVE GOOGLE MAPS
   ========================================== */
.map-section {
    background: var(--light-gray);
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.map-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ==========================================
   PAGE-SPECIFIC RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 1024px) {
    .services-grid,
    .logistics-grid,
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .services-hero h1,
    .products-hero h1,
    .logistics-hero h1,
    .contact-hero h1 {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .services-hero,
    .products-hero,
    .logistics-hero,
    .contact-hero {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .services-hero h1,
    .products-hero h1,
    .logistics-hero h1,
    .contact-hero h1 {
        font-size: 36px;
        letter-spacing: -1px;
    }

    .services-label,
    .products-label,
    .logistics-label,
    .contact-label {
        font-size: 11px;
        padding: 8px 18px;
    }

    .services-subtitle,
    .products-subtitle,
    .logistics-subtitle,
    .contact-subtitle {
        font-size: 16px;
    }

    .services-grid,
    .logistics-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .category-header h2 {
        font-size: 28px;
    }

    .contact-info h2,
    .contact-form-wrapper h2 {
        font-size: 28px;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .hero-architectural-line {
        height: 60px;
    }
}

@media (max-width: 480px) {
    .services-hero h1,
    .products-hero h1,
    .logistics-hero h1,
    .contact-hero h1 {
        font-size: 28px;
    }

    .services-subtitle,
    .products-subtitle,
    .logistics-subtitle,
    .contact-subtitle {
        font-size: 14px;
    }

    .category-header h2 {
        font-size: 24px;
    }

    .contact-info h2,
    .contact-form-wrapper h2 {
        font-size: 24px;
    }

    .service-card,
    .logistics-card,
    .benefit-card {
        padding: 30px 20px;
    }

    .product-card {
        border-radius: 12px;
    }

    .product-info {
        padding: 20px;
    }

    .map-section {
        padding: 60px 0;
    }

    .map-container {
        padding-bottom: 60%; /* Slightly taller on mobile */
    }
}

/* ==========================================
   REDUCED MOTION SUPPORT
   ========================================== */
@media (prefers-reduced-motion: reduce) {
    .mission-hero h1 .highlight::after,
    .principle-card::before,
    .customer-card::after,
    .service-card::before,
    .logistics-card::before,
    .benefit-card::before,
    .shape,
    .bg-gradient,
    .bg-mesh,
    .bg-grid,
    .mouse-light {
        animation: none !important;
        transition: none !important;
    }

    .scroll-animate {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* ==========================================
   COMPANY PRESENTATION SECTION
   ========================================== */
.company-presentation {
    background: var(--light-gray);
    padding: 120px 0;
    position: relative;
    z-index: 1;
}

.presentation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.presentation-image {
    position: relative;
}

.image-frame {
    position: relative;
    display: inline-block;
}

.presentation-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
    transition: var(--transition-slow);
}

.frame-border {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border: 2px solid var(--primary-orange);
    border-radius: 20px;
    z-index: 1;
    opacity: 0.3;
    transition: var(--transition-slow);
}

.frame-accent {
    position: absolute;
    top: 50%;
    right: -40px;
    width: 100px;
    height: 100px;
    background: var(--primary-orange);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.2;
    z-index: 0;
    transition: var(--transition-slow);
}

.presentation-image:hover .presentation-img {
    transform: translateY(-10px);
}

.presentation-image:hover .frame-border {
    transform: translate(10px, 10px);
    opacity: 0.5;
}

.presentation-image:hover .frame-accent {
    opacity: 0.4;
}

.presentation-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-orange);
    margin-bottom: 20px;
}

.presentation-text h2 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--black);
    letter-spacing: -2px;
}

.presentation-text p {
    font-size: 17px;
    line-height: 1.9;
    color: var(--medium-gray);
    margin-bottom: 25px;
}

.presentation-stats {
    display: flex;
    gap: 50px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-orange);
    line-height: 1;
}

.stat-label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--medium-gray);
}

/* ==========================================
   CAPABILITIES SECTION
   ========================================== */
.capabilities-section {
    background: var(--white);
    padding: 120px 0;
    position: relative;
    z-index: 1;
}

.capabilities-header {
    text-align: center;
    margin-bottom: 80px;
}

.capabilities-header h2 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--black);
    letter-spacing: -2px;
}

.capabilities-header p {
    font-size: 17px;
    color: var(--medium-gray);
    max-width: 600px;
    margin: 0 auto;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.capability-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.capability-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange), var(--primary-orange-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-medium);
}

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

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

.capability-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 107, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    color: var(--primary-orange);
    transition: var(--transition-medium);
}

.capability-card:hover .capability-icon {
    background: var(--primary-orange);
    color: var(--white);
    transform: scale(1.1);
}

.capability-icon svg {
    width: 35px;
    height: 35px;
}

.capability-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--black);
}

.capability-card p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--medium-gray);
    margin-bottom: 20px;
}

.capability-line {
    width: 40px;
    height: 3px;
    background: var(--primary-orange);
    border-radius: 2px;
    opacity: 0;
    transform: scaleX(0);
    transition: var(--transition-medium);
}

.capability-card:hover .capability-line {
    opacity: 1;
    transform: scaleX(1);
}

/* ==========================================
   VALUES SECTION
   ========================================== */
.values-section {
    background: var(--black);
    padding: 120px 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.values-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(255, 107, 0, 0.05) 0%,
        transparent 50%,
        rgba(255, 107, 0, 0.05) 100%);
    pointer-events: none;
}

.values-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.values-header h2 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--white);
    letter-spacing: -2px;
}

.values-header p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

.value-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 50px 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(255, 107, 0, 0.1) 0%,
        transparent 100%);
    opacity: 0;
    transition: var(--transition-medium);
}

.value-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-orange);
    background: rgba(255, 255, 255, 0.05);
}

.value-item:hover::before {
    opacity: 1;
}

.value-number {
    font-size: 72px;
    font-weight: 800;
    color: var(--primary-orange);
    opacity: 0.15;
    line-height: 1;
    margin-bottom: 20px;
    transition: var(--transition-medium);
}

.value-item:hover .value-number {
    opacity: 0.3;
    transform: translateX(10px);
}

.value-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--white);
    transition: var(--transition-medium);
}

.value-item:hover .value-content h3 {
    color: var(--primary-orange);
}

.value-content p {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: var(--transition-medium);
}

.value-item:hover .value-content p {
    max-height: 200px;
    opacity: 1;
    margin-top: 15px;
}

.value-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary-orange);
    transition: var(--transition-medium);
}

.value-item:hover .value-accent {
    width: 100%;
}

/* ==========================================
   LARGE TYPOGRAPHY SECTION
   ========================================== */
.typography-section {
    background: var(--white);
    padding: 150px 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.large-text {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.text-line {
    font-size: 120px;
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -5px;
    color: var(--black);
    opacity: 0.05;
    transition: var(--transition-slow);
}

.text-line:hover {
    opacity: 0.1;
    transform: translateX(20px);
}

.text-accent {
    color: var(--primary-orange);
    opacity: 0.08;
}

/* ==========================================
   ENHANCED CTA SECTION
   ========================================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-orange-dark) 100%);
    color: var(--white);
    padding: 120px 0;
    text-align: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.05;
    pointer-events: none;
}

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

.cta-label {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
}

.cta-section h2 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--white);
    letter-spacing: -2px;
    line-height: 1.1;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.95);
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn-primary {
    background: var(--white);
    color: var(--primary-orange);
}

.cta-section .btn-primary:hover {
    background: var(--light-gray);
    color: var(--primary-orange-dark);
}

.cta-section .btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.cta-section .btn-secondary:hover {
    background: var(--white);
    color: var(--primary-orange);
}

/* ==========================================
   ABOUT PAGE RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 1024px) {
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-hero h1 {
        font-size: 48px;
    }

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

    .presentation-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .presentation-image {
        order: -1;
    }

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

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

    .story-intro h2 {
        font-size: 42px;
    }

    .story-header h3 {
        font-size: 28px;
    }

    .presentation-text h2 {
        font-size: 36px;
    }

    .capabilities-header h2,
    .values-header h2 {
        font-size: 36px;
    }

    .text-line {
        font-size: 80px;
    }

    .cta-section h2 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding-top: 120px;
        padding-bottom: 60px;
        min-height: auto;
    }

    .about-hero h1 {
        font-size: 36px;
    }

    .about-hero p {
        font-size: 16px;
    }

    .story-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .story-number {
        font-size: 60px;
        position: static;
    }

    .story-header h3 {
        font-size: 24px;
    }

    .story-text p {
        font-size: 15px;
    }

    .presentation-stats {
        flex-direction: column;
        gap: 30px;
    }

    .capabilities-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .value-item {
        padding: 40px 30px;
    }

    .value-number {
        font-size: 48px;
    }

    .value-content h3 {
        font-size: 20px;
    }

    .story-intro h2 {
        font-size: 32px;
    }

    .presentation-text h2 {
        font-size: 28px;
    }

    .capabilities-header h2,
    .values-header h2 {
        font-size: 28px;
    }

    .text-line {
        font-size: 50px;
        letter-spacing: -2px;
    }

    .cta-section h2 {
        font-size: 28px;
    }

    .cta-section p {
        font-size: 16px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .about-hero h1 {
        font-size: 28px;
    }

    .story-intro h2,
    .presentation-text h2,
    .capabilities-header h2,
    .values-header h2,
    .cta-section h2 {
        font-size: 24px;
    }

    .text-line {
        font-size: 36px;
        letter-spacing: -1px;
    }

    .capability-card,
    .value-item {
        padding: 30px 25px;
    }

    .stat-number {
        font-size: 32px;
    }
}

/* ==========================================
   PRINT STYLES
   ========================================== */
@media print {
    .navbar,
    .whatsapp-button,
    .back-to-top,
    .hamburger,
    .dynamic-background,
    .scroll-indicator {
        display: none;
    }

    .hero {
        padding-top: 0;
    }

    body {
        font-size: 12pt;
    }
}
