/* ===================================================
   HOME PAGE – Specific Styles
   =================================================== */

/* HERO */
.hero {
    min-height: 100vh;
    background: var(--bg-deep);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-placeholder {
    width: 100%;
    height: 100%;
}

.hero-placeholder .img-placeholder {
    height: 100%;
}

.hero-red-glow {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%;
    height: 60%;
    background: radial-gradient(ellipse at bottom left, rgba(230, 51, 41, 0.15) 0%, transparent 65%);
    z-index: 1;
    pointer-events: none;
}

.hero-text {
    max-width: 680px;
    padding-top: 6rem;
}

.hero-badge {
    margin-bottom: 1.5rem;
}

.hero-heading {
    font-size: clamp(3.5rem, 9vw, 7rem);
    line-height: 0.95;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 80px rgba(0, 0, 0, 0.8);
}

.text-red {
    color: var(--red);
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--gray-300);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-sub em {
    color: var(--gray-500);
    font-style: normal;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.h-stat {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.h-num {
    font-family: var(--font-hero);
    font-size: 1.6rem;
    letter-spacing: 1px;
    color: var(--white);
}

.h-lbl {
    font-family: var(--font-head);
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray-500);
}

.h-divider {
    width: 1px;
    height: 36px;
    background: var(--border);
}

.hero-scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 2;
    opacity: 0.5;
}

.hero-scroll-hint span {
    display: block;
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--red), transparent);
    animation: scrollLine 1.8s ease-in-out infinite;
}

.hero-scroll-hint p {
    font-family: var(--font-head);
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gray-500);
}

@keyframes scrollLine {
    0% {
        opacity: 0;
        transform: scaleY(0);
        transform-origin: top;
    }

    50% {
        opacity: 1;
        transform: scaleY(1);
        transform-origin: top;
    }

    100% {
        opacity: 0;
        transform: scaleY(1);
        transform-origin: bottom;
    }
}

/* HIGHLIGHTS */
.highlight-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.highlight-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    position: relative;
    transition: var(--transition);
    overflow: hidden;
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--red);
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
}

.highlight-card:hover {
    border-color: rgba(230, 51, 41, 0.4);
    transform: translateY(-6px);
    box-shadow: var(--shadow-red);
}

.highlight-card:hover::before {
    transform: scaleX(1);
}

.h-card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.highlight-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--white);
}

.highlight-card p {
    font-size: 0.875rem;
    color: var(--gray-500);
    line-height: 1.65;
}

.h-card-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--red), transparent);
    opacity: 0;
    transition: var(--transition);
}

.highlight-card:hover .h-card-line {
    opacity: 1;
}

/* ABOUT PREVIEW */
.about-preview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-preview-img {
    position: relative;
}

.about-badge-float {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background: var(--red);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-red-lg);
}

.ab-num {
    display: block;
    font-family: var(--font-hero);
    font-size: 2.5rem;
    letter-spacing: 2px;
    color: var(--white);
    line-height: 1;
}

.ab-stars {
    display: block;
    color: #FFD700;
    font-size: 1rem;
    margin: 0.25rem 0;
}

.ab-text {
    display: block;
    font-family: var(--font-head);
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.about-desc {
    color: var(--gray-300);
    font-size: 0.95rem;
    line-height: 1.75;
    margin-bottom: 1rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    margin: 1.5rem 0 2rem;
}

.af-item {
    font-size: 0.875rem;
    color: var(--gray-300);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.af-item span {
    color: var(--red);
    font-weight: 700;
}

/* SERVICES GRID */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--bg-card2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition);
}

.service-card:hover {
    border-color: var(--red);
    transform: translateY(-4px);
    box-shadow: var(--shadow-red);
}

.service-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.service-card p {
    font-size: 0.875rem;
    color: var(--gray-500);
    line-height: 1.65;
}

/* FACILITIES */
.facilities-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
    margin-top: 3rem;
}

.facility-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 1.75rem 1rem;
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.facility-item:hover {
    background: rgba(230, 51, 41, 0.08);
    border-color: rgba(230, 51, 41, 0.3);
    transform: translateY(-3px);
}

.fac-icon {
    font-size: 2rem;
}

.facility-item span {
    font-family: var(--font-head);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--gray-300);
}

/* TESTIMONIALS */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--bg-card2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-family: Georgia, serif;
    font-size: 6rem;
    color: rgba(230, 51, 41, 0.08);
    position: absolute;
    top: 0.5rem;
    left: 1.5rem;
    line-height: 1;
}

.testimonial-card.featured {
    border-color: rgba(230, 51, 41, 0.4);
    background: linear-gradient(135deg, rgba(230, 51, 41, 0.07) 0%, var(--bg-card2) 100%);
    transform: translateY(-8px);
}

.testimonial-card:hover {
    border-color: var(--red);
    transform: translateY(-4px);
}

.testimonial-card.featured:hover {
    transform: translateY(-12px);
}

.test-text {
    font-size: 0.9rem;
    color: var(--gray-300);
    line-height: 1.75;
    margin: 1rem 0 1.5rem;
    position: relative;
    z-index: 1;
}

.test-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.test-avatar {
    width: 44px;
    height: 44px;
    background: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
}

.test-name {
    font-family: var(--font-head);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
}

.test-role {
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-top: 0.15rem;
}

/* CTA SECTION */
.cta-section {
    position: relative;
    padding: 7rem 0;
    overflow: hidden;
    text-align: center;
}

.cta-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: var(--bg-deep);
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.92), rgba(100, 0, 0, 0.3));
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-heading {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1;
    margin: 1rem 0;
    color: var(--white);
}

.cta-sub {
    font-size: 1rem;
    color: var(--gray-300);
    max-width: 550px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* SECTION CTA */
.section-cta {
    text-align: center;
    margin-top: 3rem;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .highlight-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .facilities-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-preview-grid {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .highlight-grid {
        grid-template-columns: 1fr;
    }

    .facilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .about-preview-grid {
        grid-template-columns: 1fr;
    }

    .about-preview-img {
        order: -1;
    }

    .about-badge-float {
        bottom: 1rem;
        right: 1rem;
    }

    .testimonial-card.featured {
        transform: none;
    }

    .hero-stats {
        gap: 1.25rem;
    }
}

@media (max-width: 480px) {
    .facilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .hero-heading {
        font-size: 3rem;
    }
}