/* ================== HEADER ================== */

.site-header {
    width: 100%;
    background: #00000000;
    position: relative;
    /* z-index: 999; */
}

.header-container {
    max-width: 1400px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 40px;
}

/* ================== LOGO ================== */

.logo img {
    width: 180px;
}

/* ================== DESKTOP MENU ================== */

.menu-shape-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 90px;
    padding: 0 100px;
    top: -25px;
}

.menu-shape-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('https://axtra.crowdytheme-demo.com/wp-content/uploads/2024/03/header-bg-shep-dark.webp');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    z-index: 1;
}

.main-nav {
    display: flex;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.main-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
}

.main-nav a:hover {
    opacity: 0.7;
    color: #fff;
}

/* Active State - White */
.main-nav a.active {
    color: #fff !important;
    opacity: 1;
}

/* Focus State - White */
.main-nav a:focus {
    color: #fff !important;
    outline: none;
}


/* ================== DESKTOP CTA ================== */

.header-cta .btn-cta {
    background: #fff;
    color: #000 !important;
    padding: 14px 26px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
}

/* ================== HAMBURGER ================== */

.navbar-toggler {
    border: none;
    background: transparent;
    width: 40px;
    height: 30px;
    position: relative;
    z-index: 10001;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.navbar-toggler span {
    display: block;
    height: 3px;
    width: 100%;
    background: #fff;
    transition: all 0.4s;
}

/* Hamburger open animation */
.navbar-toggler.open span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.navbar-toggler.open span:nth-child(2) {
    opacity: 0;
}

.navbar-toggler.open span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ================== MOBILE MENU ================== */

.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #121212;
    padding: 60px 30px;
    transition: left 0.3s ease;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mobile-menu.show {
    left: 0;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav a {
    color: #fff;
    font-size: 24px;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

.mobile-nav a:hover {
    color: #f0a500;
}

.mobile-cta {
    background: #fff;
    color: #000;
    padding: 14px;
    border-radius: 30px;
    text-align: center;
    margin-top: 30px;
    font-weight: 600;
}

/* ================== RESPONSIVE ================== */

/* Tablets and below */
@media (max-width: 991px) {

    .menu-shape-wrap,
    .header-cta {
        display: none !important;
    }

    .logo img {
        width: 150px;
    }
}

/* Mobile phones */
@media (max-width: 767px) {
    .header-container {
        padding: 10px 20px;
        justify-content: space-around;

    }

    .mobile-nav a {
        font-size: 20px;
    }
}

/* Desktop layout */
@media (min-width: 992px) {
    .header-container .d-lg-flex {
        position: relative;
        justify-content: space-around;
    }

    .menu-shape-wrap {
        position: absolute;
        left: 90%;
        transform: translateX(-50%);
        z-index: 1;
    }

    .header-cta {
        margin-left: auto;
        /* Pushes to the right */
        position: relative;
        z-index: 2;
    }
}

.menu-shape-wrap.sticky {
    position: fixed;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    min-height: 70px;
    padding: 0 80px;
    z-index: 9999;

}

/* Adjust shape when sticky */
.menu-shape-wrap.sticky::before {
    top: 0;
}

/* ================== CONTACT SECTION STYLES ================== */
#contact {
    min-height: auto;
    background: #0a0a0a;
    padding: 0px 0 40px;
    overflow: hidden;
}

.contact-section {
    background: #0a0a0a;
    color: #fff;
}

/* Contact Info Footer at TOP - Centered */
.contact-info-footer {
    margin: 0 auto 0px;
    padding: 0 0 40px;
    text-align: center;
    max-width: 900px;
}

.contact-info-footer .row {
    justify-content: center;
}

.info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
    padding: 0 15px;
}

.info-icon {
    background: rgba(201, 243, 29, 0.1);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-bottom: 10px;
}

.info-icon i {
    color: #c9f31d;
    font-size: 1.5rem;
}

.info-content h5 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.info-content p {
    color: #aaa;
    font-size: 0.95rem;
    margin-bottom: 0;
    line-height: 1.5;
}

/* Map Container Styles - Reduced Height */
.map-container {
    height: 100%;
    min-height: 450px;
    position: relative;
}

.map-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 450px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    min-height: 450px;
    display: block;
    filter: grayscale(20%) contrast(1.1);
    transition: filter 0.3s ease;
}

.map-wrapper:hover iframe {
    filter: grayscale(0%) contrast(1);
}


/* Contact Form Container - Reduced Height */
.contact-form-container {
    background: #111111;
    height: 100%;
    min-height: 450px;
    padding: 40px 30px;
    display: flex;
    align-items: center;
}

.contact-form-wrapper {
    max-width: 550px;
    margin: 0 auto;
    width: 100%;
}

/* Contact Header */
.contact-header {
    margin-bottom: 30px;
    text-align: left;
}

.section-subtitle {
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    display: inline-block;
}

.section-title {
    color: #fff;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.section-description {
    color: #aaa;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Form Styles - Compact */
.contact-form .form-group {
    margin-bottom: 1.2rem;
}

.contact-form .form-label {
    color: #fff;
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 0.9rem;
}

.contact-form .input-group {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.contact-form .input-group:focus-within {
    border-color: #c9f31d;
    box-shadow: 0 0 0 3px rgba(201, 243, 29, 0.1);
}

.contact-form .input-group-text {
    background: transparent;
    border: none;
    color: #c9f31d;
    padding: 0.6rem 0.8rem;
    font-size: 0.9rem;
}

.contact-form .form-control,
.contact-form .form-select {
    background: transparent;
    border: none;
    color: #fff;
    padding: 0.6rem 0.8rem;
    font-size: 0.95rem;
    height: 45px;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    background: transparent;
    border: none;
    box-shadow: none;
    color: #fff;
}

.contact-form .form-control::placeholder,
.contact-form .form-select::placeholder {
    color: #666;
    font-size: 0.9rem;
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 100px;
    height: 100px;
}

/* Submit Button */
.btn-submit {
    background: linear-gradient(135deg, #c9f31d 0%, #85a015 100%);
    color: #000;
    border: none;
    padding: 14px 25px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    height: 50px;
}

.btn-submit:hover {
    background: linear-gradient(135deg, #d8ff2e 0%, #95b81a 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(201, 243, 29, 0.2);
}

.btn-submit:active {
    transform: translateY(-1px);
}

/* Form Validation Styles */
.form-control.is-invalid {
    border-color: #dc3545 !important;
}

.form-control.is-valid {
    border-color: #198754 !important;
}

.invalid-feedback {
    color: #dc3545;
    font-size: 0.8rem;
    margin-top: 4px;
}

/* Success Message */
.success-message {
    background: rgba(25, 135, 84, 0.1);
    border: 1px solid #198754;
    border-radius: 8px;
    padding: 15px;
    margin-top: 15px;
    text-align: center;
}

.success-message i {
    color: #198754;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.success-message h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.success-message p {
    color: #aaa;
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 1199px) {
    .section-title {
        font-size: 2rem;
    }

    .contact-form-container {
        padding: 35px 25px;
    }

    .map-container,
    .map-wrapper,
    .map-wrapper iframe {
        min-height: 400px;
    }

    .contact-form-container {
        min-height: 400px;
    }
}

@media (max-width: 991px) {
    #contact {
        padding: 60px 0 30px;
    }

    .contact-info-footer {
        margin-bottom: 40px;
        padding-bottom: 30px;
    }

    .info-item {
        margin-bottom: 25px;
    }

    .map-container,
    .map-wrapper,
    .map-wrapper iframe {
        min-height: 350px;
        height: 350px;
    }

    .contact-form-container {
        min-height: auto;
        padding: 30px 20px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-description {
        font-size: 0.95rem;
    }

    .map-overlay {
        left: 20px;
        bottom: 20px;
        max-width: 250px;
        padding: 15px;
    }
}

@media (max-width: 767px) {
    #contact {
        padding: 50px 0 20px;
    }

    .contact-info-footer {
        margin-bottom: 30px;
        padding-bottom: 20px;
    }

    .contact-form-container {
        padding: 25px 15px;
    }

    .section-title {
        font-size: 1.6rem;
        text-align: center;
    }

    .section-description {
        font-size: 0.9rem;
        text-align: center;
    }

    .contact-header {
        text-align: center;
    }

    .contact-form .input-group-text {
        padding: 0.5rem 0.75rem;
    }

    .contact-form .form-control,
    .contact-form .form-select {
        padding: 0.5rem 0.75rem;
        font-size: 0.9rem;
    }

    .btn-submit {
        padding: 12px 20px;
        font-size: 0.95rem;
        height: 45px;
    }

    .map-overlay {
        position: relative;
        left: 0;
        bottom: 0;
        max-width: 100%;
        margin: 15px;
        text-align: center;
    }

    .info-icon {
        width: 50px;
        height: 50px;
    }

    .info-icon i {
        font-size: 1.2rem;
    }

    .info-content h5 {
        font-size: 1rem;
    }

    .info-content p {
        font-size: 0.9rem;
    }
}

@media (max-width: 575px) {
    .section-title {
        font-size: 1.5rem;
    }

    .contact-header {
        margin-bottom: 25px;
    }

    .contact-form-wrapper {
        padding: 0 5px;
    }

    .map-container,
    .map-wrapper,
    .map-wrapper iframe {
        min-height: 300px;
        height: 300px;
    }

    .contact-info-footer .col-md-4 {
        width: 100%;
        max-width: 300px;
        margin: 0 auto 20px;
    }
}

/* Dark Mode Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #111;
}

::-webkit-scrollbar-thumb {
    background: #b0d51d;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #c9f31d;
}
.header__logo img{
    width:120px;
    transform: rotate(270deg);
}