.home-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #121211 0%, #1a1a19 50%, #121211 100%);
    z-index: -2;
}

.home-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(249, 183, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(249, 183, 0, 0.15) 0%, transparent 50%);
    animation: home-pulse 8s ease-in-out infinite;
}

@keyframes home-pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.home-main {
    padding-top: 100px;
}

.home-hero {
    min-height: calc(100vh - 100px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    position: relative;
    background-image: url('../images/index_banner.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.home-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(18, 18, 17, 0.75);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

.home-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(249, 183, 0, 0.15) 0%, transparent 70%);
    animation: home-glow 5s ease-in-out infinite;
    pointer-events: none;
}

@keyframes home-glow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.home-hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.home-hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.home-hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.home-hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.home-btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.home-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    padding: 2px;
    background: linear-gradient(135deg, var(--primary-gold), rgba(249, 183, 0, 0.5));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.home-btn-primary {
    background: var(--primary-gold);
    color: var(--primary-dark);
}

.home-btn-primary:hover {
    background: #ffcc33;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(249, 183, 0, 0.4);
}

.home-btn-secondary {
    background: rgba(249, 183, 0, 0.1);
    color: var(--primary-gold);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.home-btn-secondary:hover {
    background: rgba(249, 183, 0, 0.2);
    transform: translateY(-3px);
}

.home-features {
    padding: 4rem 0;
    background: rgba(18, 18, 17, 0.3);
}

.home-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.home-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.home-section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
}

.home-section-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
}

.home-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.home-feature-card {
    background: rgba(18, 18, 17, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(249, 183, 0, 0.15);
    border-radius: 20px;
    padding: 2rem 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.home-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(249, 183, 0, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.home-feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
    box-shadow: 0 20px 60px rgba(249, 183, 0, 0.3);
}

.home-feature-card:hover::before {
    opacity: 1;
}

.home-feature-icon-wrapper {
    width: 70px;
    height: 70px;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, rgba(249, 183, 0, 0.2), rgba(249, 183, 0, 0.05));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s ease;
}

.home-feature-card:hover .home-feature-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(249, 183, 0, 0.3);
}

.home-feature-icon-svg {
    width: 36px;
    height: 36px;
    color: var(--primary-gold);
    position: relative;
    z-index: 1;
}

.home-feature-title {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #ffffff;
    font-weight: 700;
    position: relative;
}

.home-feature-text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
    position: relative;
}

.home-feature-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
}

.home-feature-link:hover {
    gap: 0.5rem;
    text-shadow: 0 0 10px rgba(249, 183, 0, 0.5);
}

/* BRANDS SECTION */
.home-brands {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.home-brands-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, rgba(249, 183, 0, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 70% 70%, rgba(249, 183, 0, 0.12) 0%, transparent 60%);
    animation: home-brands-glow 10s ease-in-out infinite;
    z-index: -1;
}

@keyframes home-brands-glow {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

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

/* Featured ATOS Card - Takes 2x2 grid spaces */
.home-brand-card-featured {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
}

/* Regular Brand Cards */
.home-brand-card {
    position: relative;
    aspect-ratio: 16/10;
    background: rgba(18, 18, 17, 0.5);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 2px solid rgba(249, 183, 0, 0.2);
    border-radius: 25px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: block;
}

.home-brand-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(249, 183, 0, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

.home-brand-card:hover {
    transform: translateY(-15px) scale(1.03);
    border-color: var(--primary-gold);
    box-shadow: 
        0 25px 60px rgba(249, 183, 0, 0.4),
        0 0 80px rgba(249, 183, 0, 0.2),
        inset 0 0 60px rgba(249, 183, 0, 0.1);
}

.home-brand-card:hover::before {
    opacity: 1;
}

/* Brand Logo Container */
.home-brand-logo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    z-index: 1;
    transition: all 0.5s ease;
}

/* Brand Images */
.home-brand-image {
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.5s ease;
}

.home-brand-card:hover .home-brand-image {
    transform: scale(1.1);
}

/* Special styling for FEATURED ATOS card */
.home-brand-card-featured {
    background: rgba(18, 18, 17, 0.7);
    border: 3px solid rgba(249, 183, 0, 0.4);
    position: relative;
}

.home-brand-size {
    max-width: 90%;
}

.home-brand-card-featured:hover {
    transform: translateY(-10px) scale(1.02);
}

/* ATOS Badge */
.home-brand-badge {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-gold);
    letter-spacing: 3px;
    opacity: 0;
    transition: all 0.5s ease;
    z-index: 3;
    padding: 0.8rem 2rem;
    background: rgba(18, 18, 17, 0.9);
    border: 2px solid var(--primary-gold);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.home-brand-card-featured:hover .home-brand-badge {
    opacity: 1;
}

/* CTA Section */
.home-brands-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(18, 18, 17, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid rgba(249, 183, 0, 0.2);
    border-radius: 30px;
    margin-top: 2rem;
}

.home-brands-cta-text {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

/* COMPANY ABOUT SECTION - PROFESSIONAL */

.company-about {
    padding: 6rem 0;
    background: rgba(18, 18, 17, 0.4);
    position: relative;
}

.company-about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(249, 183, 0, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.company-about-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.company-about-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Left Side - Main Content */
.company-about-main {
    display: flex;
    flex-direction: column;
}

.company-about-badge {
    display: inline-block;
    align-self: flex-start;
    background: rgba(249, 183, 0, 0.15);
    border: 1px solid rgba(249, 183, 0, 0.3);
    border-radius: 50px;
    padding: 0.5rem 1.2rem;
    color: var(--primary-gold);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.company-about-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.company-about-text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.company-about-values {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.company-value-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    font-weight: 500;
}

.company-value-item svg {
    color: var(--primary-gold);
    flex-shrink: 0;
}

.company-about-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    align-self: flex-start;
    background: linear-gradient(135deg, var(--primary-gold), #e0a800);
    color: var(--primary-dark);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.company-about-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(249, 183, 0, 0.4);
}

/* Right Side - Focus Areas */
.company-about-focus {
    background: rgba(18, 18, 17, 0.6);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(249, 183, 0, 0.2);
    border-radius: 24px;
    padding: 2.5rem;
}

.company-focus-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
}

.company-focus-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.company-focus-box {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.2rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(249, 183, 0, 0.15);
    border-radius: 14px;
    transition: all 0.3s ease;
}

.company-focus-box:hover {
    background: rgba(249, 183, 0, 0.08);
    border-color: var(--primary-gold);
    transform: translateX(8px);
}

.company-focus-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-gold);
    font-family: 'Inter', sans-serif;
}

.company-focus-name {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

/* CLIENT LOGOS SLIDER SECTION */

.index-clients {
    padding: 5rem 0;
    background: rgba(18, 18, 17, 0.3);
    position: relative;
    overflow: hidden;
}

.index-clients::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(249, 183, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(249, 183, 0, 0.12) 0%, transparent 50%);
    pointer-events: none;
    animation: home-brands-glow 10s ease-in-out infinite;
}

.index-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.index-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.index-section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    color: #ffffff;
}

.index-section-title .highlight {
    color: var(--primary-gold);
}

.index-section-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
}

.clients-slider-wrapper {
    position: relative;
    padding: 2rem 0;
    overflow: hidden;
    mask-image: linear-gradient(
        to right,
        transparent,
        black 8%,
        black 92%,
        transparent
    );
    -webkit-mask-image: linear-gradient(
        to right,
        transparent,
        black 8%,
        black 92%,
        transparent
    );
}

.clients-slider {
    display: flex;
    gap: 3rem;
    animation: scroll-left 40s linear infinite;
    width: max-content;
}

.clients-slider:hover {
    animation-play-state: paused;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.client-slide {
    flex-shrink: 0;
    width: 280px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(18, 18, 17, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(249, 183, 0, 0.2);
    border-radius: 20px;
    padding: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.client-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(249, 183, 0, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.client-slide:hover {
    transform: translateY(-12px) scale(1.05);
    box-shadow: 0 20px 50px rgba(249, 183, 0, 0.35);
    border-color: var(--primary-gold);
}

.client-slide:hover::before {
    opacity: 1;
}

.client-logo {
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(100%) brightness(1.3) opacity(0.8);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.client-slide:hover .client-logo {
    filter: grayscale(0%) brightness(1) opacity(1);
    transform: scale(1.08);
}


@media (max-width: 1400px) {
    .client-slide {
        width: 280px;
        height: 160px;
        padding: 2rem;
    }
}

@media (max-width: 1200px) {
    .home-brands-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .home-brand-card-featured {
        grid-column: span 3;
        grid-row: span 1;
        aspect-ratio: 16/10;
    }
}

@media (max-width: 1024px) {
    .home-features-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .home-brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .home-brand-card-featured {
        grid-column: span 2;
        grid-row: span 1;
        aspect-ratio: 16/10;
    }

    .company-about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .company-about-title {
        font-size: 2.3rem;
    }
}

@media (max-width: 768px) {
    .home-hero {
        background-attachment: scroll;
    }

    .home-hero-title {
        font-size: 2.5rem;
    }

    .home-hero-subtitle {
        font-size: 1.1rem;
    }

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

    .home-section-title {
        font-size: 2rem;
    }

    .home-features {
        padding: 3rem 0;
    }

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

    .home-feature-card {
        padding: 1.8rem 1.5rem;
    }
    
    .home-brands {
        padding: 3rem 0;
    }
    
    .home-brands-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .home-brand-card-featured {
        grid-column: span 1;
        grid-row: span 1;
        aspect-ratio: 16/10;
    }

    .home-brand-card-featured .home-brand-logo {
        padding: 0rem;
    }
    
    .home-brand-card-featured .home-brand-image {
        max-width: 80%;
        max-height: 80%;
        object-fit: contain;
    }
    
    .home-brand-badge {
        font-size: 0.7rem;
        letter-spacing: 2px;
        padding: 0.6rem 1.5rem;
        bottom: 1rem;
    }
    
    .home-brands-cta-text {
        font-size: 1.2rem;
    }

    .company-about {
        padding: 4rem 0;
    }
    
    .company-about-title {
        font-size: 2rem;
    }
    
    .company-about-text {
        font-size: 1rem;
    }
    
    .company-about-values {
        grid-template-columns: 1fr;
    }
    
    .company-about-focus {
        padding: 2rem;
    }

     .index-clients {
        padding: 3rem 0;
    }
    
    .index-section-title {
        font-size: 2rem;
    }
    
    .index-section-subtitle {
        font-size: 1rem;
    }
    
    .clients-slider {
        gap: 2rem;
        animation-duration: 25s;
    }
    
    .client-slide {
        width: 220px;
        height: 130px;
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .home-brand-badge {
        font-size: 0.6rem;
        letter-spacing: 1px;
        padding: 0.5rem 1rem;
    }

    .home-brand-card-featured .home-brand-image {
        max-width: 85%;
        max-height: 85%;
    }

    .company-about-title {
        font-size: 1.6rem;
    }
    
    .company-about-btn {
        width: 100%;
        justify-content: center;
    }

    .index-section-title {
        font-size: 1.8rem;
    }
    
    .clients-slider {
        gap: 1.5rem;
        animation-duration: 20s;
    }
    
    .client-slide {
        width: 180px;
        height: 110px;
        padding: 1.2rem;
    }
}
