/* Hero Layout Styles */

/* Process Cover Section */
.process-cover-section {
    position: relative;
    width: 100%;
    min-height: 700px;
    overflow: hidden;
}

.process-cover-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    mix-blend-mode: normal;
}

.process-cover-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    mix-blend-mode: normal;
}

/* Mobile fallback - hide video on mobile, show image */
@media (max-width: 991px) {
    .process-cover-video {
        display: none;
    }

    .process-cover-image.mobile-fallback {
        display: block;
    }
}

/* Desktop - hide mobile fallback image when video is present */
@media (min-width: 992px) {
    .process-cover-image.mobile-fallback {
        display: none;
    }
}

/* Hero Credit */
.hero-credit {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 100;
    background: rgba(0, 0, 0, 0.5);
    color: rgba(255, 255, 255, 0.9);
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.02em;
    backdrop-filter: blur(8px);
}

/* Dark overlay for better text readability */
.process-cover-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25); /* 25% opacity black overlay */
    z-index: 2;
    pointer-events: none;
}

/* White Navbar Theme */
.navbar-wrapper.white {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
}

.navbar-wrapper.white .navbar {
    background: transparent !important;
    padding: 1.5rem 0;
}

/* White Logo and Text */
.nav-logo-wrapper.white .nav-logo-image {
    filter: brightness(0) invert(1);
}

.navbar-wrapper.white .nav-link,
.navbar-wrapper.white .dropdown-toggle,
.nav-link.white,
.dropdown-toggle.white {
    color: #ffffff !important;
}

.navbar-wrapper.white .dropdown-toggle-icon {
    filter: brightness(0) invert(1);
}

/* White Hamburger Menu */
.navbar-wrapper.white .menu-button-horizontal-line.white {
    background-color: #ffffff !important;
}

.navbar-wrapper.white .menu-button-cross-line.white {
    background-color: #ffffff !important;
}

/* Dark Menu Background (when opened) */
.nav-menu.dark {
    background: rgba(0, 0, 0, 0.95);
}

/* Hero Container */
.process-hero-container {
    position: relative;
    z-index: 100;
    padding-top: 200px;
    padding-bottom: 100px;
    color: #ffffff;
}

.process-hero-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-end;
}

.process-hero-left {
    /* Left column for main title */
}

.process-hero-right {
    /* Right column for subtitle */
}

/* Display Heading */
.display-heading {
    font-size: clamp(48px, 6vw, 96px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: #ffffff;
    margin: 0;
}

/* Heading Three */
.heading-three {
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 400;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.9);
}

.heading-three.align-bottom {
    text-align: left;
}

/* Dropdown Adjustments for White Theme */
.navbar-wrapper.white .dropdown-list {
    background: #ffffff;
    border: 1px solid rgba(234, 227, 215, 0.2);
}

.navbar-wrapper.white .dropdown-link {
    color: #000000 !important;
}

.navbar-wrapper.white .dropdown-link:hover {
    background: #eae3d7 !important;
    color: #000000 !important;
}

/* Section Following Hero */
.section.no-padding {
    padding: 0;
}

.halves {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 80px 0;
}

.half-box {
    /* Half width boxes */
}

.half-box.left {
    /* Left half */
}

.half-box.right {
    /* Right half */
}

.process-text-grid {
    display: grid;
    gap: 30px;
}

.heading-two {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 600;
    line-height: 1.2;
    color: #000000;
}

.container---s {
    max-width: 480px;
}

.rounded-image {
    border-radius: 16px;
    overflow: hidden;
}

.square-image {
    aspect-ratio: 1;
    object-fit: cover;
}

.sticky-content {
    position: sticky;
    top: 100px;
}

/* Circle Title Section */
.circle-title-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 60px 0;
}

.process-circle-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.circle-title-line-top,
.circle-title-line-lower {
    width: 1px;
    height: 60px;
    background: #eae3d7;
}

.circle-title-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #eae3d7;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.circle-title-icon {
    width: 24px;
    height: 24px;
}

.badge {
    padding: 8px 16px;
    background: #eae3d7;
    border-radius: 100px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.bold-text {
    font-weight: 600;
    color: #000000;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .process-hero-container {
        padding-top: 140px;
        padding-bottom: 60px;
    }
    
    .process-hero-columns {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .display-heading {
        font-size: clamp(36px, 8vw, 56px);
    }
    
    .heading-three {
        font-size: clamp(18px, 3vw, 22px);
    }
    
    .halves {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 60px 0;
    }
    
    /* Mobile White Menu */
    .navbar-wrapper.white .nav-menu {
        background: rgba(0, 0, 0, 0.98);
    }
    
    .navbar-wrapper.white .mobile-logo-image {
        filter: brightness(0) invert(1);
    }
}

@media (max-width: 768px) {
    .process-cover-section {
        min-height: 500px;
    }
    
    .process-hero-container {
        padding-top: 120px;
        padding-bottom: 40px;
    }
    
    .display-heading {
        font-size: 32px;
    }
    
    .heading-three {
        font-size: 18px;
    }
    
    .heading-two {
        font-size: 28px;
    }
}

/* Border Utilities */
.border-bottom {
    border-bottom: 1px solid #eae3d7;
}