/* ===== Global Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #F9B719;
    --dark-gold: #E5A610;
    --light-gold: #FDD870;
    --black: #000000;
    --dark-gray: #0a0a0a;
    --medium-gray: #1a1a1a;
    --light-gray: #0f0f0f;
    --white: #ffffff;
    --text-dark: #ffffff;
    --text-light: rgba(255, 255, 255, 0.8);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Alexandria', 'Cairo', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.8;
    color: var(--white);
    overflow-x: hidden;
    background: var(--black);
    width: 100%;
    max-width: 100vw;
    position: relative;
    -webkit-overflow-scrolling: touch;
}

/* Performance optimizations */
img {
    transform: translateZ(0);
    image-rendering: -webkit-optimize-contrast;
}

.section {
    transform: translateZ(0);
}

.card, .stat-card-modern, .testimonial-card-modern {
    transform: translateZ(0);
}

/* Optimize fonts */
body {
    text-rendering: optimizeSpeed;
}

/* Reduce repaints */
.floating-btn,
.nav-link,
.partner-frame,
.cert-3d-frame {
    backface-visibility: hidden;
    perspective: 1000px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* ===== Floating Buttons ===== */
.floating-buttons-right {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-buttons-left {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
    text-decoration: none;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.phone-btn {
    background: linear-gradient(135deg, #ff3b3b 0%, #d32f2f 100%);
}

.chat-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.floating-btn:hover {
    transform: translateY(-5px) scale(1.1);
}

.phone-btn:hover {
    box-shadow: 0 10px 35px rgba(255, 59, 59, 0.5);
}

.chat-btn:hover {
    box-shadow: 0 10px 35px rgba(37, 211, 102, 0.5);
}

/* ===== Header ===== */
.header {
    background: linear-gradient(135deg, var(--black) 0%, var(--medium-gray) 100%);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 5px 30px rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(10px);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--dark-gold) 0%, var(--gold) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 20px;
    color: var(--black);
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.7), 0 5px 20px rgba(255, 215, 0, 0.4);
    animation: logoGlow 2s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% {
        box-shadow: 0 0 25px rgba(212, 175, 55, 0.7), 0 5px 20px rgba(212, 175, 55, 0.4);
    }
    50% {
        box-shadow: 0 0 35px rgba(212, 175, 55, 0.9), 0 5px 25px rgba(212, 175, 55, 0.6);
    }
}

.logo-text h1 {
    color: var(--gold);
    font-size: 24px;
    font-weight: 700;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

.logo-text p {
    color: var(--white);
    font-size: 11px;
    letter-spacing: 3px;
    font-weight: 300;
}

.nav {
    display: flex;
    gap: 5px;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    padding: 10px 15px;
    font-size: 13px;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link i {
    font-size: 12px;
}

.nav-link:hover, .nav-link.active {
    background: linear-gradient(135deg, var(--dark-gold) 0%, var(--gold) 100%);
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.mobile-menu-btn {
    display: none;
    background: var(--gold);
    border: none;
    padding: 10px 15px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 20px;
    color: var(--black);
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 50%, var(--medium-gray) 100%);
    position: relative;
    display: flex;
    align-items: center;
    padding: 20px 0;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    animation: moveGradient 15s ease-in-out infinite;
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
    padding-top: 40px;
    padding-bottom: 100px;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--gold);
    padding: 10px 20px;
    border-radius: 50px;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 30px;
    animation: fadeInDown 1s ease;
}

.hero-title {
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.2s both;
}

.title-main {
    display: block;
    font-size: 52px;
    font-weight: 900;
    color: var(--gold);
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
    line-height: 1.3;
    margin-bottom: 10px;
}

.title-sub {
    display: block;
    font-size: 24px;
    color: var(--gold);
    font-weight: 300;
}

.hero-description {
    font-size: 22px;
    color: var(--light-gray);
    line-height: 1.8;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease 0.3s both;
    max-width: 650px;
    font-weight: 400;
}

.hero-info-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    margin-top: 50px;
}

.info-card.premium {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(212, 175, 55, 0.4);
    padding: 25px 35px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease 0.4s both;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

/* Animated glow border */
.info-card.premium::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, var(--gold), transparent, var(--gold));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.info-card.premium:hover::before {
    opacity: 1;
}

.info-card.premium:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 
        0 15px 45px rgba(212, 175, 55, 0.3),
        0 0 60px rgba(212, 175, 55, 0.15);
    background: rgba(0, 0, 0, 0.8);
}

/* Icon container */
.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 8px 25px rgba(212, 175, 55, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
    flex-shrink: 0;
}

.card-icon::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    right: 3px;
    height: 40%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.4), transparent);
    border-radius: 13px 13px 50% 50%;
}

.info-card.premium:hover .card-icon {
    transform: scale(1.08) rotate(-3deg);
    box-shadow: 
        0 12px 35px rgba(212, 175, 55, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.card-icon i {
    font-size: 34px;
    color: #000;
    font-weight: 900;
    position: relative;
    z-index: 1;
}

/* Card content */
.card-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-align: right;
}

.info-value {
    font-size: 18px;
    color: #ffffff;
    font-weight: 700;
    line-height: 1.3;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.info-label {
    font-size: 14px;
    color: rgba(212, 175, 55, 0.95);
    font-weight: 500;
    line-height: 1.3;
}

/* Glow effect */
.card-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.info-card.premium:hover .card-glow {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 15px;
    animation: fadeInUp 1s ease 0.6s both;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--dark-gold) 0%, var(--gold) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

.social-icon:hover {
    transform: translateY(-5px) rotate(360deg);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.6);
}

.hero-image {
    position: relative;
    animation: fadeInRight 1s ease 0.4s both;
    z-index: 2;
}

.image-container {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-generator-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 0px rgba(212, 175, 55, 0));
    animation: float 3s ease-in-out infinite;
    transition: filter 0.3s ease;
    cursor: pointer;
    border-radius: 10px;
}

.hero-generator-image:hover {
    filter: drop-shadow(0 0 40px rgba(212, 175, 55, 0.8));
}

.generator-placeholder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 3px solid var(--gold);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.4);
}

.generator-placeholder i {
    font-size: 120px;
    color: var(--gold);
    animation: pulse 2s ease-in-out infinite;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--gold);
    font-size: 30px;
    animation: bounce 2s ease-in-out infinite;
    cursor: pointer;
}

/* ===== Company Description Section ===== */
.company-description-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 100%);
    position: relative;
    z-index: 1;
}

.company-description-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.description-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.description-title {
    font-size: 48px;
    font-weight: 900;
    color: var(--gold);
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
    margin-bottom: 30px;
    line-height: 1.4;
    animation: fadeInUp 1s ease both;
}

.title-underline-gold {
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0 auto 40px;
    border-radius: 2px;
    animation: fadeIn 1s ease 0.3s both;
}

.description-text {
    font-size: 22px;
    line-height: 2;
    color: #e0e0e0;
    font-weight: 400;
    text-align: center;
    padding: 0 40px;
    max-width: 1000px;
    margin: 0 auto;
    animation: fadeInUp 1s ease 0.5s both;
}

@media (max-width: 768px) {
    .company-description-section {
        padding: 60px 0;
    }
    
    .description-title {
        font-size: 32px;
    }
    
    .description-text {
        font-size: 18px;
        line-height: 1.8;
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .company-description-section {
        padding: 40px 0;
    }
    
    .description-title {
        font-size: 26px;
    }
    
    .description-text {
        font-size: 16px;
        line-height: 1.7;
        padding: 0 15px;
    }
}

/* ===== Brands Section ===== */
.brands-section {
    padding: 80px 0;
    background: var(--black);
    overflow: hidden;
    position: relative;
    display: none;
}

.brands-section .section-header {
    margin-bottom: 60px;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    align-items: center;
    justify-items: center;
}

.brand-item {
    width: 200px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.4s ease;
    animation: fadeInScale 0.6s ease forwards;
    opacity: 0;
}

.brand-item:nth-child(1) { animation-delay: 0.1s; }
.brand-item:nth-child(2) { animation-delay: 0.2s; }
.brand-item:nth-child(3) { animation-delay: 0.3s; }
.brand-item:nth-child(4) { animation-delay: 0.4s; }
.brand-item:nth-child(5) { animation-delay: 0.5s; }
.brand-item:nth-child(6) { animation-delay: 0.6s; }
.brand-item:nth-child(7) { animation-delay: 0.7s; }

.brand-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--gold);
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.brand-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
    display: block;
    width: auto;
    height: auto;
}

.brand-item:hover img {
    transform: scale(1.1);
}

/* Fix for broken images */
.brand-item img[alt] {
    font-size: 0;
}

.brand-item img[alt]::before {
    content: '';
    display: block;
}

.brand-item img[alt]::after {
    content: attr(alt);
    display: block;
    font-size: 14px;
    color: var(--gold);
    text-align: center;
    font-weight: 600;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ===== Sections ===== */
.section {
    padding: 100px 0;
    position: relative;
    background: var(--black);
}

.section-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.02) 0%, transparent 100%);
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--dark-gold) 0%, var(--gold) 100%);
    color: var(--black);
    padding: 8px 25px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.section-badge.gold {
    background: var(--gold);
    color: var(--black);
}

.section-title {
    font-size: 48px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
}

.section-title.white {
    color: var(--white);
}

.section-subtitle.white {
    color: var(--white);
}

.title-underline {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--dark-gold) 0%, var(--gold) 100%);
    margin: 0 auto;
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

.title-underline.gold {
    background: var(--gold);
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.content-wrapper.reverse {
    direction: ltr;
}

.content-wrapper.reverse .content-text {
    direction: rtl;
}

.features-list-modern {
    list-style: none;
    padding: 0;
}

.features-list-modern li {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.features-list-modern li:hover {
    transform: translateX(-10px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--gold);
}

.feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, var(--dark-gold) 0%, var(--gold) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-size: 24px;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.6), 0 0 30px rgba(255, 215, 0, 0.3);
    animation: iconGlow 3s ease-in-out infinite;
}

@keyframes iconGlow {
    0%, 100% {
        box-shadow: 0 5px 20px rgba(212, 175, 55, 0.6), 0 0 30px rgba(212, 175, 55, 0.3);
    }
    50% {
        box-shadow: 0 5px 25px rgba(212, 175, 55, 0.8), 0 0 40px rgba(212, 175, 55, 0.5);
    }
}

.feature-text h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.feature-text p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-light);
}

.cta-box {
    margin-top: 40px;
    padding: 25px;
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-right: 4px solid var(--gold);
    border-radius: 10px;
}

.cta-box p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--white);
}

.link-gold {
    color: var(--gold);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
}

.link-gold:hover {
    color: var(--light-gold);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
}

.image-frame-modern {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 3px solid var(--gold);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
}

.image-frame-modern::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.section-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 17px;
    position: relative;
    z-index: 1;
}

.generator-icon-large, .parts-icon-large, .maintenance-icon-large, .rental-icon-large, .export-icon-large {
    font-size: 100px;
    color: var(--gold);
    animation: iconPulse 3s ease-in-out infinite;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.6));
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.6));
    }
    50% {
        transform: scale(1.05);
        filter: drop-shadow(0 0 50px rgba(212, 175, 55, 0.9));
    }
}

.map-placeholder {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder i {
    font-size: 100px;
    color: var(--gold);
    opacity: 0.3;
}

.map-locations {
    position: absolute;
    width: 100%;
    height: 100%;
}

.location-pin {
    position: absolute;
    font-size: 30px;
    color: var(--gold);
    animation: pinBounce 2s ease-in-out infinite;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.8));
}

@keyframes pinBounce {
    0%, 100% {
        transform: translateY(0);
        filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.8));
    }
    50% {
        transform: translateY(-15px);
        filter: drop-shadow(0 0 25px rgba(212, 175, 55, 1));
    }
}

/* About Section */
.about-section {
    background: var(--dark-gray);
}

.about-content-modern {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.about-intro {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-content-modern p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.stats-grid-modern {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.stat-card-modern {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 215, 0, 0.2);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--dark-gold) 0%, var(--gold) 100%);
}

.stat-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(255, 215, 0, 0.3);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--gold);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--dark-gold) 0%, var(--gold) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    color: var(--black);
    margin-bottom: 25px;
    box-shadow: 0 5px 25px rgba(255, 215, 0, 0.6), 0 0 35px rgba(255, 215, 0, 0.4);
    animation: iconGlow 3s ease-in-out infinite;
}

.stat-card-modern h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.stat-card-modern p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 15px;
}

.skills-intro {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 25px;
}

.skill-bars-modern {
    margin-top: 30px;
}

.skill-item-modern {
    margin-bottom: 25px;
}

.skill-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.skill-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
}

.skill-percent {
    font-size: 15px;
    font-weight: 700;
    color: var(--gold);
}

.skill-bar-modern {
    width: 100%;
    height: 12px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.skill-progress-modern {
    height: 100%;
    background: linear-gradient(90deg, var(--dark-gold) 0%, var(--gold) 100%);
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
    transition: width 2s ease;
    width: 0;
}

/* Testimonials Section */
.testimonials-section {
    background: var(--black);
    position: relative;
    overflow: hidden;
}

.testimonials-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
}

.testimonials-subtitle {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 60px;
}

/* Scroll indicator - removed, now using HTML element with data-i18n */

.testimonials-grid-modern {
    display: flex;
    gap: 30px;
    position: relative;
    z-index: 1;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--gold) rgba(0, 0, 0, 0.3);
    padding: 20px 0;
    cursor: grab;
}

.testimonials-grid-modern:active {
    cursor: grabbing;
}

/* Custom scrollbar for webkit browsers */
.testimonials-grid-modern::-webkit-scrollbar {
    height: 8px;
}

.testimonials-grid-modern::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

.testimonials-grid-modern::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 10px;
}

.testimonials-grid-modern::-webkit-scrollbar-thumb:hover {
    background: var(--dark-gold);
}

.testimonial-card-modern {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.3);
    padding: 40px 30px;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    width: 350px;
}

.testimonial-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--dark-gold) 0%, var(--gold) 100%);
}

.testimonial-card-modern:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.5);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--gold);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.quote-icon-modern {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--dark-gold) 0%, var(--gold) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--black);
    box-shadow: 0 5px 25px rgba(255, 215, 0, 0.7), 0 0 40px rgba(255, 215, 0, 0.4);
    animation: iconGlow 3s ease-in-out infinite;
}

.client-avatar {
    width: 60px;
    height: 60px;
    background: rgba(255, 215, 0, 0.15);
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--gold);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

.testimonial-body h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 5px;
}

.client-role {
    font-size: 14px;
    color: var(--gold);
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.rating {
    display: flex;
    gap: 5px;
}

.rating i {
    color: var(--gold);
    font-size: 18px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

/* Contact Section */
.contact-section {
    background: var(--dark-gray);
}

.contact-subtitle {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 50px;
}

.contact-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.contact-form-modern {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 215, 0, 0.2);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.form-header {
    margin-bottom: 30px;
}

.form-note {
    font-size: 14px;
    color: var(--text-light);
}

.form-row {
    margin-bottom: 25px;
}

.form-group-modern label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
}

.input-wrapper {
    position: relative;
}

.input-wrapper i {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    color: var(--gold);
    font-size: 18px;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6));
}

/* Icon position for textarea */
.input-wrapper textarea ~ i {
    top: 20px;
    transform: translateY(0);
}

.input-wrapper input,
.input-wrapper textarea {
    width: 100%;
    padding: 15px 50px 15px 20px;
    border: 2px solid rgba(255, 215, 0, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.input-wrapper textarea {
    resize: vertical;
    min-height: 120px;
}

.input-wrapper input:focus,
.input-wrapper textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.input-wrapper input::placeholder,
.input-wrapper textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.submit-btn-modern {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--dark-gold) 0%, var(--gold) 100%);
    color: var(--black);
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
}

.submit-btn-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.5);
}

/* Footer */
.footer-modern {
    background: var(--black);
    color: var(--white);
}

.footer-top {
    padding: 80px 0 40px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.footer-grid-modern {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
}

.footer-logo-modern {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.logo-icon-footer {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--dark-gold) 0%, var(--gold) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 20px;
    color: var(--black);
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.7), 0 5px 20px rgba(255, 215, 0, 0.4);
}

.footer-logo-modern h3 {
    color: var(--gold);
    font-size: 22px;
    margin-bottom: 5px;
}

.footer-logo-modern p {
    font-size: 11px;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-desc {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-icon:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-5px);
}

.footer-col-modern h4 {
    color: var(--gold);
    font-size: 18px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
    transform: translateX(-5px);
}

.certifications-modern {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.cert-badge {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid var(--gold);
    padding: 15px 20px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.cert-badge i {
    font-size: 24px;
    color: var(--gold);
    filter: drop-shadow(0 0 12px rgba(255, 215, 0, 0.8));
}

.cert-badge span {
    font-size: 11px;
    color: var(--gold);
    font-weight: 600;
}

.footer-info-box {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.info-item i {
    font-size: 20px;
    color: var(--gold);
    margin-top: 5px;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.7));
}

.info-item div {
    display: flex;
    flex-direction: column;
}

.info-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 5px;
}

.info-value {
    font-size: 13px;
    color: var(--white);
    font-weight: 600;
}

.footer-middle {
    padding: 30px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.footer-contact-bar {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-size: 14px;
}

.contact-item i {
    font-size: 20px;
    color: var(--gold);
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.7));
}

.footer-bottom {
    padding: 30px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 8px;
}

.download-profile-btn {
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--dark-gold) 0%, var(--gold) 100%);
    color: var(--black);
    border: none;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
    text-decoration: none;
}

.download-profile-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.5);
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 40px rgba(255, 215, 0, 0.6);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes moveGradient {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero .container,
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-info-cards {
        grid-template-columns: 1fr;
    }
    
    .stats-grid-modern,
    .testimonials-grid-modern {
        grid-template-columns: 1fr;
    }
    
    .footer-grid-modern {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .title-main {
        font-size: 36px;
    }
    
    .title-sub {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .contact-form-modern {
        padding: 30px 20px;
    }
    
    .footer-contact-bar {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .hero-info-cards {
        flex-direction: column;
        gap: 20px;
        margin-top: 35px;
        padding: 0 10px;
    }
    
    .info-card.premium {
        width: 100%;
        padding: 20px 25px;
        max-width: 100%;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
        flex-shrink: 0;
    }
    
    .card-icon i {
        font-size: 28px;
    }
    
    .info-value {
        font-size: 16px;
    }
    
    .info-label {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .floating-buttons-right,
    .floating-buttons-left {
        bottom: 20px;
    }
    
    .floating-buttons-right {
        right: 20px;
    }
    
    .floating-buttons-left {
        left: 20px;
    }
    
    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .hero {
        padding: 80px 0 40px;
    }
    
    .title-main {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 26px;
    }
}

.logo-image {
    height: 40px;
    width: auto;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 2px 8px rgba(249, 183, 25, 0.2);
    transition: all 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(249, 183, 25, 0.3);
}

/* Footer Logo Image */
.footer-logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 2px 8px rgba(249, 183, 25, 0.2);
    transition: all 0.3s ease;
}

.footer-logo-image:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(249, 183, 25, 0.3);
}

/* Enhanced Animations */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Enhanced Body Background */
body {
    position: relative;
    background: #000000;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(184, 134, 11, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(212, 175, 55, 0.03) 0%, transparent 40%);
    animation: gradientMove 20s ease infinite;
    z-index: -2;
}

@keyframes gradientMove {
    0%, 100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1) rotate(5deg);
    }
}

/* Glass Effect for Cards */
.features-list-modern li,
.stat-card-modern,
.testimonial-card-modern,
.contact-form-modern {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Enhanced Hover Effects */
.nav-link,
.social-icon,
.footer-social-icon,
.submit-btn-modern,
.download-profile-btn {
    position: relative;
    overflow: hidden;
}

.nav-link::before,
.social-icon::before,
.footer-social-icon::before,
.submit-btn-modern::before,
.download-profile-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.nav-link:hover::before,
.social-icon:hover::before,
.footer-social-icon:hover::before,
.submit-btn-modern:hover::before,
.download-profile-btn:hover::before {
    width: 300px;
    height: 300px;
}

/* Parallax Effect */
.section {
    transform-style: preserve-3d;
}

/* Enhanced Section Backgrounds */
.sales-section,
.contracts-section,
.spare-parts-section,
.maintenance-section,
.rental-section,
.export-section {
    position: relative;
}

.sales-section::before,
.contracts-section::before,
.spare-parts-section::before,
.maintenance-section::before,
.rental-section::before,
.export-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

/* Smooth Image Loading */
.section-image {
    animation: fadeInScale 0.8s ease;
}

/* Enhanced Scroll Indicator */
.scroll-indicator {
    animation: bounce 2s ease-in-out infinite, glow 2s ease-in-out infinite;
}

/* Performance Optimization */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    image-rendering: -webkit-optimize-contrast;
}

/* Loading State */
body.loading {
    overflow: hidden;
}

body.loading::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black);
    z-index: 9999;
    animation: fadeOut 0.5s ease 0.5s forwards;
}

@keyframes fadeOut {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

/* Custom Alert Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Animated Background Shapes */
.hero::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    top: -250px;
    right: -250px;
    animation: float 15s ease-in-out infinite;
    z-index: 0;
}

.section::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -150px;
    left: -150px;
    animation: float 20s ease-in-out infinite reverse;
    pointer-events: none;
    z-index: 0;
}

/* Floating Orbs */
@keyframes floatOrb {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(50px, -50px) scale(1.1);
    }
    50% {
        transform: translate(0, -100px) scale(0.9);
    }
    75% {
        transform: translate(-50px, -50px) scale(1.1);
    }
}

/* Shimmer Effect */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.section-title::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(212, 175, 55, 0.3),
        transparent
    );
    animation: shimmer 3s infinite;
}

/* Glowing Lines */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    animation: moveLine 3s ease-in-out infinite;
}

@keyframes moveLine {
    0%, 100% {
        transform: translateX(-100%);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(100%);
    }
}


/* Hero Three.js Background */
#hero-three-bg {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 0 !important;
    pointer-events: none !important;
}

#hero-three-bg canvas {
    display: block;
    width: 100% !important;
    height: 100% !important;
}

.hero {
    position: relative;
    overflow: hidden;
}

.hero .container {
    position: relative;
    z-index: 2;
}

/* Maintenance Three.js Background */
#maintenance-three-bg {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 0 !important;
    pointer-events: none !important;
}

#maintenance-three-bg canvas {
    display: block;
    width: 100% !important;
    height: 100% !important;
}

.maintenance-section {
    position: relative;
    overflow: hidden;
}

.maintenance-section .container {
    position: relative;
    z-index: 2;
}

/* ===== RESPONSIVE DESIGN - MOBILE FIRST ===== */

/* Tablets and Small Laptops */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .nav {
        display: none;
        position: fixed;
        top: 70px;
        right: 0;
        width: 100%;
        max-width: 300px;
        background: linear-gradient(135deg, var(--black) 0%, var(--medium-gray) 100%);
        flex-direction: column;
        padding: 20px;
        border-radius: 0 0 0 20px;
        box-shadow: -5px 5px 30px rgba(0, 0, 0, 0.5);
        z-index: 999;
    }
    
    .nav.active {
        display: flex;
    }
    
    .nav-link {
        width: 100%;
        padding: 15px;
        text-align: right;
        font-size: 16px;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero .container,
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .content-wrapper.reverse {
        direction: rtl;
    }
    
    .hero-info-cards {
        grid-template-columns: 1fr;
    }
    
    .stats-grid-modern,
    .testimonials-grid-modern {
        grid-template-columns: 1fr;
    }
    
    .footer-grid-modern {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .title-main {
        font-size: 42px;
    }
    
    .section-title {
        font-size: 36px;
    }
}

/* Mobile Devices */
@media (max-width: 768px) {
    html, body {
        overflow-x: hidden !important;
        width: 100%;
        max-width: 100vw;
        position: relative;
    }
    
    .container {
        padding: 0 20px;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    * {
        max-width: 100%;
    }
    
    img {
        max-width: 100%;
        height: auto;
    }
    
    /* Disable heavy animations on mobile for better performance */
    .hero::after,
    .section::after,
    .hero-particles,
    .certificates-particles,
    .partners-particles {
        display: none !important;
    }
    
    /* Optimize hover effects for better performance */
    .info-card.premium:hover,
    .stat-item:hover,
    .testimonial-card-modern:hover {
        transform: translateY(-5px) !important;
    }
    
    /* Header */
    .header {
        padding: 10px 0;
    }
    
    .logo-image {
        height: 35px;
    }
    
    /* Hero Section */
    .hero {
        min-height: auto;
        padding: 120px 0 60px;
    }
    
    .hero .container {
        padding-top: 0;
        padding-bottom: 0;
    }
    
    .image-container {
        height: 300px;
    }
    
    /* Brands Section */
    .brands-section {
        padding: 60px 0;
    }
    
    .brands-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
        padding: 0 15px;
    }
    
    .brand-item {
        width: 100%;
        max-width: 180px;
        height: 110px;
        padding: 20px;
        margin: 0 auto;
    }
    
    .title-main {
        font-size: 32px;
        line-height: 1.3;
    }
    
    .title-sub {
        font-size: 18px;
    }
    
    .hero-badge {
        padding: 8px 15px;
        font-size: 13px;
    }
    
    .info-card {
        padding: 15px;
    }
    
    .info-card i {
        font-size: 24px;
    }
    
    .info-label {
        font-size: 11px;
    }
    
    .info-value {
        font-size: 13px;
    }
    
    .social-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .image-container {
        height: 350px;
    }
    
    .generator-placeholder {
        width: 280px;
        height: 280px;
    }
    
    .generator-placeholder i {
        font-size: 80px;
    }
    
    /* Sections */
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-badge {
        font-size: 12px;
        padding: 6px 20px;
    }
    
    /* Features List */
    .features-list-modern li {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .feature-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
        font-size: 20px;
    }
    
    .feature-text h4 {
        font-size: 16px;
    }
    
    .feature-text p {
        font-size: 14px;
    }
    
    /* Images */
    .image-frame-modern {
        height: 300px;
    }
    
    /* About Section */
    .about-intro {
        font-size: 16px;
    }
    
    .stat-card-modern {
        padding: 30px 20px;
    }
    
    .stat-icon {
        width: 60px;
        height: 60px;
        font-size: 30px;
    }
    
    .stat-card-modern h3 {
        font-size: 20px;
    }
    
    /* Testimonials */
    .testimonials-subtitle {
        font-size: 28px;
    }
    
    .testimonials-grid-modern {
        gap: 20px;
        scrollbar-width: none;
    }
    
    .testimonials-grid-modern::-webkit-scrollbar {
        display: none;
    }
    
    .testimonial-card-modern {
        padding: 30px 20px;
        width: 300px;
    }
    
    .quote-icon-modern,
    .client-avatar {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
    
    .testimonial-body h4 {
        font-size: 18px;
    }
    
    .testimonial-text {
        font-size: 14px;
    }
    
    /* Contact Form */
    .contact-subtitle {
        font-size: 26px;
    }
    
    .contact-form-modern {
        padding: 30px 20px;
    }
    
    .input-wrapper input,
    .input-wrapper textarea {
        padding: 12px 45px 12px 15px;
        font-size: 14px;
    }
    
    .submit-btn-modern {
        padding: 15px;
        font-size: 16px;
    }
    
    /* Footer */
    .footer-top {
        padding: 60px 0 30px;
    }
    
    .footer-logo-modern h3 {
        font-size: 18px;
    }
    
    .footer-desc {
        font-size: 13px;
    }
    
    .footer-col-modern h4 {
        font-size: 16px;
    }
    
    .footer-links a {
        font-size: 13px;
    }
    
    .certifications-modern {
        flex-wrap: wrap;
    }
    
    .cert-badge {
        padding: 12px 15px;
    }
    
    .footer-contact-bar {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .copyright {
        font-size: 13px;
    }
    
    .download-profile-btn {
        padding: 10px 25px;
        font-size: 14px;
    }
    
    /* Floating Buttons */
    .floating-buttons-right,
    .floating-buttons-left {
        bottom: 20px;
    }
    
    .floating-buttons-right {
        right: 15px;
    }
    
    .floating-buttons-left {
        left: 15px;
    }
    
    .floating-btn {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }
    
    /* Custom Alert */
    .custom-alert-box > div {
        padding: 30px 20px;
        max-width: 90%;
    }
    
    .custom-alert-box h2 {
        font-size: 22px;
    }
    
    .custom-alert-box p {
        font-size: 16px;
    }
    
    .custom-alert-box button {
        padding: 12px 30px;
        font-size: 16px;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    /* Header */
    .logo-image {
        height: 30px;
    }
    
    .mobile-menu-btn {
        padding: 8px 12px;
        font-size: 18px;
    }
    
    /* Hero */
    .hero {
        padding: 100px 0 50px;
    }
    
    .hero .container {
        padding-top: 0;
        padding-bottom: 0;
    }
    
    .image-container {
        height: 250px;
    }
    
    /* Brands Section */
    .brands-section {
        padding: 40px 0;
    }
    
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 0 10px;
    }
    
    .brand-item {
        width: 100%;
        max-width: 160px;
        height: 100px;
        padding: 20px;
    }
    
    .title-main {
        font-size: 26px;
    }
    
    .title-sub {
        font-size: 16px;
    }
    
    .hero-badge {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .info-card {
        padding: 12px;
        gap: 10px;
    }
    
    .info-card i {
        font-size: 20px;
    }
    
    .info-label {
        font-size: 10px;
    }
    
    .info-value {
        font-size: 12px;
    }
    
    .social-links {
        gap: 10px;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .image-container {
        height: 280px;
    }
    
    .generator-placeholder {
        width: 220px;
        height: 220px;
    }
    
    .generator-placeholder i {
        font-size: 60px;
    }
    
    /* Sections */
    .section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .section-badge {
        font-size: 11px;
        padding: 5px 15px;
    }
    
    /* Features */
    .features-list-modern li {
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 18px;
    }
    
    .feature-text h4 {
        font-size: 15px;
    }
    
    .feature-text p {
        font-size: 13px;
    }
    
    /* Images */
    .image-frame-modern {
        height: 250px;
    }
    
    /* About */
    .about-intro {
        font-size: 15px;
    }
    
    .stat-card-modern {
        padding: 25px 15px;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 25px;
    }
    
    .stat-card-modern h3 {
        font-size: 18px;
    }
    
    .stat-card-modern p {
        font-size: 14px;
    }
    
    /* Testimonials */
    .testimonials-subtitle {
        font-size: 24px;
    }
    
    .testimonial-card-modern {
        padding: 25px 15px;
    }
    
    .quote-icon-modern,
    .client-avatar {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .testimonial-body h4 {
        font-size: 16px;
    }
    
    .client-role {
        font-size: 12px;
    }
    
    .testimonial-text {
        font-size: 13px;
    }
    
    .rating i {
        font-size: 16px;
    }
    
    /* Contact */
    .contact-subtitle {
        font-size: 22px;
    }
    
    .contact-form-modern {
        padding: 25px 15px;
    }
    
    .form-group-modern label {
        font-size: 14px;
    }
    
    .input-wrapper input,
    .input-wrapper textarea {
        padding: 10px 40px 10px 12px;
        font-size: 13px;
    }
    
    .input-wrapper i {
        right: 12px;
        font-size: 16px;
    }
    
    .submit-btn-modern {
        padding: 12px;
        font-size: 15px;
    }
    
    /* Footer */
    .footer-top {
        padding: 40px 0 20px;
    }
    
    .footer-logo-image {
        height: 40px;
    }
    
    .footer-logo-modern h3 {
        font-size: 16px;
    }
    
    .footer-logo-modern p {
        font-size: 10px;
    }
    
    .footer-desc {
        font-size: 12px;
    }
    
    .footer-social-icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .footer-col-modern h4 {
        font-size: 15px;
        margin-bottom: 20px;
    }
    
    .footer-links a {
        font-size: 12px;
    }
    
    .cert-badge {
        padding: 10px 12px;
    }
    
    .cert-badge i {
        font-size: 20px;
    }
    
    .cert-badge span {
        font-size: 10px;
    }
    
    .info-item i {
        font-size: 18px;
    }
    
    .info-label {
        font-size: 11px;
    }
    
    .info-value {
        font-size: 12px;
    }
    
    .contact-item {
        font-size: 12px;
    }
    
    .contact-item i {
        font-size: 18px;
    }
    
    .copyright {
        font-size: 12px;
    }
    
    .download-profile-btn {
        padding: 8px 20px;
        font-size: 13px;
    }
    
    /* Floating Buttons */
    .floating-buttons-right,
    .floating-buttons-left {
        bottom: 15px;
    }
    
    .floating-buttons-right {
        right: 10px;
    }
    
    .floating-buttons-left {
        left: 10px;
    }
    
    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    /* Custom Alert */
    .custom-alert-box > div {
        padding: 25px 15px;
    }
    
    .custom-alert-box i {
        font-size: 50px !important;
    }
    
    .custom-alert-box h2 {
        font-size: 20px;
    }
    
    .custom-alert-box p {
        font-size: 14px;
    }
    
    .custom-alert-box button {
        padding: 10px 25px;
        font-size: 15px;
    }
    
    /* Hide decorative elements on small screens */
    .hero::after,
    .section::after {
        display: none;
    }
    
    .scroll-indicator {
        font-size: 24px;
        bottom: 20px;
    }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 60px 0 30px;
    }
    
    .image-container {
        height: 250px;
    }
    
    .generator-placeholder {
        width: 200px;
        height: 200px;
    }
}

/* Fix for very small screens */
@media (max-width: 360px) {
    .title-main {
        font-size: 22px;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .hero-info-cards {
        gap: 15px;
    }
    
    .info-card {
        padding: 10px;
    }
    
    .features-list-modern li {
        padding: 12px;
    }
    
    /* Brands Section */
    .brands-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 20px;
    }
    
    .brand-item {
        width: 100%;
        max-width: 200px;
        height: 110px;
        margin: 0 auto;
    }
    
    .testimonial-card-modern {
        padding: 20px 12px;
    }
}


/* ===== New Hero Section Styles ===== */
.hero-badge-premium {
    display: inline-block;
    padding: 12px 35px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
    border-radius: 50px;
    color: #000;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 30px;
    animation: fadeInDown 1s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.badge-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: badgeShine 3s infinite;
}

@keyframes badgeShine {
    0%, 100% { left: -100%; }
    50% { left: 100%; }
}

.hero-title-new {
    margin-bottom: 40px;
    animation: fadeInUp 1s ease 0.2s both;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.title-main-new {
    display: block;
    font-size: 64px;
    font-weight: 900;
    color: var(--white);
    text-shadow: 
        0 0 40px rgba(212, 175, 55, 0.6),
        0 5px 15px rgba(0, 0, 0, 0.8);
    line-height: 1.2;
    letter-spacing: -1px;
}

.title-highlight {
    display: block;
    font-size: 36px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold) 0%, #fff 50%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.4;
    animation: gradientText 3s ease infinite;
    background-size: 200% auto;
}

@keyframes gradientText {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

.title-sub {
    display: block;
    font-size: 28px;
    color: var(--white);
    font-weight: 400;
}

.hero-services-grid {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
    animation: fadeInUp 1s ease 0.3s both;
}

.service-tag {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 30px;
    background: var(--gold);
    border: 2px solid var(--gold);
    border-radius: 50px;
    color: #000;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: default;
}

.service-tag:hover {
    background: var(--dark-gold);
    color: #000;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.6);
}

.service-tag i {
    font-size: 22px;
    color: #000;
}

.hero-description-new {
    font-size: 22px;
    color: var(--white);
    line-height: 1.9;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease 0.4s both;
    max-width: 700px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.highlight-text {
    color: var(--gold);
    font-weight: 600;
}

.highlight-text-white {
    color: var(--white);
    font-weight: 700;
    font-size: 24px;
    display: block;
    margin-top: 10px;
}

.hero-coverage {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 25px;
    background: rgba(212, 175, 55, 0.15);
    border-radius: 50px;
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease 0.5s both;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.hero-coverage i {
    color: var(--gold);
    font-size: 20px;
}

.hero-cta-buttons {
    display: flex;
    gap: 20px;
    animation: fadeInUp 1s ease 0.6s both;
    position: relative;
    z-index: 10;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    white-space: nowrap;
}

.cta-btn.primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
    color: #000;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.cta-btn.primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.6);
}

.cta-btn.secondary {
    background: transparent;
    border-color: var(--gold);
    color: var(--gold);
}

.cta-btn.secondary:hover {
    background: var(--gold);
    color: #000;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.cta-btn.call {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.cta-btn.call:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
}

.btn-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-btn:hover .btn-glow {
    width: 300px;
    height: 300px;
}

.cta-btn i {
    font-size: 20px;
    position: relative;
    z-index: 1;
}

.cta-btn span {
    position: relative;
    z-index: 1;
}

/* Responsive for New Hero */
@media (max-width: 1200px) {
    .title-main-new {
        font-size: 52px;
    }
    
    .title-highlight {
        font-size: 30px;
    }
    
    .title-sub {
        font-size: 24px;
    }
}

@media (max-width: 992px) {
    .title-main-new {
        font-size: 44px;
    }
    
    .title-highlight {
        font-size: 26px;
    }
    
    .title-sub {
        font-size: 20px;
    }
    
    .hero-services-grid {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .service-tag {
        padding: 12px 25px;
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .hero-badge-premium {
        font-size: 15px;
        padding: 10px 25px;
    }
    
    .title-main-new {
        font-size: 38px;
    }
    
    .title-highlight {
        font-size: 24px;
    }
    
    .title-sub {
        font-size: 19px;
    }
    
    .hero-description-new {
        font-size: 19px;
        line-height: 1.8;
    }
    
    .highlight-text-white {
        font-size: 21px;
    }
    
    .hero-cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-btn {
        width: 100%;
        justify-content: center;
        padding: 16px 30px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .hero-badge-premium {
        font-size: 14px;
        padding: 8px 20px;
    }
    
    .title-main-new {
        font-size: 32px;
        line-height: 1.3;
    }
    
    .title-highlight {
        font-size: 20px;
        line-height: 1.4;
    }
    
    .title-sub {
        font-size: 17px;
    }
    
    .service-tag {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .service-tag i {
        font-size: 18px;
    }
    
    .hero-description-new {
        font-size: 17px;
        line-height: 1.7;
        margin-bottom: 30px;
    }
    
    .highlight-text-white {
        font-size: 19px;
        margin-top: 8px;
    }
    
    .hero-coverage {
        font-size: 14px;
    }
    
    .cta-btn {
        padding: 14px 25px;
        font-size: 15px;
    }
}


/* Hero Features Premium Cards */
.hero-features-premium {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease 0.4s both;
}

.feature-card-hero {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(10, 10, 10, 0.8) 100%);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.feature-card-hero::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, var(--gold), transparent, var(--gold));
    background-size: 200% 200%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: gradientMove 3s ease infinite;
}

.feature-card-hero:hover::before {
    opacity: 1;
}

.feature-card-hero:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(10, 10, 10, 0.9) 100%);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

.feature-icon-hero {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 
        0 8px 25px rgba(212, 175, 55, 0.4),
        inset 0 -3px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.feature-card-hero:hover .feature-icon-hero {
    transform: scale(1.1) rotate(-5deg);
}

.feature-icon-hero i {
    font-size: 28px;
    color: #000;
}

.feature-content-hero {
    flex: 1;
}

.feature-content-hero h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 5px 0;
    line-height: 1.4;
}

.feature-content-hero p {
    font-size: 14px;
    color: var(--gold);
    margin: 0;
    font-weight: 500;
}

.feature-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 70%
    );
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
    transition: transform 0.8s ease;
    pointer-events: none;
}

.feature-card-hero:hover .feature-shine {
    transform: translateX(100%) translateY(100%) rotate(45deg);
}

/* Responsive for Hero Features */
@media (max-width: 768px) {
    .hero-features-premium {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .feature-card-hero {
        padding: 20px;
    }
    
    .feature-icon-hero {
        width: 50px;
        height: 50px;
    }
    
    .feature-icon-hero i {
        font-size: 24px;
    }
    
    .feature-content-hero h3 {
        font-size: 16px;
    }
    
    .feature-content-hero p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .feature-card-hero {
        padding: 18px;
        gap: 15px;
    }
    
    .feature-icon-hero {
        width: 45px;
        height: 45px;
    }
    
    .feature-icon-hero i {
        font-size: 22px;
    }
    
    .feature-content-hero h3 {
        font-size: 15px;
    }
    
    .feature-content-hero p {
        font-size: 12px;
    }
}


/* Hero Contact Text */
.hero-contact-text {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 25px;
    animation: fadeInUp 1s ease 0.5s both;
}

.hero-contact-text i {
    color: var(--gold);
    font-size: 24px;
}

@media (max-width: 768px) {
    .hero-contact-text {
        font-size: 18px;
    }
    
    .hero-contact-text i {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .hero-contact-text {
        font-size: 16px;
    }
    
    .hero-contact-text i {
        font-size: 20px;
    }
}
