/* Main/Home Page Sections */

/* Hero */
.hero {
    min-height: 100vh;
    background: var(--primary-color);
    position: relative;
    display: flex;
    align-items: center;
    color: var(--white);
    padding-top: 80px;
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transition: opacity 0.8s ease-in-out;
}

.hero h2 {
    font-family: var(--font-heading);
    font-size: 72px;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 700;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Brand Scroller */
.brand-scroller-section {
    padding: 15px 0;
    background-color: var(--grey-section);
    overflow: hidden;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.brands-track {
    display: flex;
    gap: 40px;
    padding: 5px 0;
    width: max-content;
    animation: scroll-brands 45s linear infinite;
}

/* Trust Bar */
.trust-bar {
    background: linear-gradient(135deg, #0d1520 0%, #1b263b 100%);
    padding: 100px 0;
    position: relative;
}

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

/* What Defines Us */
.defines-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

/* Contact Section */
.contact-section-redesign {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-dark), #0D1520);
    color: var(--white);
}

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

@media (max-width: 991px) {
    .hero h2 {
        font-size: 42px;
    }

    .trust-grid,
    .defines-us-grid,
    .contact-redesign-grid {
        grid-template-columns: 1fr;
    }
}

/* SEO Text Section */
.seo-text-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0f1a 0%, #0d1520 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--white);
}

.seo-text-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.seo-text-block h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 18px;
    line-height: 1.35;
    border-left: 3px solid var(--color-gold, #c9a84c);
    padding-left: 16px;
}

.seo-text-block p {
    font-size: 0.97rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 16px;
}

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

.seo-text-block strong {
    color: rgba(255, 255, 255, 0.92);
    font-weight: 600;
}

.seo-text-block a {
    color: var(--color-gold, #c9a84c);
    text-decoration: none;
}

.seo-text-block a:hover {
    text-decoration: underline;
}

.seo-text-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.seo-text-tags span {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.8rem;
    padding: 6px 14px;
    border-radius: 30px;
    letter-spacing: 0.03em;
}

@media (max-width: 768px) {
    .seo-text-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .seo-text-block h2 {
        font-size: 1.25rem;
    }
}