/* Custom Header Styles */

.header-clean {
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
    z-index: 999;
}

.header-clean.header-main {
    position: sticky;
    top: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.header-wrapper {
    display: flex;
    flex-direction: column;
    padding: 0 100px;
    margin: 0 auto;
}

/* Top Bar */
.header-top-bar {
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.social-contact {
    display: flex;
    align-items: center;
    gap: 2px;
    justify-content: flex-start;
}

.social-link {
    color: #333;
    font-size: 12px;
    transition: color 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    padding: 8px;
    border-radius: 4px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.social-link:hover {
    color: #1a5f3f;
}

.contact-phone {
    color: #666;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 40px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-phone:hover {
    color: #1a5f3f;
}

.contact-divider {
    color: #d0d0d0;
    font-size: 16px;
    margin-right: 12px;
}

.contact-phone i {
    color: #1a5f3f;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
    padding: 8px;
    border-radius: 4px;
}

/* Main Header Bar */
.header-main-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    padding-left: 20px;
    padding-right: 20px;
    gap: 40px;
}

.header-logo {
    flex-shrink: 0;
}

.header-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 12px;
}

.header-logo img {
    height: 48px;
    width: auto;
    display: block;
    max-height: 48px;
}

.header-logo img:nth-child(2) {
    height: 18px;
    max-height: 18px;
}

/* Navigation */
.header-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 35px;
}

.nav-menu > li {
    position: relative;
}

.nav-menu > li > a {
    color: #333;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-menu > li > a:hover,
.nav-menu > li.current-menu-item > a {
    color: #1a5f3f;
}

.nav-menu .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 4px;
    min-width: 200px;
    list-style: none;
    margin: 10px 0 0 0;
    padding: 10px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.nav-menu li:hover .sub-menu {
    display: block;
}

.nav-menu .sub-menu li {
    margin: 0;
}

.nav-menu .sub-menu li a {
    display: block;
    padding: 10px 20px;
    color: #666;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.3s ease;
}

.nav-menu .sub-menu li a:hover {
    background: #f5f5f5;
    color: #1a5f3f;
    padding-left: 25px;
}

/* Header Right */
.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.btn-newsletter {
    background: #083411;
    color: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
}

.btn-newsletter:hover {
    background: #AAF8C6;
    color: #000;
    transform: translateX(3px);
}

.btn-newsletter i {
    font-size: 12px;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #333;
    cursor: pointer;
    padding: 0;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .header-main-bar {
        gap: 20px;
    }

    .header-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .nav-menu {
        gap: 20px;
    }

    .btn-newsletter {
        padding: 10px 16px;
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .header-top-bar {
        display: none;
    }

    .header-main-bar {
        padding: 12px 0;
    }

    .header-logo img {
        height: 32px;
    }

    .header-right {
        gap: 15px;
    }

    .btn-newsletter {
        padding: 8px 14px;
        font-size: 12px;
    }

    .social-contact {
        gap: 2px;
    }

    .contact-phone {
        font-size: 12px;
    }
}

/* Sticky Header Animation */
.header-clean.sticky {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Dropdown Arrow */
.nav-menu > li > a::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid currentColor;
    margin-left: 5px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-menu > li:has(.sub-menu) > a::after {
    opacity: 1;
}


/* Hero Section - Click Away Text */
.line-shape {
    color: #93D7AC;
    font-family: Inter;
    font-size: 56px;
    font-style: normal;
    font-weight: 700;
    line-height: 67px;
    text-transform: capitalize;
}


/* Hero Section - Main Heading */
.hero-content h1 {
    color: #000;
    font-family: Inter;
    font-size: 56px;
    font-style: normal;
    font-weight: 700;
    line-height: 67px;
    text-transform: capitalize;
}

.hero-content h1 .line-shape {
    font-size: 56px;
    line-height: 67px;
}
