/* ===== HEXAGON DESIGN SYSTEM ===== */
/* 3D Art - Premium Hexagonal Theme */
/* Author: Svilenkovic Hosting */
/* Version: 3.1 - SUBTLE HEXAGON REDESIGN */

/* ===== HEXAGON SVG PATTERNS ===== */
:root {
    /* Hexagon clip paths */
    --hex-clip: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    --hex-clip-wide: polygon(5% 0%, 95% 0%, 100% 50%, 95% 100%, 5% 100%, 0% 50%);
    --hex-clip-tall: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    --hex-clip-subtle: polygon(3% 0%, 97% 0%, 100% 50%, 97% 100%, 3% 100%, 0% 50%);
    
    /* Colors */
    --hex-primary: #ff6600;
    --hex-secondary: #ffaa00;
    --hex-glow: rgba(255, 102, 0, 0.15);
    --hex-border: rgba(255, 102, 0, 0.1);
    --hex-bg-dark: #f0f2f5;
    --hex-bg-card: rgba(255, 255, 255, 0.95);
    
    /* OPTIMIZED hexagon patterns - medium size, sharp strokes, clear visibility */
    --hex-pattern-strong: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='50' height='87' viewBox='0 0 50 87'%3E%3Cpath d='M25 58L0 43.5L0 14.5L25 0L50 14.5L50 43.5L25 58L25 87' fill='none' stroke='%23ff6600' stroke-opacity='0.4' stroke-width='2.0'/%3E%3C/svg%3E");
    --hex-pattern: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='52' viewBox='0 0 30 52'%3E%3Cpath d='M15 35L0 26L0 9L15 0L30 9L30 26L15 35L15 52' fill='none' stroke='%23ff6600' stroke-opacity='0.3' stroke-width='1.5'/%3E%3C/svg%3E");
    --hex-pattern-light: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='52' viewBox='0 0 30 52'%3E%3Cpath d='M15 35L0 26L0 9L15 0L30 9L30 26L15 35L15 52' fill='none' stroke='%23ff6600' stroke-opacity='0.15' stroke-width='1.5'/%3E%3C/svg%3E");
    --hex-pattern-accent: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='52' viewBox='0 0 30 52'%3E%3Cpath d='M15 35L0 26L0 9L15 0L30 9L30 26L15 35L15 52' fill='none' stroke='%23ff6600' stroke-opacity='0.35' stroke-width='1.5'/%3E%3C/svg%3E");
}

/* ===== GLOBAL HEXAGON BACKGROUND - SUBTLE ===== */
body {
    position: relative;
    background: linear-gradient(135deg, #f0f2f5 0%, #e8eaed 50%, #f0f2f5 100%);
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: var(--hex-pattern-strong);
    background-size: 50px 87px;
    pointer-events: none;
    z-index: -1;
    opacity: 0.6;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: var(--hex-pattern);
    background-size: 30px 52px;
    pointer-events: none;
    z-index: -1;
    opacity: 0.7;
}

/* ===== LIGHT THEME HEXAGON PATTERNS ===== */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: var(--hex-pattern-strong);
    background-size: 50px 87px;
    pointer-events: none;
    z-index: 1;
    opacity: 0.7;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: var(--hex-pattern-accent);
    background-size: 40px 70px;
    pointer-events: none;
    z-index: 1;
    opacity: 0.3;
}

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

.hero-overlay {
    z-index: 2 !important;
}

.hero-content {
    position: relative;
    z-index: 3 !important;
}

/* ===== LIGHT THEME HERO ===== */
.hex-card::before,
.feature-card::before,
.product-card::before,
.service-card::before,
.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: var(--hex-pattern-light);
    background-size: 35px 62px;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 0;
}

.hex-card:hover::before,
.feature-card:hover::before,
.product-card:hover::before,
.service-card:hover::before,
.team-card:hover::before {
    opacity: 1;
}

.hex-card:hover,
.feature-card:hover,
.product-card:hover,
.service-card:hover,
.team-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 102, 0, 0.4);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(255, 102, 0, 0.1),
        inset 0 0 60px rgba(255, 102, 0, 0.03);
}

/* ===== LIGHT THEME CARDS ===== */
.feature-icon::before,
.service-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff6600 0%, #ffaa00 100%);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    transition: all 0.4s ease;
}

.feature-icon::after,
.service-icon::after {
    content: '';
    position: absolute;
    width: 90%;
    height: 90%;
    background: linear-gradient(135deg, rgba(255, 130, 0, 0.3) 0%, rgba(255, 170, 0, 0.15) 100%);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.feature-icon svg,
.service-icon svg {
    position: relative;
    z-index: 1;
    color: #ffffff;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.feature-card:hover .feature-icon::before,
.service-card:hover .service-icon::before {
    transform: rotate(30deg) scale(1.1);
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.4) 0%, rgba(255, 170, 0, 0.2) 100%);
}

/* ===== HEXAGON SECTION DIVIDERS ===== */
.section {
    position: relative;
}

.section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 102, 0, 0.5) 20%,
        #ff6600 50%,
        rgba(255, 102, 0, 0.5) 80%,
        transparent 100%
    );
    clip-path: polygon(5% 0%, 95% 0%, 100% 50%, 95% 100%, 5% 100%, 0% 50%);
}

/* ===== HEXAGON BUTTONS ===== */
.btn-hex,
.btn-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background: linear-gradient(135deg, #ff6600 0%, #ff8533 50%, #ffaa00 100%);
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.btn-hex::before,
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: var(--hex-pattern-light);
    background-size: 28px 49px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-hex:hover::before,
.btn-primary:hover::before {
    opacity: 0.3;
}

.btn-hex:hover,
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 10px 30px rgba(255, 102, 0, 0.4),
        0 0 20px rgba(255, 102, 0, 0.2);
}

/* ===== HEXAGON OUTLINE BUTTONS ===== */
.btn-outline {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    background: transparent;
    color: #ff6600;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid rgba(255, 102, 0, 0.5);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.1) 0%, rgba(255, 170, 0, 0.05) 100%);
    transition: left 0.4s ease;
}

.btn-outline:hover::before {
    left: 0;
}

.btn-outline:hover {
    border-color: #ff6600;
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 102, 0, 0.2);
}

/* ===== SECTION HEADERS WITH HEX ACCENTS ===== */
.section-title {
    position: relative;
    display: inline-block;
}

.section-title .highlight {
    position: relative;
    color: #ff6600;
}

.section-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #ff6600, #ffaa00);
    clip-path: polygon(2% 0%, 98% 0%, 100% 50%, 98% 100%, 2% 100%, 0% 50%);
}

/* ===== HEXAGON DECORATIVE ELEMENTS ===== */
.hex-decoration {
    position: absolute;
    width: 60px;
    height: 69px;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.1) 0%, rgba(255, 170, 0, 0.05) 100%);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    pointer-events: none;
}

/* ===== FLOATING HEXAGONS ===== */
/* ===== PROMINENT FLOATING HEXAGONS ===== */
.hex-float {
    position: fixed;
    pointer-events: none;
    z-index: 1;
}

.hex-float-1 {
    top: 15%;
    left: 5%;
    width: 120px;
    height: 139px;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.08) 0%, rgba(255, 170, 0, 0.04) 100%);
    border: 1px solid rgba(255, 102, 0, 0.15);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    animation: floatHex1 20s ease-in-out infinite;
    box-shadow: 0 0 40px rgba(255, 102, 0, 0.1);
}

.hex-float-2 {
    top: 25%;
    right: 6%;
    width: 90px;
    height: 104px;
    background: linear-gradient(135deg, rgba(255, 170, 0, 0.06) 0%, rgba(255, 102, 0, 0.03) 100%);
    border: 1px solid rgba(255, 170, 0, 0.12);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    animation: floatHex2 25s ease-in-out infinite;
    box-shadow: 0 0 30px rgba(255, 170, 0, 0.08);
}

.hex-float-3 {
    bottom: 25%;
    left: 8%;
    width: 70px;
    height: 81px;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.05) 0%, rgba(255, 136, 0, 0.02) 100%);
    border: 1px solid rgba(255, 102, 0, 0.1);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    animation: floatHex3 18s ease-in-out infinite;
    box-shadow: 0 0 25px rgba(255, 102, 0, 0.06);
}

.hex-float-4 {
    bottom: 35%;
    right: 10%;
    width: 100px;
    height: 115px;
    background: linear-gradient(135deg, rgba(255, 136, 0, 0.07) 0%, rgba(255, 102, 0, 0.03) 100%);
    border: 1px solid rgba(255, 136, 0, 0.12);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    animation: floatHex4 22s ease-in-out infinite;
    box-shadow: 0 0 35px rgba(255, 136, 0, 0.08);
}

/* Additional floating hexagons for more presence */
.hex-float-5 {
    top: 60%;
    left: 3%;
    width: 60px;
    height: 69px;
    background: linear-gradient(135deg, rgba(255, 170, 0, 0.04) 0%, transparent 100%);
    border: 1px solid rgba(255, 170, 0, 0.08);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    animation: floatHex5 28s ease-in-out infinite;
}

.hex-float-6 {
    top: 70%;
    right: 4%;
    width: 50px;
    height: 58px;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.04) 0%, transparent 100%);
    border: 1px solid rgba(255, 102, 0, 0.08);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    animation: floatHex6 24s ease-in-out infinite;
}

@keyframes floatHex1 {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.35; }
    25% { transform: translateY(-20px) rotate(5deg); opacity: 0.5; }
    50% { transform: translateY(-40px) rotate(10deg); opacity: 1; }
    75% { transform: translateY(-20px) rotate(5deg); opacity: 0.5; }
}

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

@keyframes floatHex3 {
    0%, 100% { transform: translateX(0) rotate(0deg); opacity: 0.5; }
    50% { transform: translateX(35px) rotate(20deg); opacity: 0.4; }
}

@keyframes floatHex4 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.3; }
    33% { transform: translate(-15px, -20px) rotate(-8deg); opacity: 0.4; }
    66% { transform: translate(-25px, -10px) rotate(-12deg); opacity: 0.5; }
}

@keyframes floatHex5 {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.4; }
    50% { transform: translateY(-25px) scale(1.1); opacity: 0.35; }
}

@keyframes floatHex6 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.4; }
    50% { transform: translate(-20px, 15px) rotate(10deg); opacity: 0.35; }
}

/* ===== HEXAGON GRID FOR PRODUCTS ===== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 249, 252, 0.95) 100%);
}

.product-card .product-image {
    position: relative;
    overflow: hidden;
}

.product-card .product-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: var(--hex-pattern-accent);
    background-size: 40px 70px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card:hover .product-image::after {
    opacity: 0.5;
}

/* ===== HEXAGON BADGES ===== */
.product-badge,
.badge-hex {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, #ff6600 0%, #ffaa00 100%);
    color: #1a1a1a;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    clip-path: polygon(8% 0%, 92% 0%, 100% 50%, 92% 100%, 8% 100%, 0% 50%);
}

/* ===== HEXAGON STATS ===== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 252, 0.95) 100%);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ff6600 0%, #ffaa00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    margin-top: 0.5rem;
    color: #444444;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ===== HEXAGON CONTACT FORM ===== */
.contact-form {
    position: relative;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 249, 252, 0.95) 100%);
    border: 1px solid rgba(255, 102, 0, 0.15);
    border-radius: 20px;
    padding: 3rem;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: var(--hex-pattern);
    background-size: 40px 70px;
    opacity: 0.5;
    pointer-events: none;
}

.form-group input,
.form-group textarea,
.form-group select {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 102, 0, 0.2);
    border-radius: 10px;
    color: #1a1a1a;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: #ff6600;
    box-shadow: 0 0 20px rgba(255, 102, 0, 0.15);
    outline: none;
}

/* ===== HEXAGON FOOTER ===== */
.footer {
    position: relative;
    background: linear-gradient(180deg, #f0f2f5 0%, #e8eaed 100%);
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: var(--hex-pattern);
    background-size: 40px 70px;
    opacity: 0.3;
    pointer-events: none;
}

/* ===== HEXAGON NAVIGATION ENHANCEMENT ===== */
.navbar {
    position: relative;
}

.navbar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(255, 102, 0, 0.3) 20%,
        rgba(255, 102, 0, 0.5) 50%,
        rgba(255, 102, 0, 0.3) 80%,
        transparent 100%
    );
}

.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 30px;
    height: 3px;
    background: linear-gradient(90deg, #ff6600, #ffaa00);
    clip-path: polygon(10% 0%, 90% 0%, 100% 50%, 90% 100%, 10% 100%, 0% 50%);
    transition: transform 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}

/* ===== GALLERY HEXAGON OVERLAY ===== */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: var(--hex-pattern-accent);
    background-size: 35px 62px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.gallery-item:hover::before {
    opacity: 0.3;
}

/* ===== HEXAGON SCROLL INDICATOR ===== */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 46px;
    background: transparent;
    border: 2px solid rgba(255, 102, 0, 0.5);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-indicator::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #ff6600;
    border-radius: 50%;
    animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

@keyframes scrollDot {
    0%, 100% { opacity: 1; transform: translate(-50%, -50%); }
    50% { opacity: 0.5; transform: translate(-50%, 5px); }
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 768px) {
    body::before {
        background-size: 35px 62px;
    }
    
    .hero::before {
        background-size: 40px 70px;
    }
    
    .hex-float {
        display: none;
    }
    
    .feature-icon,
    .service-icon {
        width: 60px;
        height: 69px;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    body::before {
        background-size: 28px 49px;
    }
    
    .section::after {
        width: 120px;
    }
}

/* ===== HEXAGON LOADING ANIMATION ===== */
.hex-loader {
    width: 60px;
    height: 69px;
    position: relative;
}

.hex-loader::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff6600 0%, #ffaa00 100%);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    animation: hexSpin 2s linear infinite;
}

@keyframes hexSpin {
    0% { transform: rotate(0deg); opacity: 1; }
    50% { transform: rotate(180deg); opacity: 0.3; }
    100% { transform: rotate(360deg); opacity: 1; }
}

/* ===== HEXAGON TOOLTIP ===== */
.hex-tooltip {
    position: relative;
}

.hex-tooltip::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.98);
    color: #1a1a1a;
    font-size: 0.85rem;
    white-space: nowrap;
    border: 1px solid rgba(255, 102, 0, 0.2);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.hex-tooltip:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-5px);
}

/* ===== PAGE TRANSITION ===== */
.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f0f2f5;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.page-transition.active {
    opacity: 1;
    pointer-events: all;
}

.page-transition::before {
    content: '';
    width: 80px;
    height: 92px;
    background: linear-gradient(135deg, #ff6600 0%, #ffaa00 100%);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    animation: hexPulseLoader 1s ease-in-out infinite;
}

@keyframes hexPulseLoader {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(0.8); opacity: 0.35; }
}

/* ============================================== */
/* ===== COMPLETE HEXAGON UI REDESIGN ===== */
/* ============================================== */

/* ===== HEXAGONAL NAVIGATION ===== */
.navbar {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 102, 0, 0.1);
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: var(--hex-pattern);
    background-size: 35px 62px;
    opacity: 0.3;
    pointer-events: none;
}

.nav-menu .nav-link {
    position: relative;
    padding: 10px 20px;
    margin: 0 5px;
    color: rgba(0, 0, 0, 0.75);
    font-weight: 500;
    transition: all 0.3s ease;
    background: transparent;
    border: 1px solid transparent;
    clip-path: var(--hex-clip-wide);
}

.nav-menu .nav-link:hover,
.nav-menu .nav-link.active {
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.15) 0%, rgba(255, 170, 0, 0.1) 100%);
    border-color: rgba(255, 102, 0, 0.3);
    color: #ff6600;
}

.nav-link-cta {
    background: linear-gradient(135deg, #ff6600 0%, #ff8533 100%) !important;
    color: #ffffff !important;
    border: none !important;
}

.nav-link-cta:hover {
    background: linear-gradient(135deg, #ff8533 0%, #ffaa00 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 102, 0, 0.4);
}

/* Mobile menu hexagon style */
.mobile-menu-toggle span {
    clip-path: var(--hex-clip-wide);
    background: linear-gradient(90deg, #ff6600, #ffaa00);
}

/* ===== HEXAGONAL HERO SECTION ===== */
.hero {
    position: relative;
    background: transparent;
}

.hero-title {
    position: relative;
    text-shadow: 0 0 40px rgba(255, 102, 0, 0.3);
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #ff6600, #ffaa00, #ff6600, transparent);
    clip-path: var(--hex-clip-wide);
}

.hero-subtitle {
    position: relative;
    padding: 15px 30px;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.08) 0%, rgba(255, 170, 0, 0.04) 100%);
    border: 1px solid rgba(255, 102, 0, 0.15);
    clip-path: var(--hex-clip-subtle);
    margin: 20px auto;
    max-width: 800px;
}

/* Hero buttons hexagon style */
.hero-buttons .btn {
    clip-path: var(--hex-clip-wide);
    padding: 16px 40px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.hero-buttons .btn-primary {
    background: linear-gradient(135deg, #ff6600 0%, #ff8533 50%, #ffaa00 100%);
    border: none;
    box-shadow: 0 0 30px rgba(255, 102, 0, 0.3);
}

.hero-buttons .btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 40px rgba(255, 102, 0, 0.5);
}

.hero-buttons .btn-secondary {
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.08) 0%, rgba(255, 170, 0, 0.04) 100%);
    border: 2px solid rgba(255, 102, 0, 0.6);
    color: #ff6600;
}

.hero-buttons .btn-secondary:hover {
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.15) 0%, rgba(255, 170, 0, 0.1) 100%);
    border-color: #ff6600;
    color: #1a1a1a;
}

/* ===== HEXAGONAL SECTION HEADERS ===== */
.section-header {
    position: relative;
    margin-bottom: 4rem;
}

.section-title {
    position: relative;
    display: inline-block;
    padding-bottom: 20px;
}

.section-title::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 69px;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.1) 0%, rgba(255, 170, 0, 0.05) 100%);
    clip-path: var(--hex-clip-tall);
    z-index: -1;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #ff6600, #ffaa00, #ff6600, transparent);
    clip-path: var(--hex-clip-wide);
}

.section-subtitle {
    position: relative;
    display: inline-block;
    padding: 10px 30px;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.05) 0%, transparent 100%);
    border-left: 3px solid #ff6600;
    margin-top: 1rem;
}

/* ===== HEXAGONAL FEATURE CARDS ===== */
.feature-card {
    position: relative;
    padding: 2.5rem 2rem;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 249, 252, 0.95) 100%);
    border: 1px solid rgba(255, 102, 0, 0.1);
    clip-path: polygon(5% 0%, 95% 0%, 100% 50%, 95% 100%, 5% 100%, 0% 50%);
    overflow: visible;
    text-align: center;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.3) 0%, transparent 50%, rgba(255, 170, 0, 0.3) 100%);
    clip-path: polygon(5% 0%, 95% 0%, 100% 50%, 95% 100%, 5% 100%, 0% 50%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 40px rgba(255, 102, 0, 0.1);
}

/* Feature icon hexagon frame */
.feature-icon {
    position: relative;
    width: 100px;
    height: 115px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff6600 0%, #ffaa00 100%);
    clip-path: var(--hex-clip-tall);
    opacity: 1;
    transition: all 0.4s ease;
}

.feature-icon::after {
    content: '';
    position: absolute;
    width: 85%;
    height: 85%;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    clip-path: var(--hex-clip-tall);
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.1);
}

.feature-card:hover .feature-icon::before {
    transform: rotate(30deg) scale(1.15);
    opacity: 1;
}

.feature-icon svg {
    position: relative;
    z-index: 1;
    width: 48px;
    height: 48px;
    color: #ffffff;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon svg {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ff6600, #ff8533, #ffaa00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.feature-text {
    color: #444444;
    line-height: 1.7;
}

/* ===== HEXAGONAL PRODUCT CARDS ===== */
.product-card {
    position: relative;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 249, 252, 0.95) 100%);
    border: 1px solid rgba(255, 102, 0, 0.1);
    border-radius: 0;
    clip-path: polygon(5% 0%, 95% 0%, 100% 50%, 95% 100%, 5% 100%, 0% 50%);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, #ff6600, #ffaa00, #ff6600, transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card:hover::before {
    opacity: 1;
}

.product-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 0 50px rgba(255, 102, 0, 0.15),
        inset 0 0 100px rgba(255, 102, 0, 0.02);
    border-color: rgba(255, 102, 0, 0.3);
}

.product-image {
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%);
}

.product-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(255, 255, 255, 0.7) 100%);
    z-index: 1;
    pointer-events: none;
}

.product-image img {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Product badge hexagon */
.product-badge {
    position: absolute;
    top: 15px;
    right: -5px;
    padding: 8px 25px 8px 20px;
    background: linear-gradient(135deg, #ff6600 0%, #ffaa00 100%);
    color: #1a1a1a;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 50%, 100% 100%, 10px 100%, 0% 50%);
    z-index: 2;
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.4);
}

.product-content {
    padding: 2rem;
    position: relative;
}

.product-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ff6600, #ff8533, #ffaa00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.product-description {
    color: #444444;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.product-features li {
    position: relative;
    padding: 8px 0 8px 30px;
    color: #333333;
    border-bottom: 1px solid rgba(255, 102, 0, 0.1);
}

.product-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 21px;
    background: linear-gradient(135deg, #ff6600 0%, #ffaa00 100%);
    clip-path: var(--hex-clip-tall);
    opacity: 0.4;
}

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

/* ===== HEXAGONAL SERVICE CARDS ===== */
.service-card {
    position: relative;
    padding: 2.5rem;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 249, 252, 0.95) 100%);
    border: 1px solid rgba(255, 102, 0, 0.1);
    clip-path: polygon(5% 0%, 95% 0%, 100% 50%, 95% 100%, 5% 100%, 0% 50%);
    text-align: center;
    transition: all 0.5s ease;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-12px);
    border-color: rgba(255, 102, 0, 0.3);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1), 0 0 40px rgba(255, 102, 0, 0.08);
}

.service-icon {
    position: relative;
    width: 120px;
    height: 138px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff6600 0%, #ffaa00 100%);
    clip-path: var(--hex-clip-tall);
    transition: all 0.4s ease;
}

.service-icon::after {
    content: '';
    position: absolute;
    width: 88%;
    height: 88%;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    clip-path: var(--hex-clip-tall);
}

.service-card:hover .service-icon::before {
    transform: rotate(-15deg) scale(1.1);
    background: linear-gradient(135deg, #ff8533 0%, #ffbb33 100%);
}

.service-icon svg {
    position: relative;
    z-index: 1;
    width: 64px;
    height: 64px;
    color: #ffffff;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: all 0.4s ease;
}

.service-card:hover .service-icon svg {
    transform: scale(1.15) rotate(5deg);
}

.service-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ff6600, #ff8533, #ffaa00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.service-description {
    color: #444444;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.service-list li {
    position: relative;
    padding: 10px 0 10px 35px;
    color: #333333;
    border-bottom: 1px solid rgba(255, 102, 0, 0.08);
}

.service-list li::before {
    content: '';
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 18px;
    background: linear-gradient(135deg, #ff6600 0%, #ffaa00 100%);
    clip-path: var(--hex-clip-tall);
}

/* ===== HEXAGONAL BUTTONS ===== */
.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 35px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    clip-path: var(--hex-clip-wide);
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

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

.btn-primary {
    background: linear-gradient(135deg, #ff6600 0%, #ff8533 50%, #ffaa00 100%);
    color: #ffffff;
    box-shadow: 0 5px 20px rgba(255, 102, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(255, 102, 0, 0.5);
}

.btn-secondary {
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.08) 0%, rgba(255, 170, 0, 0.04) 100%);
    color: #ff6600;
    border: 2px solid rgba(255, 102, 0, 0.6);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.1) 0%, rgba(255, 170, 0, 0.05) 100%);
    border-color: #ff6600;
    color: #1a1a1a;
}

.btn-outline {
    background: transparent;
    color: #ff6600;
    border: 2px solid rgba(255, 102, 0, 0.4);
    clip-path: var(--hex-clip-wide);
}

.btn-outline:hover {
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.15) 0%, rgba(255, 170, 0, 0.1) 100%);
    border-color: #ff6600;
    color: #1a1a1a;
    transform: translateY(-2px);
}

/* ===== HEXAGONAL IMAGES ===== */
.hex-image {
    clip-path: var(--hex-clip-tall);
}

.hex-image-wide {
    clip-path: var(--hex-clip-wide);
}

/* Gallery items with hex overlay */
.gallery-item {
    position: relative;
    overflow: hidden;
    clip-path: polygon(5px 0, calc(100% - 5px) 0, 100% 5px, 100% calc(100% - 5px), calc(100% - 5px) 100%, 5px 100%, 0 calc(100% - 5px), 0 5px);
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.4) 0%, rgba(255, 170, 0, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item img {
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* ===== HEXAGONAL CONTACT FORM ===== */
.contact-form {
    position: relative;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 249, 252, 0.95) 100%);
    border: 1px solid rgba(255, 102, 0, 0.15);
    padding: 3rem;
    clip-path: polygon(0 25px, 25px 0, calc(100% - 25px) 0, 100% 25px, 100% calc(100% - 25px), calc(100% - 25px) 100%, 25px 100%, 0 calc(100% - 25px));
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: var(--hex-pattern);
    background-size: 40px 70px;
    opacity: 0.4;
    pointer-events: none;
}

.form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #222222;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px 20px;
    background: rgba(248, 249, 250, 0.95);
    border: 1px solid rgba(255, 102, 0, 0.2);
    color: #1a1a1a;
    font-size: 1rem;
    clip-path: var(--hex-clip-subtle);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #ff6600;
    box-shadow: 0 0 25px rgba(255, 102, 0, 0.2), inset 0 0 20px rgba(255, 102, 0, 0.05);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(0, 0, 0, 0.4);
}

/* ===== HEXAGONAL STATS ===== */
.stat-card {
    position: relative;
    padding: 2.5rem 2rem;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 252, 0.9) 100%);
    border: 1px solid rgba(255, 102, 0, 0.1);
    clip-path: var(--hex-clip-tall);
    text-align: center;
    transition: all 0.4s ease;
}

.stat-card:hover {
    transform: scale(1.05);
    border-color: rgba(255, 102, 0, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 0 30px rgba(255, 102, 0, 0.08);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ff6600 0%, #ffaa00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #444444;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ===== HEXAGONAL FOOTER ===== */
.footer {
    position: relative;
    background: linear-gradient(180deg, #f0f2f5 0%, #e8eaed 100%);
    padding-top: 5rem;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, transparent 0%, #ff6600 20%, #ffaa00 50%, #ff6600 80%, transparent 100%);
    clip-path: polygon(0 0, 100% 0, 99% 100%, 1% 100%);
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: var(--hex-pattern);
    background-size: 40px 70px;
    opacity: 0.2;
    pointer-events: none;
}

.footer-column {
    position: relative;
    z-index: 1;
}

.footer-heading {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 15px;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ff6600, #ff8533, #ffaa00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    text-shadow: none;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #ff6600, #ffaa00, transparent);
    clip-path: var(--hex-clip-wide);
}

.footer-links li a {
    position: relative;
    display: inline-block;
    padding: 8px 0 8px 25px;
    color: #555555;
    transition: all 0.3s ease;
}

.footer-links li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 14px;
    background: linear-gradient(135deg, #ff6600 0%, #ffaa00 100%);
    clip-path: var(--hex-clip-tall);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.footer-links li a:hover {
    color: #ff6600;
    padding-left: 30px;
}

.footer-links li a:hover::before {
    opacity: 1;
    transform: translateY(-50%) scale(1.2);
}

.footer-bottom {
    position: relative;
    margin-top: 3rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 102, 0, 0.1);
    text-align: center;
    z-index: 1;
}

/* Social links hexagon */
.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 52px;
    background: linear-gradient(145deg, rgba(255, 102, 0, 0.1) 0%, rgba(255, 170, 0, 0.05) 100%);
    border: 1px solid rgba(255, 102, 0, 0.2);
    clip-path: var(--hex-clip-tall);
    color: #ff6600;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: linear-gradient(135deg, #ff6600 0%, #ffaa00 100%);
    color: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 102, 0, 0.3);
}

/* ===== HEXAGONAL LOADING SCREEN ===== */
.loading-screen {
    background: linear-gradient(135deg, #f0f2f5 0%, #f5f5f5 100%);
}

.loading-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: var(--hex-pattern);
    background-size: 40px 70px;
    opacity: 0.3;
}

.loader-logo svg polygon {
    stroke: url(#loaderGradient);
    stroke-width: 2;
    fill: none;
    animation: hexStroke 2s ease-in-out infinite;
}

@keyframes hexStroke {
    0%, 100% { stroke-dashoffset: 0; }
    50% { stroke-dashoffset: 200; }
}

.loader-bar {
    position: relative;
    width: 200px;
    height: 8px;
    background: rgba(255, 102, 0, 0.1);
    clip-path: var(--hex-clip-wide);
    overflow: hidden;
}

.loader-progress {
    height: 100%;
    background: linear-gradient(90deg, #ff6600, #ffaa00);
    animation: loaderProgress 2s ease-in-out infinite;
}

@keyframes loaderProgress {
    0% { width: 0%; }
    50% { width: 100%; }
    100% { width: 0%; }
}

/* ===== HEXAGONAL DROPDOWN MENU ===== */
.dropdown-menu {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 249, 252, 0.95) 100%);
    border: 1px solid rgba(255, 102, 0, 0.15);
    clip-path: none;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.dropdown-link {
    position: relative;
    padding: 12px 20px 12px 35px;
    color: #333333;
    transition: all 0.3s ease;
}

.dropdown-link::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 16px;
    background: linear-gradient(135deg, #ff6600 0%, #ffaa00 100%);
    clip-path: var(--hex-clip-tall);
    opacity: 0;
    transition: all 0.3s ease;
}

.dropdown-link:hover {
    background: linear-gradient(90deg, rgba(255, 102, 0, 0.1), transparent);
    color: #ff6600;
    padding-left: 40px;
}

.dropdown-link:hover::before {
    opacity: 1;
}

/* ===== HEXAGONAL BREADCRUMBS ===== */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.05) 0%, transparent 100%);
    clip-path: var(--hex-clip-subtle);
}

.breadcrumb-item {
    color: #444444;
}

.breadcrumb-item.active {
    color: #ff6600;
}

.breadcrumb-separator {
    width: 12px;
    height: 14px;
    background: linear-gradient(135deg, #ff6600 0%, #ffaa00 100%);
    clip-path: var(--hex-clip-tall);
    opacity: 0.5;
}

/* ===== HEXAGONAL TESTIMONIALS ===== */
.testimonial-card {
    position: relative;
    padding: 2.5rem;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 249, 252, 0.95) 100%);
    border: 1px solid rgba(255, 102, 0, 0.1);
    clip-path: polygon(20px 0, calc(100% - 20px) 0, 100% 20px, 100% calc(100% - 20px), calc(100% - 20px) 100%, 20px 100%, 0 calc(100% - 20px), 0 20px);
}

.testimonial-avatar {
    width: 80px;
    height: 92px;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    clip-path: var(--hex-clip-tall);
    border: 3px solid #ff6600;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-quote {
    position: relative;
    font-style: italic;
    color: rgba(0, 0, 0, 0.75);
    line-height: 1.8;
    padding-left: 30px;
}

.testimonial-quote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 4rem;
    color: #ff6600;
    opacity: 0.3;
    font-family: Georgia, serif;
}

/* ===== HEXAGONAL PRICING ===== */
.pricing-card {
    position: relative;
    padding: 3rem 2rem;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 249, 252, 0.95) 100%);
    border: 1px solid rgba(255, 102, 0, 0.1);
    clip-path: polygon(0 30px, 30px 0, calc(100% - 30px) 0, 100% 30px, 100% calc(100% - 30px), calc(100% - 30px) 100%, 30px 100%, 0 calc(100% - 30px));
    text-align: center;
    transition: all 0.4s ease;
}

.pricing-card.featured {
    border-color: rgba(255, 102, 0, 0.3);
    transform: scale(1.05);
}

.pricing-card.featured::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #ff6600 0%, #ffaa00 100%);
    clip-path: polygon(0 30px, 30px 0, calc(100% - 30px) 0, 100% 30px, 100% calc(100% - 30px), calc(100% - 30px) 100%, 30px 100%, 0 calc(100% - 30px));
    z-index: -1;
    opacity: 0.3;
}

.pricing-header {
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 102, 0, 0.1);
    margin-bottom: 2rem;
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ff6600, #ff8533, #ffaa00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    text-shadow: none;
}

.pricing-price {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ff6600 0%, #ffaa00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== HEXAGONAL TIMELINE/PROCESS ===== */
.process-step {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem 0;
}

.process-number {
    flex-shrink: 0;
    width: 70px;
    height: 81px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff6600 0%, #ffaa00 100%);
    clip-path: var(--hex-clip-tall);
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a1a1a;
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.3);
}

.process-content {
    flex: 1;
    padding-top: 15px;
}

.process-line {
    position: absolute;
    left: 35px;
    top: 100px;
    bottom: -20px;
    width: 2px;
    background: linear-gradient(180deg, #ff6600 0%, rgba(255, 102, 0, 0.1) 100%);
}

/* ===== HEXAGONAL MODALS ===== */
.modal-content {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 249, 252, 0.98) 100%);
    border: 1px solid rgba(255, 102, 0, 0.2);
    clip-path: polygon(0 20px, 20px 0, calc(100% - 20px) 0, 100% 20px, 100% calc(100% - 20px), calc(100% - 20px) 100%, 20px 100%, 0 calc(100% - 20px));
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15), 0 0 50px rgba(255, 102, 0, 0.06);
}

.modal-header {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(255, 102, 0, 0.15);
    background: linear-gradient(90deg, rgba(255, 102, 0, 0.05), transparent);
}

.modal-close {
    width: 40px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.1) 0%, rgba(255, 170, 0, 0.05) 100%);
    border: 1px solid rgba(255, 102, 0, 0.2);
    clip-path: var(--hex-clip-tall);
    color: #ff6600;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: linear-gradient(135deg, #ff6600 0%, #ffaa00 100%);
    color: #1a1a1a;
}

/* ===== HEXAGONAL PAGINATION ===== */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.pagination-item {
    width: 45px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 252, 0.9) 100%);
    border: 1px solid rgba(255, 102, 0, 0.1);
    clip-path: var(--hex-clip-tall);
    color: #444444;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.pagination-item:hover,
.pagination-item.active {
    background: linear-gradient(135deg, #ff6600 0%, #ffaa00 100%);
    color: #1a1a1a;
    border-color: transparent;
    transform: scale(1.1);
}

/* ===== HEXAGONAL TAGS/BADGES ===== */
.tag {
    display: inline-block;
    padding: 6px 18px;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.1) 0%, rgba(255, 170, 0, 0.05) 100%);
    border: 1px solid rgba(255, 102, 0, 0.2);
    clip-path: var(--hex-clip-wide);
    color: #ff6600;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tag:hover {
    background: linear-gradient(135deg, #ff6600 0%, #ffaa00 100%);
    color: #1a1a1a;
}

/* ===== HEXAGONAL ALERTS ===== */
.alert {
    position: relative;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.1) 0%, rgba(255, 170, 0, 0.05) 100%);
    border: 1px solid rgba(255, 102, 0, 0.2);
    clip-path: var(--hex-clip-subtle);
    color: #1a1a1a;
}

.alert::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, #ff6600, #ffaa00);
}

/* ===== HEXAGONAL ACCORDION ===== */
.accordion-item {
    margin-bottom: 1rem;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 249, 252, 0.95) 100%);
    border: 1px solid rgba(255, 102, 0, 0.1);
    clip-path: polygon(10px 0, calc(100% - 10px) 0, 100% 10px, 100% calc(100% - 10px), calc(100% - 10px) 100%, 10px 100%, 0 calc(100% - 10px), 0 10px);
    overflow: hidden;
}

.accordion-header {
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background: linear-gradient(90deg, rgba(255, 102, 0, 0.05), transparent);
}

.accordion-icon {
    width: 30px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.1) 0%, rgba(255, 170, 0, 0.05) 100%);
    clip-path: var(--hex-clip-tall);
    color: #ff6600;
    transition: all 0.3s ease;
}

.accordion-item.active .accordion-icon {
    background: linear-gradient(135deg, #ff6600 0%, #ffaa00 100%);
    color: #1a1a1a;
    transform: rotate(180deg);
}

/* ===== RESPONSIVE HEXAGON ADJUSTMENTS ===== */
@media (max-width: 992px) {
    .feature-icon,
    .service-icon {
        width: 80px;
        height: 92px;
    }
    
    .feature-icon svg,
    .service-icon svg {
        width: 40px;
        height: 40px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .nav-menu .nav-link {
        clip-path: none;
        padding: 15px 20px;
    }
    
    .hero-subtitle {
        clip-path: none;
        border-radius: 10px;
    }
    
    .hero-buttons .btn {
        clip-path: none;
        border-radius: 8px;
    }
    
    .feature-card,
    .product-card,
    .service-card {
        clip-path: polygon(5% 0%, 95% 0%, 100% 50%, 95% 100%, 5% 100%, 0% 50%) !important;
        border-radius: 0;
    }
    
    .contact-form {
        clip-path: none;
        border-radius: 20px;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        clip-path: none;
        border-radius: 10px;
    }
    
    .btn {
        clip-path: none;
        border-radius: 8px;
    }
    
    .feature-icon,
    .service-icon {
        width: 70px;
        height: 81px;
    }
    
    .section-title::before {
        display: none;
    }
}

@media (max-width: 480px) {
    .stat-card {
        clip-path: polygon(5% 0%, 95% 0%, 100% 50%, 95% 100%, 5% 100%, 0% 50%) !important;
        border-radius: 0;
    }
    
    .social-link {
        clip-path: none;
        border-radius: 50%;
        width: 45px;
        height: 45px;
    }
    
    .pagination-item {
        clip-path: none;
        border-radius: 50%;
        width: 40px;
        height: 40px;
    }
}

/* ============================================== */
/* ===== HEXAGON OVERRIDES - REMOVE CIRCLES ===== */
/* ============================================== */

/* ===== NAVBAR PREMIUM DESIGN ===== */
.navbar {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%) !important;
    border-bottom: 2px solid transparent !important;
    border-image: linear-gradient(90deg, transparent, rgba(255, 102, 0, 0.4), rgba(255, 170, 0, 0.3), rgba(255, 102, 0, 0.4), transparent) 1 !important;
    position: relative;
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: var(--hex-pattern);
    background-size: 35px 61px;
    opacity: 0.5;
    pointer-events: none;
}

.navbar::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 102, 0, 0.1) 10%,
        rgba(255, 102, 0, 0.6) 30%,
        rgba(255, 170, 0, 0.8) 50%,
        rgba(255, 102, 0, 0.6) 70%,
        rgba(255, 102, 0, 0.1) 90%,
        transparent 100%);
    animation: navGlow 3s ease-in-out infinite;
}

@keyframes navGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.nav-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 100%;
    background: radial-gradient(ellipse at center top, rgba(255, 102, 0, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

/* Nav links hexagon style */
.nav-link {
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%) scale(0);
    width: 20px;
    height: 23px;
    background: linear-gradient(135deg, #ff6600 0%, #ffaa00 100%);
    clip-path: var(--hex-clip-tall);
    opacity: 0;
    transition: all 0.3s ease;
}

.nav-link:hover::before,
.nav-link.active::before {
    transform: translateX(-50%) scale(1);
    opacity: 0.35;
}

/* ===== FEATURE ICONS - HEXAGON INSTEAD OF CIRCLE ===== */
.feature-icon,
.service-icon-box,
.contact-item-icon,
.why-choose-icon,
.process-icon,
.stat-icon,
.advantage-icon,
.info-icon,
.value-icon {
    border-radius: 0 !important;
    clip-path: var(--hex-clip-tall) !important;
    position: relative;
}

/* Override circular before/after */
.feature-icon::before,
.service-icon-box::before,
.contact-item-icon::before {
    border-radius: 0 !important;
    clip-path: var(--hex-clip-tall) !important;
}

/* Feature cards enhanced - TRUE HEXAGONAL */
.feature-card,
.service-card,
.product-card,
.advantage-card,
.value-card,
.info-card,
.stat-card,
.pricing-card,
.cta-box,
.product-detail-card,
.service-detail-card,
.material-item,
.process-step-horizontal,
.use-case-card,
.contact-cta,
.why-choose-card,
.reason-card {
    border-radius: 0 !important;
    clip-path: polygon(5% 0%, 95% 0%, 100% 50%, 95% 100%, 5% 100%, 0% 50%) !important;
}

/* ===== GALLERY ZOOM - HEXAGON ===== */
.gallery-zoom {
    border-radius: 0 !important;
    clip-path: var(--hex-clip-tall) !important;
    width: 50px !important;
    height: 58px !important;
}

/* ===== FOOTER PREMIUM DESIGN ===== */
.footer {
    position: relative;
    background: linear-gradient(180deg, #f0f2f5 0%, #e8eaed 50%, #e0e2e5 100%) !important;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: var(--hex-pattern);
    background-size: 35px 62px;
    opacity: 0.4;
    pointer-events: none;
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        transparent 0%,
        #ff6600 15%,
        #ffaa00 35%,
        #ff6600 50%,
        #ffaa00 65%,
        #ff6600 85%,
        transparent 100%);
}

.footer-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: radial-gradient(ellipse at center top, rgba(255, 102, 0, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

/* Footer floating hexagons */
.footer .container {
    position: relative;
}

.footer .container::before {
    content: '';
    position: absolute;
    top: 50px;
    left: -50px;
    width: 150px;
    height: 173px;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.05) 0%, transparent 100%);
    clip-path: var(--hex-clip-tall);
    animation: floatHex 15s ease-in-out infinite;
}

.footer .container::after {
    content: '';
    position: absolute;
    bottom: 100px;
    right: -30px;
    width: 100px;
    height: 115px;
    background: linear-gradient(135deg, rgba(255, 170, 0, 0.04) 0%, transparent 100%);
    clip-path: var(--hex-clip-tall);
    animation: floatHex 12s ease-in-out infinite reverse;
}

@keyframes floatHex {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* Footer logo hexagon frame */
.footer-logo-icon {
    position: relative;
    padding: 15px;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.1) 0%, rgba(255, 170, 0, 0.05) 100%);
    clip-path: var(--hex-clip-tall);
    margin-right: 15px;
}

.footer-logo-icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #ff6600, #ffaa00);
    clip-path: var(--hex-clip-tall);
    z-index: -1;
    opacity: 0.3;
}

/* Footer heading with hex decoration */
.footer-heading {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 15px;
    margin-bottom: 1.5rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #ff6600, #ffaa00, transparent);
    clip-path: var(--hex-clip-wide);
}

.footer-heading-icon {
    width: 32px;
    height: 37px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.15) 0%, rgba(255, 170, 0, 0.08) 100%);
    border: 1px solid rgba(255, 102, 0, 0.2);
    clip-path: var(--hex-clip-tall);
    color: #ff6600;
}

/* Footer contact items - consistent spacing */
.footer-contact {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.footer-contact .contact-item {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 10px 0 !important;
    border-bottom: 1px solid rgba(255, 102, 0, 0.08) !important;
    font-size: 0.95rem !important;
    line-height: 1.5 !important;
}

.footer-contact .contact-item:last-child {
    border-bottom: none !important;
}

.footer-contact .contact-icon {
    flex-shrink: 0;
    width: 36px !important;
    height: 42px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.12) 0%, rgba(255, 170, 0, 0.06) 100%) !important;
    border: 1px solid rgba(255, 102, 0, 0.15) !important;
    border-radius: 0 !important;
    clip-path: var(--hex-clip-tall) !important;
    color: #ff6600 !important;
    transition: all 0.3s ease !important;
}

.footer-contact .contact-item:hover .contact-icon {
    background: linear-gradient(135deg, #ff6600 0%, #ffaa00 100%) !important;
    color: #fff !important;
    transform: scale(1.1);
}

.footer-contact .contact-item a,
.footer-contact .contact-item span {
    color: #555555 !important;
    font-size: 0.95rem !important;
    transition: color 0.3s ease !important;
}

.footer-contact .contact-item:hover a,
.footer-contact .contact-item:hover span {
    color: #ff6600 !important;
}

/* Viber & WhatsApp specific colors */
.footer-contact .contact-item-viber .contact-icon {
    background: linear-gradient(135deg, rgba(115, 96, 242, 0.15) 0%, rgba(102, 92, 172, 0.08) 100%) !important;
    border-color: rgba(115, 96, 242, 0.2) !important;
    color: #7360f2 !important;
}

.footer-contact .contact-item-whatsapp .contact-icon {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.15) 0%, rgba(18, 140, 126, 0.08) 100%) !important;
    border-color: rgba(37, 211, 102, 0.2) !important;
    color: #25D366 !important;
}

/* Footer links with hex bullets */
.footer-links {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.footer-links li {
    margin-bottom: 8px !important;
}

.footer-links li a {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 8px 0 !important;
    color: #555555 !important;
    font-size: 0.95rem !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
}

.footer-links li a .link-arrow {
    display: none !important;
}

.footer-links li a::before {
    content: '' !important;
    flex-shrink: 0;
    width: 12px !important;
    height: 14px !important;
    background: linear-gradient(135deg, #ff6600 0%, #ffaa00 100%) !important;
    clip-path: var(--hex-clip-tall) !important;
    opacity: 0.5 !important;
    transition: all 0.3s ease !important;
}

.footer-links li a:hover {
    color: #ff6600 !important;
    padding-left: 5px !important;
}

.footer-links li a:hover::before {
    opacity: 1 !important;
    transform: scale(1.2) !important;
}

/* Footer social icons - hexagon */
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 1.5rem;
}

.footer-social .social-link {
    width: 45px !important;
    height: 52px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.1) 0%, rgba(255, 170, 0, 0.05) 100%) !important;
    border: 1px solid rgba(255, 102, 0, 0.2) !important;
    border-radius: 0 !important;
    clip-path: var(--hex-clip-tall) !important;
    color: #ff6600 !important;
    transition: all 0.3s ease !important;
}

.footer-social .social-link:hover {
    background: linear-gradient(135deg, #ff6600 0%, #ffaa00 100%) !important;
    color: #fff !important;
    transform: translateY(-5px) scale(1.05) !important;
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.3) !important;
}

/* Footer bottom */
.footer-bottom {
    position: relative;
    margin-top: 3rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 102, 0, 0.1);
    text-align: center;
    z-index: 1;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ff6600, #ffaa00, #ff6600, transparent);
}

/* Footer partners hexagon style */
.footer-partners {
    margin-top: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.03) 0%, transparent 100%);
    border: 1px solid rgba(255, 102, 0, 0.08);
    clip-path: polygon(10px 0, calc(100% - 10px) 0, 100% 10px, 100% calc(100% - 10px), calc(100% - 10px) 100%, 10px 100%, 0 calc(100% - 10px), 0 10px);
    position: relative;
    z-index: 1;
}

.footer-partners-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 1.5rem;
}

.footer-partners-icon {
    width: 35px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.1) 0%, rgba(255, 170, 0, 0.05) 100%);
    clip-path: var(--hex-clip-tall);
    font-size: 1.2rem;
}

/* ===== HERO SECTION ENHANCED ===== */
.hero::before {
    background-image: var(--hex-pattern) !important;
    background-size: 40px 70px !important;
    opacity: 0.3 !important;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, rgba(240, 242, 245, 0.8) 0%, transparent 100%);
    pointer-events: none;
}

/* Hero decorative hexagons */
.hero .container {
    position: relative;
}

/* Remove all radial-gradient circles */
.hero-background,
.about-hero-bg,
.service-hero-bg,
.contact-hero-bg,
.page-header {
    background-image: none !important;
    background: transparent !important;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: var(--hex-pattern);
    background-size: 40px 70px;
    opacity: 0.5;
}

/* ===== SECTION BACKGROUNDS - USE BODY HEX ONLY ===== */
/* Removed section-level hex patterns to prevent double-hex */
.cta-section::before,
.features-section::before,
.about-section::before {
    background: none !important;
    background-image: none !important;
}

/* ===== BUTTONS - ALL HEXAGONAL ===== */
.btn,
.button,
.submit-btn,
.cta-btn,
.hero-btn,
[class*="btn-"] {
    border-radius: 0 !important;
    clip-path: var(--hex-clip-wide);
}

/* ===== INPUT FIELDS - HEXAGONAL ===== */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="password"],
input[type="search"],
textarea,
select {
    border-radius: 0 !important;
    clip-path: var(--hex-clip-subtle);
    background: rgba(248, 249, 250, 0.95);
    border: 1px solid rgba(255, 102, 0, 0.15);
    transition: all 0.3s ease;
}

input:focus,
textarea:focus,
select:focus {
    border-color: #ff6600;
    box-shadow: 0 0 20px rgba(255, 102, 0, 0.15), inset 0 0 15px rgba(255, 102, 0, 0.03);
    outline: none;
}

/* ===== REMOVE ALL BORDER-RADIUS: 50% ===== */
[style*="border-radius: 50%"],
.circle,
.rounded-full,
.rounded-circle {
    border-radius: 0 !important;
    clip-path: var(--hex-clip-tall) !important;
}

/* Specific overrides for circular elements in styles.css */
.loader-bar {
    border-radius: 0 !important;
    clip-path: var(--hex-clip-wide) !important;
}

.mobile-menu-toggle span {
    border-radius: 0 !important;
    clip-path: var(--hex-clip-wide) !important;
}

/* Process/Timeline numbers */
.step-number,
.process-number {
    border-radius: 0 !important;
    clip-path: var(--hex-clip-tall) !important;
}

/* Dropdown menu - NO clip-path on dropdown-menu so submenus can overflow */
.dropdown-menu {
    border-radius: 0 !important;
    clip-path: none !important;
}
.submenu {
    border-radius: 0 !important;
    clip-path: polygon(0 10px, 10px 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%) !important;
}

/* Modal */
.modal-content {
    border-radius: 0 !important;
    clip-path: polygon(0 20px, 20px 0, calc(100% - 20px) 0, 100% 20px, 100% calc(100% - 20px), calc(100% - 20px) 100%, 20px 100%, 0 calc(100% - 20px)) !important;
}

/* Contact form wrapper */
.contact-form-wrapper {
    border-radius: 0 !important;
    clip-path: polygon(0 20px, 20px 0, calc(100% - 20px) 0, 100% 20px, 100% calc(100% - 20px), calc(100% - 20px) 100%, 20px 100%, 0 calc(100% - 20px)) !important;
}

/* Gallery items */
.gallery-item {
    border-radius: 0 !important;
    clip-path: polygon(5px 0, calc(100% - 5px) 0, 100% 5px, 100% calc(100% - 5px), calc(100% - 5px) 100%, 5px 100%, 0 calc(100% - 5px), 0 5px) !important;
}

/* Lightbox */
.lightbox-content {
    border-radius: 0 !important;
}

/* ===== WHY CHOOSE SECTION - HEXAGONAL ===== */
.why-choose-card,
.reason-card {
    border-radius: 0 !important;
    clip-path: polygon(5% 0%, 95% 0%, 100% 50%, 95% 100%, 5% 100%, 0% 50%) !important;
    position: relative;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 249, 252, 0.95) 100%) !important;
    border: 1px solid rgba(255, 102, 0, 0.1) !important;
}

.why-choose-icon,
.reason-icon {
    width: 80px !important;
    height: 92px !important;
    border-radius: 0 !important;
    clip-path: var(--hex-clip-tall) !important;
    background: linear-gradient(135deg, #ff6600 0%, #ffaa00 100%) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 1.5rem !important;
    position: relative;
}

.why-choose-icon::before,
.reason-icon::before {
    content: '' !important;
    position: absolute !important;
    inset: -3px !important;
    background: linear-gradient(135deg, #ff6600, #ffaa00) !important;
    clip-path: var(--hex-clip-tall) !important;
    z-index: -1 !important;
    opacity: 0 !important;
    transition: opacity 0.4s ease !important;
}

.why-choose-card:hover .why-choose-icon::before,
.reason-card:hover .reason-icon::before {
    opacity: 0.5 !important;
}

.why-choose-icon svg,
.reason-icon svg {
    color: #ffffff !important;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3)) !important;
}

/* ===== ADDITIONAL CIRCLE OVERRIDES ===== */
/* Loading spinner */
.loader,
.spinner,
.loading {
    border-radius: 0 !important;
    clip-path: var(--hex-clip-tall) !important;
}

/* Avatar/profile images */
.avatar,
.profile-img,
.author-img,
.team-img {
    border-radius: 0 !important;
    clip-path: var(--hex-clip-tall) !important;
}

/* Badges */
.badge,
.tag,
.label {
    border-radius: 0 !important;
    clip-path: var(--hex-clip-wide) !important;
}

/* Progress bars */
.progress,
.progress-bar {
    border-radius: 0 !important;
    clip-path: var(--hex-clip-wide) !important;
}

/* Tooltips */
.tooltip {
    border-radius: 0 !important;
    clip-path: polygon(10px 0, calc(100% - 10px) 0, 100% 10px, 100% calc(100% - 20px), calc(100% - 10px) calc(100% - 10px), 55% calc(100% - 10px), 50% 100%, 45% calc(100% - 10px), 10px calc(100% - 10px), 0 calc(100% - 20px), 0 10px) !important;
}

/* Image wrappers */
.img-wrapper,
.image-container,
.thumbnail {
    border-radius: 0 !important;
    clip-path: polygon(5px 0, calc(100% - 5px) 0, 100% 5px, 100% calc(100% - 5px), calc(100% - 5px) 100%, 5px 100%, 0 calc(100% - 5px), 0 5px) !important;
}

/* ===== SCROLLBAR - HEXAGONAL STYLE ===== */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f0f2f5;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #ff6600 0%, #cc5200 100%);
    border: 2px solid #f0f2f5;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #ff8533 0%, #ff6600 100%);
}

/* ===== SELECTION - ORANGE THEME ===== */
::selection {
    background: rgba(255, 102, 0, 0.3);
    color: #1a1a1a;
}

::-moz-selection {
    background: rgba(255, 102, 0, 0.3);
    color: #1a1a1a;
}

/* ===== RESPONSIVE FOOTER ===== */
@media (max-width: 768px) {
    .footer-contact .contact-icon {
        width: 32px !important;
        height: 37px !important;
    }
    
    .footer-social .social-link {
        width: 40px !important;
        height: 46px !important;
    }
    
    .footer-heading-icon {
        width: 28px;
        height: 32px;
    }
}

/* ============================================== */
/* ===== ENHANCED TITLE STYLES ===== */
/* ============================================== */

/* ============================================== */
/* ===== TITLE STYLES - GRADIENT LIKE LOADER ===== */
/* ============================================== */

/* Main section titles - gradient text, NO 3D */
.section-header h2,
.section-title,
h2.section-title,
.features-section h2,
.products-section h2,
.services-section h2,
.about-section h2,
.contact-section h2 {
    position: relative;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 5vw, 3rem);
    text-transform: uppercase;
    letter-spacing: 3px;
    background: linear-gradient(135deg, #ff6600, #ff8533, #ffaa00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

/* Highlighted/orange text in titles - gradient */
.section-title .highlight,
.section-title span,
h2 .highlight,
h2 span.text-gradient,
h2 span {
    background: linear-gradient(135deg, #ff6600, #ff8533, #ffaa00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    animation: none;
}

/* Hero title - gradient, NO 3D */
.hero-title,
.hero h1,
.page-header h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(2.5rem, 6vw, 4rem);
    text-transform: uppercase;
    letter-spacing: 4px;
    line-height: 1.2;
    background: linear-gradient(135deg, #ff6600, #ff8533, #ffaa00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

/* Hero highlighted text - gradient */
.hero-title .highlight,
.hero h1 span,
.page-header h1 span {
    display: inline;
    background: linear-gradient(135deg, #ff6600, #ff8533, #ffaa00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: none;
    text-shadow: none;
    animation: none;
}

/* Decorative hexagon before section titles */
.section-header::before,
.section-title-wrapper::before {
    content: '';
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 92px;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.15) 0%, rgba(255, 170, 0, 0.08) 100%);
    border: 1px solid rgba(255, 102, 0, 0.2);
    clip-path: var(--hex-clip-tall);
    z-index: -1;
    animation: pulseHex 4s ease-in-out infinite;
}

@keyframes pulseHex {
    0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.3; }
    50% { transform: translateX(-50%) scale(1.1); opacity: 1; }
}

/* Animated underline for titles */
.section-title::after,
h2.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #ff6600, #ffaa00, #ff6600, transparent);
    clip-path: var(--hex-clip-wide);
    animation: underlinePulse 2s ease-in-out infinite;
}

@keyframes underlinePulse {
    0%, 100% { width: 150px; opacity: 0.4; }
    50% { width: 200px; opacity: 1; }
}

/* Feature/card titles */
.feature-title,
.product-title,
.service-title,
.card-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    background: linear-gradient(135deg, #ff6600, #ff8533, #ffaa00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    position: relative;
}

.feature-card:hover .feature-title,
.product-card:hover .product-title,
.service-card:hover .service-title {
    background: linear-gradient(135deg, #ff6600 0%, #ffaa00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Subtitle styling */
.hero-subtitle,
.section-subtitle,
.page-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: #333333;
    letter-spacing: 0.5px;
    line-height: 1.7;
    max-width: 700px;
    margin: 1.5rem auto;
}

/* Footer headings */
.footer-title,
.footer h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-title-accent,
.footer-title span {
    background: linear-gradient(135deg, #ff6600 0%, #ffaa00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== MORE FLOATING HEXAGONS IN BACKGROUND ===== */
.hex-float-5,
.hex-float-6 {
    position: fixed;
    pointer-events: none;
    z-index: 1;
}

/* Background hexagon mesh - more visible */
body::after {
    content: '';
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200vw;
    height: 200vh;
    background-image: 
        radial-gradient(ellipse at 20% 30%, rgba(255, 102, 0, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(255, 170, 0, 0.02) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(255, 136, 0, 0.015) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    animation: bgGlow 10s ease-in-out infinite;
}

@keyframes bgGlow {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

/* Responsive title adjustments */
@media (max-width: 768px) {
    .hero-title,
    .hero h1,
    .page-header h1 {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
        letter-spacing: 2px;
    }
    
    .section-header h2,
    .section-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
        letter-spacing: 2px;
    }
    
    .section-header::before {
        width: 60px;
        height: 69px;
        top: -30px;
    }
    
    .hex-float-1,
    .hex-float-2,
    .hex-float-3,
    .hex-float-4,
    .hex-float-5,
    .hex-float-6 {
        display: none;
    }
}
/* ===== LIGHT THEME HEXAGON ADJUSTMENTS ===== */


/* === HERO HEXAGON FIX - Remove duplicate background === */
.hero::before,
.hero::after {
    display: none !important;
}


/* === FOOTER LIST HEXAGON FIX === */
.footer-links li::before,
.footer-products li::before,
.quick-links li::before {
    position: relative !important;
    left: 0 !important;
    top: 0 !important;
    display: inline-block !important;
    vertical-align: middle !important;
    margin-right: 8px !important;
    flex-shrink: 0 !important;
}
.footer-links li,
.footer-products li,
.quick-links li {
    display: flex !important;
    align-items: center !important;
    padding-left: 0 !important;
    text-indent: 0 !important;
}
.footer-links li a,
.footer-products li a,
.quick-links li a {
    text-indent: 0 !important;
}


/* === FRIENDS/PARTNERS SECTION FIX === */
.footer-partners .partner-link,
.footer-partners a,
.friends-section a,
.friends-links a {
    color: var(--hex-primary, #ff6600) !important;
    opacity: 0.85;
    transition: opacity 0.3s, color 0.3s;
}
.footer-partners .partner-link:hover,
.footer-partners a:hover,
.friends-section a:hover,
.friends-links a:hover {
    color: var(--hex-secondary, #ffaa00) !important;
    opacity: 1;
}
.footer-partners h3,
.footer-partners .section-title,
.friends-section h3 {
    color: var(--hex-primary, #ff6600) !important;
}


/* ========================================
   HEXAGON DEDUPLICATION FIX
   Body provides global hex pattern via body::before/::after.
   Disable all section-level hex overlays that cause duplicates.
   ======================================== */
.hero::before,
.hero::after {
    background: none !important;
    background-image: none !important;
}

.section::before,
.section::after,
section::before,
section::after,
.section-dark::before,
.section-dark::after,
.about-preview::before,
.about-preview::after,
.products-section::before,
.products-section::after,
.services-section::before,
.services-section::after,
.cta-section::before,
.cta-section::after,
.features-section::before,
.features-section::after,
.about-section::before,
.about-section::after,
.contact-section::before,
.contact-section::after,
.page-header::before,
.page-header::after,
.gallery-section::before,
.gallery-section::after,
.testimonials-section::before,
.testimonials-section::after,
.services-detail::before,
.services-detail::after {
    background-image: none !important;
}

.section::after {
    background-image: none !important;
}

.footer::before {
    opacity: 0.3 !important;
}
