/* Header Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    overflow-x: hidden;
}

/* Contact Strip */
.contact-strip {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #1a1a2e;
    color: #ffffff;
    padding: 8px 0;
    z-index: 1001;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-strip-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.contact-item:hover {
    color: #007bff;
}

.contact-item svg {
    flex-shrink: 0;
    stroke: currentColor;
}

.contact-item span {
    white-space: nowrap;
}

#mainHeader {
    position: fixed;
    top: 32px;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: all 0.3s ease;
    padding: 20px 0;
}

#mainHeader.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 5px 0;
    top: 32px;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

/* Header Right Section - Menu + CTA */
.header-right {
    display: flex;
    align-items: center;
    gap: 80px;
}

/* Desktop Navigation */
.desktop-nav {
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

#mainHeader:not(.scrolled) .nav-link {
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.nav-link:hover {
    color: #007bff;
}

#mainHeader:not(.scrolled) .nav-link:hover {
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #007bff;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* CTA Button */
.cta-button {
    padding: 12px 24px;
    /* background: linear-gradient(135deg, #007bff 0%, #0056b3 100%); */
    background: linear-gradient(135deg, #d2a557 0%, #e8cc87 100%);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
    margin-left: 0;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
    /* background: linear-gradient(135deg, #0056b3 0%, #004085 100%); */
    background: linear-gradient(135deg, #d2a557 0%, #e8cc87 100%);
}

.cta-button:active {
    transform: translateY(0);
}

#mainHeader:not(.scrolled) .cta-button {
    /* background: rgba(255, 255, 255, 0.2); */
    background: linear-gradient(135deg, #d2a557 0%, #e8cc87 100%);
    /* color: #ffffff; */
    /* border: 2px solid rgba(255, 255, 255, 0.5); */
    /* backdrop-filter: blur(10px); */
}

#mainHeader:not(.scrolled) .cta-button:hover {
    /* background: rgba(255, 255, 255, 0.3); */
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

.mobile-cta {
    display: none;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    gap: 5px;
    z-index: 1001;
    position: relative;
    width: 30px;
    height: 30px;
    justify-content: center;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
    border-radius: 2px;
}

#mainHeader:not(.scrolled) .hamburger .bar {
    background: #fff;
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #fff;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 1000;
    padding: 80px 15px 20px;
    overflow-y: auto;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: calc(100% - 100px);
    padding: 0;
}

.mobile-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu li {
    margin-bottom: 20px;
}

.mobile-menu .nav-link {
    display: block;
    padding: 15px;
    color: #333;
    font-size: 18px;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
}

.mobile-menu .nav-link:hover {
    color: #007bff;
    padding-left: 25px;
    background: #f5f5f5;
}

/* Overlay for mobile menu */
.mobile-nav::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: -1;
}

.mobile-nav.active::before {
    opacity: 1;
    visibility: visible;
}

/* Responsive Design */
@media (max-width: 968px) {
    .cta-button {
        padding: 10px 20px;
        font-size: 14px;
        margin-left: 15px;
    }
}

@media (max-width: 768px) {
    .contact-strip {
        padding: 6px 0;
    }

    .contact-strip-container {
        padding: 0 15px;
        justify-content: center;
    }

    .contact-info {
        gap: 20px;
    }

    .contact-item {
        font-size: 12px;
        gap: 6px;
    }

    .contact-item svg {
        width: 14px;
        height: 14px;
    }

    #mainHeader {
        top: 36px;
        padding: 15px 0;
    }

    #mainHeader.scrolled {
        top: 36px;
        padding: 12px 0;
    }

    .desktop-nav {
        display: none;
    }

    .cta-button {
        display: none;
    }

    .mobile-cta {
        display: block;
        width: 100%;
        margin: 20px 0;
        padding: 15px;
        font-size: 16px;
    }

    .hamburger {
        display: flex;
    }

    .logo img {
        height: 40px;
    }
}

@media (max-width: 480px) {
    .contact-strip {
        padding: 5px 0;
    }

    .contact-strip-container {
        padding: 0 10px;
    }

    .contact-info {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .contact-item {
        font-size: 11px;
        gap: 5px;
    }

    .contact-item svg {
        width: 12px;
        height: 12px;
    }

    .contact-item span {
        font-size: 11px;
    }

    #mainHeader {
        top: 35px;
    }

    #mainHeader.scrolled {
        top: 35px;
    }

    .header-container {
        padding: 0 10px;
    }

    .logo img {
        height: 35px;
    }

    .mobile-nav {
        width: 250px;
        padding: 80px 10px 20px;
    }
}

