/* Header Styles */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 1000;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.page-template-page-about header.main-header, .page-template-page-contact header.main-header {
    position: sticky;
    background: rgba(0, 0, 0, 0.4) !important;
    box-shadow: rgba(0, 0, 0, 0.06) 0px 4px 20px !important;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: 95%;
    margin: 0 auto;
}

.header-logo {
    height: 60px;
    display: flex;
    align-items: center;
}

.header-logo-img {
    height: 100%;
    width: auto;
    object-fit: contain;
    max-width: 300px;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 30px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s 
ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 140px;
    text-align: center;
}

.header-btn-primary {
    background: rgba(245, 245, 245, 0.1);
    color: #f5f5f5;
}

.header-btn-primary:hover {
    background: rgba(245, 245, 245, 0.2);
    transform: translateY(-2px);
}

.header-btn-secondary {
    background: rgba(245, 245, 245, 0.05);
    color: #f5f5f5;
}

.header-btn-secondary:hover {
    background: rgba(245, 245, 245, 0.15);
    transform: translateY(-2px);
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 100svh;
}

/* Floating Social Media Icons */
.hero-social-icons {
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 10;
    pointer-events: auto;
}

.hero-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(245, 245, 245, 0.1);
    backdrop-filter: blur(10px);
    color: #f5f5f5;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.hero-social-link:hover {
    background: rgba(245, 245, 245, 0.2);
    color: #ffffff;
    opacity: 1;
    transform: translateY(-2px);
}

.hero-social-link svg {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}

.hero-social-link:hover svg {
    transform: scale(1.1);
}

/* Hero Swiper Styles */
.hero-swiper {
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
}


.hero-slide-left .hero-content {
    width: 100%;
    justify-content: flex-start;
    max-width: 95%;
    margin: 0 auto;
}

.hero-slide-left .hero-text-wrapper {
    text-align: left !important;
    align-items: flex-start;
    width: calc(100% - 50px);
}

/* Container - All styles inside for easy maintenance */
.hero-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Background Image */
.hero-background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(0.9) contrast(1.05) brightness(0.85);
}

/* Dark Overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: rgba(0, 0, 0, 0.7);
}

/* Gradient Overlay */
.hero-gradient {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.72) 0%, rgba(18, 18, 18, 0.72) 100%);
}

/* Content Wrapper */
.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Content positioning classes */
.hero-slide-center .hero-content {
    justify-content: center;
    align-items: center;
}



/* Text Wrapper */
.hero-text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    /* padding: 0 1.5rem; */
    gap: 2rem;
}



/* Logo */
.hero-logo {
    width: 65%;
    min-width: 370px;
    opacity: 0;
    transform: scale(1);
    transition: opacity 1.5s ease, transform 1.5s;
    will-change: transform, opacity;
}

.hero-logo-img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(4px 4px 6px black);
}

/* Tagline */
.hero-tagline {
    opacity: 0;
    transition: opacity 1s ease 0.2s;
}

.hero-tagline-text {
    font-family: 'Inter', sans-serif;
    font-size: 2.3rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #f5f5f5;
    margin: 0;
    /* padding-left: 10px; */
}

/* Sub Tagline */
.hero-sub-tagline {
    opacity: 0;
    transition: opacity 1s ease 0.8s;
}

.hero-sub-tagline-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.4rem;
    font-weight: 300;
    letter-spacing: 1px;
    color: #f5f5f5;
    margin: 0;
    /* padding-left: 10px; */
    opacity: 0.85;
}

/* Swiper fade transition */
.hero-swiper .swiper-slide-active .hero-logo {
    opacity: 1;
    /* transform: scale(1); */
}

.hero-swiper .swiper-slide-active .hero-tagline {
    opacity: 1;
}

.hero-swiper .swiper-slide-active .hero-sub-tagline {
    opacity: 1;
}

/* Ensure smooth transitions */
.hero-logo,
.hero-tagline,
.hero-sub-tagline {
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Hero Pagination */
.hero-pagination {
    position: absolute;
    bottom: 3rem !important;
    left: 50% !important;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    z-index: 10;
}

.hero-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    border-radius: 1px !important;
    background: rgb(245 245 245 / 27%);
    backdrop-filter: blur(10px);
    opacity: 1;
    transition: all 0.3s ease;
    cursor: pointer;
}

.hero-pagination .swiper-pagination-bullet-active {
    background: rgba(245, 245, 245, 0.9);
    border-color: #f5f5f5;
    transform: scale(1.4);
}

.hero-pagination .swiper-pagination-bullet:hover {
    background: rgba(245, 245, 245, 0.7);
    border-color: #f5f5f5;
    transform: scale(1.1);
}

/* Media Queries */
@media (max-width: 767px) {
    .main-header {
        height: 70px;
    }
    .hero-tagline-text {
        font-size: 1.6rem;
    }
    .hero-sub-tagline-text {
        font-size: 1rem;
    }
    .hero-text-wrapper {
        gap: 1rem;
    }
    .header-logo-img {
        max-width: 230px;
    }
    
    .header-logo {
        height: 50px;
    }
    
    .header-nav {
        gap: 0.5rem;
    }
    
    .header-btn {
        padding: 10px 16px;
        font-size: 12px;
        min-width: 120px;
    }
    
    .hero-social-icons {
        right: 1rem;
    }
    
    .hero-social-link {
        width: 28px;
        height: 28px;
    }
    
    .hero-social-link svg {
        width: 13px;
        height: 13px;
    }
    
    .hero-pagination {
        bottom: 2rem;
        gap: 10px;
    }
    
    .hero-pagination .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
    }
}

@media (min-width: 768px) {
    .hero-logo {
        width: 65%;
    }
    
    .hero-social-icons {
        right: 3rem;
    }
    
    .hero-social-link {
        width: 36px;
        height: 36px;
    }
    
    .hero-social-link svg {
        width: 15px;
        height: 15px;
    }
}

@media (min-width: 1200px) {
    .hero-social-icons {
        right: 4rem;
    }
    
    .hero-social-link {
        width: 39px;
        height: 39px;
    }
    
    .hero-social-link svg {
        width: 17px;
        height: 17px;
    }
}
