* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



.header {
    background: #132b6b;
    padding-bottom: 6px;
    position: relative;
}

.top-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;

}

.logo {
    width: 200px;
    height: 80px;
    background: linear-gradient(135deg, #FF6B6B, #4ECDC4, #45B7D1, #FFA726);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    border: 2px solid #fff;
}

.logo::before {
    content: '🌴';
    font-size: 20px;
    position: absolute;
    top: 8px;
    right: 12px;
}

.logo-text {
    color: white;
    text-align: center;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.logo-main {
    font-size: 28px;
    font-style: italic;
    font-family: 'Brush Script MT', cursive;
    margin-bottom: -5px;
}

.logo-sub {
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 2px;
    color: #FFD700;
}

.email-section {
    flex: 1;
    margin-left: 90px;
}

.email-link {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.email-icon {
    font-size: 20px;
}

.contact-info {
    display: flex;
    gap: 30px;
    align-items: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-item:hover {
    opacity: 0.8;
}

.contact-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: white;
}



.contact-text {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 16px;
    opacity: 0.9;
    font-weight: 500;
}

.contact-value {
    font-size: 16px;
    font-weight: bold;
}

/* Navigation Styles */
.nav-container {
    margin-top: 3px;
    position: relative;
}

.nav-menu {
    display: flex;
    justify-content: center;
    gap: 30px;
    align-items: center;
}

.nav-item {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.nav-item:hover {
    opacity: 0.8;
}

.nav-icon {
    font-size: 18px;
}

.dropdown::after {
    content: '▼';
    font-size: 10px;
    margin-left: 3px;
}

/* Mobile Menu Button */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.menu-toggle:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Hover effect for white text → #d4af37 */
.email-link:hover,
.nav-item:hover,
.contact-item:hover {
    color: #d4af37;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hamburger Animation */
.menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Red underline separator */
.separator {
    height: 2px;
    background: white;
    
}

/* Responsive design */
@media (max-width: 1200px) {
    .nav-menu {
        gap: 30px;
    }

    .contact-info {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 2px 10px;
    }

    .top-section {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
    }

    .email-section {
        display: none;
        /* Hide email from top section on mobile */
        margin-left: 0;
    }

    .contact-info {
        display: flex;


    }

    .contact-item {
        display: flex;
        align-items: center;
        gap: 0;
    }

    .contact-text {
        display: none;
        /* Hide text, show only icons */
    }

    .contact-icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .logo {
        width: 120px;
        height: 50px;
    }

    .logo-main {
        font-size: 18px;
    }

    .logo-sub {
        font-size: 10px;
    }

    .email-link {
        font-size: 14px;
    }

    .email-icon {
        font-size: 16px;
    }

    /* Mobile Menu Styles */
    .menu-toggle {
        display: block;
        position: relative;
        top: 0;
        right: 0;
        z-index: 1001;
        margin-left: 8px;
    }

    .nav-container {
        position: relative;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background: #132b6b;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 0;
        padding: 60px 25px 25px;
        transition: right 0.3s ease-in-out;
        z-index: 1000;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-item {
        width: 100%;
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 14px;
        justify-content: flex-start;
    }

    .nav-item:last-child {
        border-bottom: none;
    }

    .nav-item:hover {
        background-color: rgba(255, 255, 255, 0.1);
        padding-left: 8px;
        border-radius: 4px;
    }

    .nav-icon {
        font-size: 16px;
    }

    /* Mobile Menu Overlay */
    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
}

@media (max-width: 480px) {
    .contact-info {
        flex-direction: row;
        gap: 8px;
    }

    .logo {
        width: 120px;
        height: 48px;
    }

    .logo-main {
        font-size: 18px;
    }

    .logo-sub {
        font-size: 10px;
    }

    .contact-icon {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

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

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

    .email-link {
        font-size: 13px;
    }

    .nav-menu {
        width: 100%;
        right: -100%;
        padding: 50px 20px 20px;
    }

    .nav-item {
        padding: 10px 0;
        font-size: 13px;
    }

    .separator {
        margin: 5px 0;
    }
}

/* Tecno Common 30 (360px and below) */
@media (max-width: 360px) {
    .header {
        padding: 5px 8px !important;
    }

    .top-section {
        flex-wrap: wrap;
        gap: 5px;
    }

    .logo {
        width: 100px !important;
        height: 40px !important;
    }

    .logo img {
        max-width: 100%;
        height: auto;
    }

    .email-section {
        display: none;
    }

    .contact-info {
        gap: 5px !important;
    }

    .contact-icon {
        width: 28px !important;
        height: 28px !important;
        font-size: 12px !important;
    }

    .menu-toggle {
        padding: 5px;
    }

    .menu-toggle span {
        width: 20px;
        height: 2px;
        margin: 4px 0;
    }

    .nav-menu {
        width: 85% !important;
        padding: 50px 15px 15px !important;
    }

    .nav-item {
        padding: 8px 0 !important;
        font-size: 12px !important;
    }

    .nav-icon {
        font-size: 14px !important;
    }

    .separator {
        margin: 5px 0;
    }
}
