:root {
    --primary-color: #4b2c7c;
    --primary-dark: #3a2163;
    --secondary-color: #028897;
    --accent-color: #ffcc00;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding-top: 80px; /* Space for fixed header */
}

/* Header Styles */
.header {
    background-color: var(--primary-color);
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem clamp(1rem, 5vw, 3rem);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

/* Logo Container */
.logo-container {
    display: flex;
    align-items: center;
    gap: clamp(0.5rem, 2vw, 1rem);
    text-decoration: none;
    transition: var(--transition);
}

.logo-container:hover {
    transform: translateY(-2px);
}

.header-logo {
    width: clamp(40px, 5vw, 55px);
    height: clamp(40px, 5vw, 55px);
    object-fit: contain;
    transition: var(--transition);
}

.logo-text {
    color: var(--white);
    font-weight: 700;
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    letter-spacing: 0.5px;
    white-space: nowrap;
    font-family: 'Poppins', sans-serif;
}

/* Navigation Links */
.nav-links {
    display: flex;
    gap: clamp(1rem, 3vw, 2.5rem);
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(0.9rem, 2vw, 1.05rem);
    padding: 0.5rem 0;
    position: relative;
    transition: var(--transition);
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--accent-color);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-links a:hover::after {
    width: 100%;
}

/* CTA Button */
.cta-link {
    background-color: var(--accent-color);
    color: var(--primary-dark) !important;
    padding: clamp(0.6rem, 1.5vw, 0.7rem) clamp(1rem, 2vw, 1.5rem) !important;
    border-radius: 30px;
    font-weight: 700 !important;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 204, 0, 0.3);
}

.cta-link:hover {
    background-color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 204, 0, 0.4);
    color: var(--primary-dark) !important;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: clamp(1.5rem, 6vw, 1.8rem);
    cursor: pointer;
    z-index: 1001;
    transition: var(--transition);
    padding: 0.5rem;
}

.mobile-menu-btn:hover {
    color: var(--accent-color);
    transform: rotate(90deg);
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(280px, 85vw);
        height: 100vh;
        background-color: var(--primary-dark);
        flex-direction: column;
        padding: 6rem 2rem 2rem;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
        transition: right 0.3s ease-out;
        gap: 1.5rem;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        padding: 0.8rem 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
        font-size: 1.1rem;
    }
    
    .cta-link {
        margin-top: 1rem;
        width: 100%;
        text-align: center;
    }
}

/* Small Mobile Adjustments */
@media (max-width: 480px) {
    body {
        padding-top: 60px;
    }
    
    .header {
        padding: 0.7rem clamp(0.8rem, 3vw, 1rem);
    }
    
    .logo-text {
        font-size: 1.3rem;
    }
    
    .header-logo {
        width: 40px;
        height: 40px;
    }
}