/* Contact Hero Section with Video Background */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Video Background Styling */
.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

/* Hero Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.27) 0%,
        rgba(86, 7, 7, 0.85) 100%
    );
    z-index: 2;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 120px 0 80px;
}

.min-vh-70 {
    min-height: 70vh;
}

/* Hero Title */
.hero-title {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
    line-height: 1.2;
}

/* Hero Subtitle */
.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.2);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Breadcrumb Styling */
.breadcrumb {
    margin-bottom: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
}

.breadcrumb-item a:hover {
    text-decoration: underline !important;
}

/* CTA Buttons */
.hero-cta .btn {
    font-weight: 600;
    border-radius: 50px;
    padding: 12px 40px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-cta .btn-primary {
    background: linear-gradient(135deg, #c62828 0%, #c62828 100%);
    border: none;
}

.hero-cta .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(198, 40, 40, 0.5);
}

.hero-cta .btn-outline-light {
    border: 2px solid white;
    color: white;
    background: transparent;
}

.hero-cta .btn-outline-light:hover {
    background: white;
    color: #c62828;
    transform: translateY(-3px);
}

/* Quick Info Items */
.hero-quick-info {
    opacity: 0.95;
}

.quick-info-item {
    text-align: center;
    padding: 15px 20px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.quick-info-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.quick-info-item i {
    display: block;
    opacity: 0.9;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
}

.mouse-wrapper {
    display: inline-block;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid white;
    border-radius: 13px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.wheel {
    width: 3px;
    height: 8px;
    background: white;
    border-radius: 2px;
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(12px);
    }
}

.scroll-text {
    color: white;
    opacity: 0.8;
    font-weight: 500;
    letter-spacing: 1px;
}

/* Smooth Scroll */
.smooth-scroll {
    scroll-behavior: smooth;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }

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

    .hero-content {
        padding: 100px 0 60px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .hero-cta .btn {
        padding: 10px 30px;
        font-size: 0.95rem;
    }

    .hero-quick-info {
        gap: 1rem !important;
    }

    .quick-info-item {
        padding: 10px 15px;
    }

    .quick-info-item i {
        font-size: 1.5rem !important;
    }

    .quick-info-item p {
        font-size: 0.8rem;
    }

    /* Mobile වලට video එක visible තියෙනවා */
    .hero-video {
        display: block;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

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

    .hero-cta .btn {
        width: 100%;
    }

    .scroll-indicator {
        bottom: 20px;
    }
}

/* Accessibility - Reduced Motion සඳහා video play නොකරන්න */
@media (prefers-reduced-motion: reduce) {
    .hero-video {
        display: none;
    }

    .wheel {
        animation: none;
    }

    .hero-cta .btn:hover,
    .quick-info-item:hover {
        transform: none;
    }
}
