/* ============================================
   STYLE.CSS - Index Page Specific Styles
   ============================================ */

/* ---------- HERO CAROUSEL ---------- */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 720px;
    overflow: hidden;
}

.hero-carousel,
.hero-slide {
    height: 100vh;
    min-height: 720px;
}

.hero-slide {
    position: relative;
    display: flex;
    align-items: center;
}

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

.slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slide .container {
    position: relative;
    z-index: 10;
}

.slide-content {
    max-width: 750px;
    color: var(--white-pure);
}

.slide-left { margin-right: auto; }
.slide-center { margin: 0 auto; text-align: center; }
.slide-right { margin-left: auto; text-align: right; }

.slide-tag {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold-primary);
    margin-bottom: 20px;
    padding: 8px 20px;
    background: rgba(230,184,0,0.1);
    border-radius: 50px;
    backdrop-filter: blur(5px);
}

.slide-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--white-pure);
    font-family: var(--font-display);
}

.slide-title .gold {
    color: var(--gold-primary);
}

.slide-desc {
    font-size: 1.2rem;
    margin-bottom: 32px;
    color: rgba(255,255,255,0.9);
    max-width: 600px;
}

.slide-center .slide-desc { margin-left: auto; margin-right: auto; }
.slide-right .slide-desc { margin-left: auto; }

.slide-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.slide-center .slide-buttons { justify-content: center; }
.slide-right .slide-buttons { justify-content: flex-end; }

.slide-meta {
    position: absolute;
    bottom: 50px;
    right: 50px;
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--white-pure);
}

.slide-number {
    font-size: 2.2rem;
    font-weight: 800;
    font-family: var(--font-display);
    color: var(--gold-primary);
}

.slide-title-meta {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.carousel-nav {
    position: absolute;
    bottom: 50px;
    left: 50px;
    z-index: 30;
    display: flex;
    gap: 12px;
}

.carousel-prev,
.carousel-next {
    width: 52px;
    height: 52px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-pure);
    font-size: 1.2rem;
    transition: 0.3s ease;
    border: 1px solid rgba(255,255,255,0.2);
}

.carousel-prev:hover,
.carousel-next:hover {
    background: var(--gold-primary);
    color: var(--navy-deep);
    border-color: var(--gold-primary);
}

.carousel-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255,255,255,0.2);
    z-index: 40;
}

.progress-bar {
    height: 100%;
    width: 33.33%;
    background: var(--gold-primary);
    transition: width 0.3s ease;
}

/* Owl Dots */
.owl-dots {
    position: absolute;
    bottom: 45px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 30;
    display: flex;
    gap: 12px;
}

.owl-dot span {
    width: 10px;
    height: 10px;
    background: rgba(255,255,255,0.4);
    border-radius: 50%;
    display: block;
    transition: 0.3s ease;
}

.owl-dot.active span {
    background: var(--gold-primary);
    width: 28px;
    border-radius: 10px;
}

/* ---------- FEATURES GRID ---------- */
.features-grid-section {
    padding: 100px 0;
    background: var(--white-pure);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 380px;
    display: flex;
    align-items: flex-end;
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    transition: 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
}

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

.feature-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.feature-card:hover .feature-bg img {
    transform: scale(1.08);
}

.feature-bg .overlay {
    background: linear-gradient(0deg, rgba(10,25,41,0.9) 0%, rgba(10,25,41,0.3) 70%);
}

.feature-content {
    position: relative;
    z-index: 3;
    padding: 30px 25px;
    color: var(--white-pure);
    width: 100%;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gold-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.8rem;
    color: var(--navy-deep);
    transition: 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: var(--white-pure);
}

.feature-content h3 {
    font-size: 1.4rem;
    color: var(--white-pure);
    margin-bottom: 12px;
}

.feature-content p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.feature-link {
    color: var(--gold-primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s ease;
}

.feature-link i {
    transition: transform 0.3s ease;
}

.feature-link:hover i {
    transform: translateX(6px);
}

.feature-number {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(230,184,0,0.3);
    font-family: var(--font-display);
}

/* ---------- SERVICES GRID ---------- */
.services-showcase {
    padding: 100px 0;
    background: var(--white-soft);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.service-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 0.9 / 1;
    box-shadow: 0 10px 25px rgba(0,0,0,0.03);
    transition: 0.4s ease;
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.service-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

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

.service-overlay-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(10,25,41,0.9) 0%, rgba(10,25,41,0.2) 80%);
}

.service-content {
    position: relative;
    z-index: 3;
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: flex-end;
    color: var(--white-pure);
}

.service-icon {
    width: 48px;
    height: 48px;
    background: var(--gold-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 1.4rem;
    color: var(--navy-deep);
    transition: 0.3s ease;
}

.service-item:hover .service-icon {
    background: var(--white-pure);
}

.service-content h3 {
    font-size: 1.2rem;
    color: var(--white-pure);
    margin-bottom: 6px;
}

.service-content p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 12px;
}

.service-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(230,184,0,0.15);
    border: 1px solid rgba(230,184,0,0.3);
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold-primary);
    align-self: flex-start;
}

/* ---------- ADVANTAGES SECTION ---------- */
.advantages-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

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

.advantages-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.advantages-section .container {
    position: relative;
    z-index: 5;
}

.advantages-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-eyebrow.light {
    color: var(--gold-primary);
    background: rgba(230,184,0,0.15);
}

.advantage-description {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.85);
    margin: 30px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--gold-primary);
    font-family: var(--font-display);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.advantage-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.advantage-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 30px 25px;
    transition: 0.3s ease;
}

.advantage-card:hover {
    background: rgba(230,184,0,0.1);
    border-color: var(--gold-primary);
    transform: translateY(-6px);
}

.advantage-card i {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.advantage-card h4 {
    color: var(--white-pure);
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.advantage-card p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    margin: 0;
}

/* ---------- CTA SECTION ---------- */
.cta-premium {
    padding: 100px 0;
    background: var(--gold-primary);
    position: relative;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.8rem;
    color: var(--navy-deep);
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.3rem;
    color: var(--navy-deep);
    opacity: 0.9;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* ---------- RESPONSIVE (Index Page Specific) ---------- */
@media (max-width: 1200px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: repeat(3, 1fr); }
    .advantages-grid { grid-template-columns: 1fr; gap: 50px; }
    .slide-title { font-size: 3.2rem; }
}

@media (max-width: 992px) {
    .section-title { font-size: 2.4rem; }
    .hero-section { min-height: 600px; }
    .slide-title { font-size: 2.8rem; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .section-title { font-size: 2rem; }
    .hero-section { min-height: 550px; }
    .slide-title { font-size: 2.2rem; }
    .slide-desc { font-size: 1rem; }
    .slide-meta { display: none; }
    .carousel-nav { left: 30px; bottom: 30px; }
    .features-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr; gap: 20px; }
    .advantage-cards { grid-template-columns: 1fr; }
    .cta-content h2 { font-size: 2rem; }
    .cta-buttons { flex-direction: column; align-items: center; }
}

@media (max-width: 576px) {
    .slide-title { font-size: 1.8rem; }
    .slide-buttons { flex-direction: column; width: 100%; }
    .slide-buttons .btn { width: 100%; text-align: center; }
    .carousel-prev, .carousel-next { width: 44px; height: 44px; }
}