/* ===========================
   Hero Section
   =========================== */

.hero-section {
    position: relative;
    height: 720px;
    overflow: visible;
    background-color: var(--color-black);
}

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

.video-placeholder {
    width: 100%;
    height: 100%;
    background: url('./public/placeholder-video.jpg') center/cover no-repeat;
    opacity: 0.8;
}

/* Gradients */
.hero-gradient-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 166px;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0), var(--color-white));
    z-index: 2;
}

.hero-gradient-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 483px;
    background: linear-gradient(180deg, transparent, var(--color-black));
    z-index: 2;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

/* Title Circle Background */
.hero-title-circle {
    position: absolute;
    width: 495px;
    height: 150px;
    left: 0;
    top: 0;
    z-index: 2;
}

/* Main Title */
.hero-title {
    font-size: 35px;
    line-height: 37px;
    text-transform: uppercase;
    text-align: left;
    font-weight: 900;
    color: var(--color-white) !important;
    font-family: var(--font-primary);
    position: relative;
    z-index: 1;
    margin-bottom: -200px;
}

/* Brush Stroke */
.hero-brush-bottom {
    position: absolute;
    bottom: -110px;
    left: 0;
    width: 100%;
    z-index: 5;
    pointer-events: none;
    transform: scaleX(1.2);
}

.hero-brush-image {
    display: block;
    width: 100%;
    height: auto;
}

/* Logo Badge */
.hero-logo-badge {
    position: absolute;
    top: 630px;
    right: 0;
    z-index: 1111;
}

.badge-shape {
    position: absolute;
    top: 0;
    right: 0;
    width: auto;
    height: 128px;
}

.badge-logo {
    position: absolute;
    top: 0;
    right: 54px;
    width: auto;
    height: 110px;
    object-fit: cover;
}

/* Social Media */
.hero-social {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 30px;
    z-index: 111;
}

.social-link {
    color: var(--color-primary);
    font-size: 20px;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--color-secondary);
}



.nav-video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 150px;
    background-color: var(--color-black);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.nav-video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}

/* Video Overlay (Optional) */
.nav-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000ab;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    border-radius: 10px;
}


.nav-video-play-icon:hover {
    transform: scale(1.1);
}

.nav-video-play-icon i {
    font-size: 30px;
    color: #fff;
    margin-left: 3px;
}

.nav-video-text {
    color: var(--color-white);
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    padding: 0 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Thumbnail Style (if using poster) */
.nav-video-wrapper video[poster] {
    cursor: pointer;
}

/* Mobile - Hide submenu */
@media (max-width: 991px) {
    .nav-submenu-three-cols {
        display: none;
    }
}

/* Add this class to the specific submenu you want to fix */
.nav-submenu-wide {
    min-width: 1000px !important;
    left: 250px !important;
}

/* ===========================
   Responsive - Tablet
   =========================== */

@media (max-width: 991px) {
    .hero-section {
        height: 600px;
    }

    .hero-title {
        font-size: 28px;
        line-height: 32px;
    }

    .hero-title-circle {
        width: 400px;
        height: 120px;
    }

    .badge-shape {
        width: 350px;
        height: 100px;
    }

    .badge-logo {
        width: 180px;
        height: 90px;
        right: 40px;
    }

    .hero-logo-badge {
        top: 520px;
    }
}

/* ===========================
   Responsive - Mobile
   =========================== */

@media (max-width: 767px) {
    /* Hero Section Height - Full Screen */

    .hero {
        min-height: 80vh;
    }


    .hero-section {
        height: 85vh;
        min-height: 500px;
    }

    /* Hero Content - Lower in Screen */
    .hero-content {
        padding-top: 0;
        padding-bottom: 120px;
        display: flex;
        align-items: flex-end;
        justify-content: center;
    }

    /* Title Container - Full Width */
    .hero-content .col-6 {
        width: 100% !important;
        max-width: 100%;
        flex: 0 0 100%;
        padding: 0 20px;
    }

    /* Title - Center Aligned & White */
    .hero-title {
        font-size: 32px;
        line-height: 38px;
        text-align: left;
        margin-top: 0;
        color: var(--color-white) !important;
    }

    /* Title Circle - Behind Title Centered */
    .hero-title-circle {
        width: 100%;
        max-width: 400px;
        height: auto;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        z-index: -1;
        opacity: 0.8;
    }

    /* Logo Badge - Bottom Right */
    .hero-logo-badge {
        top: auto;
        bottom: 60px;
        right: 20px;
    }

    .badge-logo {
        width: 140px;
        height: auto;
        right: 0;
        position: relative;
    }

    .badge-shape {
        display: none;
    }

    /* Social Links - Hidden */
    .hero-social {
        display: none;
    }

    /* Brush Stroke - Center, Natural Width */
    .hero-brush-bottom {
        bottom: -40px;
        left: 50%;
        transform: translateX(-50%);
        width: auto;
        max-width: none;
    }

    .hero-brush-image {
        display: block;
        width: auto;
        max-width: none;
        height: auto;
        transform: scaleX(1);
    }

    /* Gradient - Stronger */
    .hero-gradient-bottom {
        height: 60%;
        background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    }
}

/* Small Mobile */
@media (max-width: 575px) {
    .hero-section {
        min-height: 550px;
    }

    .hero-content {
        padding-bottom: 100px;
    }

    .hero-title {
        font-size: 28px;
        line-height: 34px;
        padding: 0 15px;
        color: var(--color-white) !important;
    }

    .hero-title-circle {
        max-width: 350px;
    }

    .hero-logo-badge {
        bottom: 50px;
        right: 15px;
    }

    .badge-logo {
        width: 120px;
    }

    .hero-brush-bottom {
        bottom: -80px;
    }
}

/* Very Small Mobile */
@media (max-width: 399px) {
    .hero-content {
        padding-bottom: 133px;
    }

    .hero-title {
        font-size: 24px;
        line-height: 30px;
        color: var(--color-white) !important;
    }

    .hero-title-circle {
        max-width: 300px;
    }

    .hero-logo-badge {
        bottom: 0;
        right: 30px;
    }

    .badge-logo {
        width: 140px;
    }
}



/* ===========================
   Main Content Section
   =========================== */

.main-content-section {
    background-color: var(--color-bg-light);
    padding-top: 100px;
    min-height: 1000px;
}

/* ===========================
   Contact Section
   =========================== */

.contact-section {
    margin-top: 100px;
}

.contact-box {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 60px;
    height: 342px;
}

.contact-title {
    font-size: 40px;
    line-height: 37px;
    text-transform: uppercase;
    font-weight: 900;
    margin-bottom: 30px;
}

.contact-item {
    margin-bottom: 30px;
}

.contact-label {
    font-size: 20px;
    line-height: 27px;
    font-weight: 700;
    margin-bottom: 5px;
}

.contact-text {
    font-size: 15px;
    line-height: 29px;
    margin: 0;
}

.contact-map {
    position: relative;
    height: 342px;
}

.contact-map-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-links-overlay {
    position: absolute;
    bottom: 23px;
    left: 256px;
    font-size: 17px;
    color: var(--color-black);
    font-weight: 700;
}

/* ===========================
   Footer Section
   =========================== */

.footer-section {
    position: relative;
    background-color: var(--color-white);
    padding-bottom: 30px;
}

.footer-brush-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
}

.footer-brush-image {
    display: block;
    width: 100%;
    height: auto;
    margin-top: -135px;
    position: absolute;
    z-index: 2;
}

.footer-content {
    position: relative;
    z-index: 2;
    padding-top: 100px;
}

.footer-logo {
    width: 122.6px;
    height: 124.5px;
    object-fit: cover;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    font-size: 15px;
    line-height: 29px;
    color: var(--color-black);
    margin-bottom: 5px;
}

.footer-bullet {
    color: var(--color-primary);
    margin-right: 8px;
}

/* Newsletter */
.footer-newsletter-title {
    font-size: 16px;
    text-transform: uppercase;
    color: var(--color-primary);
    font-family: var(--font-montserrat);
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-newsletter-form {
    position: relative;
    display: flex;
    align-items: center;
}

.footer-email-input {
    width: 100%;
    max-width: 376px;
    height: 47px;
    border-radius: 10px;
    background-color: var(--color-bg-light);
    border: 1px solid var(--color-black);
    padding: 0 120px 0 15px;
    font-family: var(--font-montserrat);
    font-size: 13px;
}

.footer-email-input::placeholder {
    opacity: 0.5;
}

.footer-subscribe-btn {
    position: absolute;
    right: 5px;
    width: 109px;
    height: 37px;
    border-radius: 8px;
    background-color: var(--color-secondary);
    border: none;
    font-size: 13px;
    text-transform: uppercase;
    font-family: var(--font-montserrat);
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.footer-subscribe-btn:hover {
    background-color: #d9a12a;
}

.footer-brush-top {
    left: 50%;
    transform: translateX(-50%);
    width: auto;
}

.footer-brush-image {
    width: 100%;
    margin-top: -135px;
    transform: scaleX(1);
}

/* Partner Logos */
.partners-section {
    padding: 20px 0;
}

.partner-logos {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-bottom: 10px;
    width: 70%;
    margin: 0 auto;
}

.partner-logo {
    max-height: 60px;
    width: auto;
    object-fit: contain;
}

/* Divider */
.footer-divider {
    border-top: 1px solid var(--color-gray-lighter);
    margin: 40px 0 30px;
}

/* Copyright */
.footer-copyright {
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 300;
    font-family: var(--font-montserrat);
    margin: 0;
    color: var(--color-black);
}

/* Footer Social */
.footer-social {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

.footer-social-link {
    color: var(--color-black);
    font-size: 18px;
    transition: color 0.3s ease;
}

.footer-social-link:hover {
    color: var(--color-primary);
}

/* ===========================
   Responsive - Tablet
   =========================== */

@media (max-width: 991px) {

    .contact-box {
        height: auto;
        padding: 40px;
    }

    .contact-map {
        height: 300px;
    }

    .contact-links-overlay {
        left: 20px;
        bottom: 20px;
    }

    .footer-content {
        padding-top: 80px;
    }
}

/* ===========================
   Responsive - Mobile
   =========================== */

@media (max-width: 767px) {

    .contact-section {
        margin-top: 80px;
    }

    .contact-box {
        padding: 30px 20px;
    }

    .contact-title {
        font-size: 32px;
    }

    .contact-label {
        font-size: 18px;
    }

    .contact-map {
        height: 250px;
    }

    .footer-content {
        padding-top: 60px;
    }

    .footer-logo {
        width: 100px;
        height: 102px;
        display: block;
        margin-bottom: 20px;
    }

    .footer-links {
        text-align: left;
        margin-bottom: 0;
        margin-left: 20px;
    }

    .footer-newsletter-title {
        text-align: left;
    }

    .footer-newsletter-form {
        justify-content: left;
    }

    .footer-email-input {
        max-width: 100%;
    }

    .partner-logos {
        display: inline-flex !important;
        flex-wrap: nowrap !important;
    }

    .partner-logo {
        height: 50px;
    }

    .footer-social {
        justify-content: left;
    }

    .footer-copyright {
        text-align: left;
        font-size: 10px;
    }
}

@media (max-width: 576px) {
    .footer-brush-image {
  margin-top: -34px !important;
    }
    .contact-title {
        font-size: 28px;
    }

    .footer-email-input {
        font-size: 12px;
        padding-right: 110px;
    }

    .footer-subscribe-btn {
        font-size: 12px;
        width: 100px;
    }

    .newsletter-section {
        margin-top: 20px;
        margin-bottom: 10px;
    }
}

.inner-hero {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Header Image */
.inner-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

/* Gradients */
.inner-hero-gradient-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 280px;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.85) 0%,
            rgba(0, 0, 0, 0.6) 50%,
            transparent 100%);
    z-index: 1;
}

.inner-hero-gradient-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 280px;
    background: linear-gradient(0deg,
            rgba(0, 0, 0, 0.9) 0%,
            rgba(0, 0, 0, 0.7) 50%,
            transparent 100%);
    z-index: 1;
}

/* ===========================
   Hero Content (Breadcrumbs + Title)
   =========================== */

.inner-hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: flex-end;
    padding-bottom: 80px;
    flex: 1;
}

/* Breadcrumbs */
.inner-breadcrumb {
    margin-bottom: 15px;
}

.inner-breadcrumb .breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
    font-size: 22px;
    font-weight: 400;
}

.inner-breadcrumb .breadcrumb-item {
    color: var(--color-white);
}

.inner-breadcrumb .breadcrumb-item a {
    color: var(--color-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.inner-breadcrumb .breadcrumb-item a:hover {
    color: var(--color-secondary);
}

.inner-breadcrumb .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.8);
}

.inner-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    content: "|";
    color: var(--color-white);
    padding: 0 8px;
}

/* Page Title */
.inner-hero-title {
    font-size: 50px;
    font-weight: 900;
    color: var(--color-white);
    text-transform: uppercase;
    margin: 0;
    line-height: 1;
}

/* ===========================
   Brush Stroke Bottom
   =========================== */

.inner-hero-brush-bottom {
    position: absolute;
    bottom: -80px;
    left: 0;
    width: 100%;
    z-index: 15;
    pointer-events: none;
    transform: scaleX(1.1);
}

.inner-hero-brush-image {
    width: 100%;
    height: auto;
    display: block;
}

/* ===========================
   Logo Badge
   =========================== */

.inner-hero-logo-badge {
    position: absolute;
    bottom: 0;
    right: 80px;
    z-index: 20;
    width: 220px;
    height: auto;
}

.inner-badge-logo {
    width: 100%;
    height: auto;
}

/* ===========================
   Social Media Links
   =========================== */

.inner-hero-social {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 20;
}

.inner-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: var(--color-white);
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.inner-social-link:hover {
    background-color: var(--color-secondary);
    color: var(--color-gray-darkest);
    transform: scale(1.1);
}

/* ===========================
   Responsive - Tablet
   =========================== */

@media (max-width: 991px) {
    .inner-hero {
        height: 350px;
    }

    .inner-hero-title {
        font-size: 56px;
    }

    .inner-hero-logo-badge {
        width: 180px;
        bottom: 30px;
        right: 60px;
    }

    .inner-hero-social {
        right: 30px;
        gap: 15px;
    }

    .inner-social-link {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
}

/* ===========================
   Responsive - Mobile
   =========================== */

@media (max-width: 767px) {
    .inner-hero {
        height: 300px;
    }

    .inner-hero-content {
        padding-bottom: 40px;
    }

    .inner-breadcrumb .breadcrumb {
        font-size: 12px;
    }

    .inner-hero-title {
        font-size: 42px;
    }

    .inner-hero-logo-badge {
        width: 140px;
        bottom: 20px;
        right: 40px;
    }

    .inner-hero-social {
        display: none;
    }
}

@media (max-width: 576px) {
    .inner-hero {
        height: 330px;
    }

    .inner-hero-content {
        padding-bottom: 90px;
    }

    .inner-hero-title {
        font-size: 32px;
    }

    .inner-hero-logo-badge {
        width: 145px;
        bottom: 0;
        right: 20px;
    }

    .inner-hero-brush-bottom {
        bottom: -90px;
        left: 50%;
        transform: translateX(-50%);
        width: auto;
        max-width: none;
    }

    .inner-hero-brush-image {
        display: block;
        width: auto;
        max-width: none;
        height: auto;
        transform: scaleX(1);
    }


}
/* ========================================
   Hero Section with Video
   ======================================== */

.home-hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.home-hero-video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.home-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;
}

.home-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.home-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.5) 100%
    );
    z-index: 2;
}

.home-hero-content {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    z-index: 3;
    text-align: center;
    color: white;
    padding: 0 20px;
}

.home-hero-title {
    font-size: 4rem;
    font-weight: 900;
    color: white;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    line-height: 1.2;
}




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

@media (max-width: 768px) {
    .home-hero-section {
        min-height: 500px;
        height: 70vh;
    }
    
    .home-hero-title {
        font-size: 2.5rem;
    }
    
    
}

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


/* Hero Title with Image */
.home-hero-title-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.home-hero-title-image {
    max-width: 150px;
    max-height: 150px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(2px 2px 8px rgba(0, 0, 0, 0.5));
}

/* Responsive */
@media (max-width: 768px) {
    .home-hero-title-image {
        max-width: 100px;
        max-height: 100px;
    }
    
    .home-hero-title-wrapper {
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .home-hero-title-image {
        max-width: 80px;
        max-height: 80px;
    }
    
    .home-hero-title-wrapper {
        gap: 10px;
    }
}

.contact-map-section {
      padding-bottom: 80px;
      
}
