/*=============== GOOGLE FONTS ===============*/
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/*=============== VARIABLES ===============*/
:root {
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary-color: #64748b;
    --dark-color: #0f172a;
    --light-color: #f8fafc;
    --gray-color: #e2e8f0;
    --text-color: #334155;
    --text-light: #64748b;
    --white: #ffffff;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
    --header-height: 80px;
}

/*=============== RESET ===============*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.5;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/*=============== HEADER ===============*/
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
    height: var(--header-height);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/*=============== LOGO ===============*/
.logo {
    flex-shrink: 0;
}

.logo-img {
    height: 50px;
    width: auto;
}

/*=============== MENU TOGGLE (MOBILE) ===============*/
.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark-color);
    z-index: 1001;
}

.menu-toggle .close-icon {
    display: none;
}

.menu-toggle.active .open-icon {
    display: none;
}

.menu-toggle.active .close-icon {
    display: block;
}

/*=============== NAVIGATION MENU ===============*/
.nav-menu {
    flex: 1;
    margin: 0 2rem;
}

.nav-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.nav-item {
    position: static;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem 1rem;
    font-weight: 500;
    color: var(--dark-color);
    transition: var(--transition);
    border-radius: 0.375rem;
}

.nav-link:hover {
    color: var(--primary-color);
    background: var(--light-color);
}

.dropdown-icon {
    font-size: 1.125rem;
    transition: transform 0.3s;
}

.nav-item:hover .dropdown-icon {
    transform: rotate(180deg);
}

/*=============== MEGA MENU ===============*/
.mega-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: var(--header-height);
    background: var(--white);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    border-top: 2px solid var(--primary-color);
    z-index: 1000;
}

.nav-item:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.mega-menu-column {
    min-width: 0;
}

.mega-menu-section {
    margin-bottom: 1.5rem;
}

.mega-menu-section:last-child {
    margin-bottom: 0;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--gray-color);
}

.section-title i {
    font-size: 1.25rem;
}

.section-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.section-links a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0rem;
    color: var(--text-color);
    font-size: 0.938rem;
    transition: var(--transition);
    border-radius: 0.375rem;
    text-decoration: none;
}

.section-links a i {
    font-size: 1rem;
    color: var(--primary-color);
    width: 1.25rem;
}

.section-links a:hover {
    background: var(--light-color);
    color: var(--primary-color);
    transform: translateX(5px);
}

/*=============== HEADER ACTIONS ===============*/
.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-shrink: 0;
}

.contact-info {
    display: flex;
    flex-direction: column;
    text-align: right;
}

.call-label {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.phone-number {
    font-weight: 600;
    color: var(--dark-color);
    font-size: 1rem;
    text-decoration: none;
}

.phone-number:hover {
    color: var(--primary-color);

    
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--light-color);
    transition: var(--transition);
}

.social-icon:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.social-icon img {
    width: 24px;
    height: 24px;
}

.social-icon.whatsapp:hover {
    background: #25D366;
}

.social-icon.call:hover {
    background: var(--primary-color);
}

.social-icon.whatsapp:hover img,
.social-icon.call:hover img {
    filter: brightness(0) invert(1);
}

/*=============== MAIN CONTENT ===============*/
.main-content {
    margin-top: var(--header-height);
    padding: 2rem;
    min-height: 80vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem;
    /* background: rgba(255, 255, 255, 0.95); */
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
}

.container h1 {
    font-size: 2.5rem;
    /* color: var(--dark-color); */
    margin-bottom: 1rem;
}

.container p {
    font-size: 1.125rem;
    /* color: var(--text-color); */
}

/*=============== RESPONSIVE DESIGN ===============*/

/* Tablet */
@media (max-width: 1024px) {
    .header-container {
        padding: 0 1rem;
    }

    .nav-list {
        gap: 1rem;
    }

    .nav-link {
        padding: 0.5rem 0.75rem;
        font-size: 0.938rem;
    }

    .header-actions {
        gap: 1rem;
    }

    .phone-number {
        font-size: 0.875rem;
    }

    .mega-menu-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 1.5rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }

    .menu-toggle {
        display: block;
        order: 1;
    }

    .logo {
        order: 0;
    }

    .header-actions {
        order: 2;
    }

    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background: var(--white);
        margin: 0;
        overflow-y: auto;
        transition: left 0.3s ease;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem;
        gap: 0;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        width: 100%;
        padding: 1rem;
        justify-content: space-between;
    }

    .mega-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-top: none;
        display: none;
        background: var(--light-color);
    }

    .nav-item.active .mega-menu {
        display: block;
    }

    .mega-menu-content {
        grid-template-columns: 1fr;
        padding: 1rem;
        gap: 1rem;
    }

    .section-links a {
        padding: 0.75rem 1rem;
    }

    .header-actions {
        gap: 0.5rem;
    }

    .contact-info {
        display: none;
    }

    .social-icons {
        gap: 0.25rem;
    }

    .social-icon {
        width: 35px;
        height: 35px;
    }

    .social-icon img {
        width: 20px;
        height: 20px;
    }

    .container {
        padding: 1.5rem;
    }

    .container h1 {
        font-size: 2rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .header-container {
        padding: 0 0.75rem;
    }

    .logo-img {
        height: 40px;
    }

    .social-icon {
        width: 32px;
        height: 32px;
    }

    .social-icon img {
        width: 18px;
        height: 18px;
    }

    .container h1 {
        font-size: 1.5rem;
    }

    .container p {
        font-size: 1rem;
    }
}

/* Animation for mega menu items */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mega-menu-column {
    animation: slideIn 0.3s ease forwards;
}

.mega-menu-column:nth-child(1) { animation-delay: 0.1s; }
.mega-menu-column:nth-child(2) { animation-delay: 0.2s; }
.mega-menu-column:nth-child(3) { animation-delay: 0.3s; }
.mega-menu-column:nth-child(4) { animation-delay: 0.4s; }

