/* ===== CSS Variables - Professional Purple Theme ===== */
/* ===== CSS Variables - Professional SaaS Theme ===== */
:root {


/*--primary:#ff2d75;
--primary-dark:#e91e63;

--secondary:#ff5fa2;
--secondary-light:#ff8fb8;*/

--primary:#6366F1;          /* Indigo Primary */
--primary-dark:#4F46E5;

--secondary:#3B82F6;        /* Blue Accent */
--secondary-dark:#2563EB;

--secondary-light:#60A5FA;

--accent:#9333EA;           /* Purple Highlight */

--gray-dark:#1F2937;
--gray-light:#F8FAFC;
--white:#ffffff;

--text-primary:#111827;
--text-secondary:#6B7280;

--border-color:#E5E7EB;

--shadow-sm:0 2px 6px rgba(0,0,0,0.06);
--shadow-md:0 6px 20px rgba(0,0,0,0.10);
--shadow-lg:0 15px 40px rgba(0,0,0,0.15);

}

/* Active Menu Item */
.navbar a.active {
    color: var(--primary);
    position: relative;
    font-weight:600;
}

.navbar a.active::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 10px;
    background: var(--primary);
    border-radius: 2px;
}



/* ===== signup-section  ===== */
 

 .signup-section{
padding:80px 20px;
background:linear-gradient(135deg,#f5f7fb,#e6ecf7);
min-height:100vh;
display:flex;
align-items:center;
}

.signup-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
}

.signup-form-box{
background:#fff;
padding:40px;
border-radius:10px;
box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.signup-title{
font-size:32px;
margin-bottom:10px;
}

.signup-subtitle{
color:#666;
margin-bottom:30px;
}

.form-group{
margin-bottom:20px;
}

.form-group label{
display:block;
margin-bottom:6px;
font-weight:600;
}

.form-group input{
width:100%;
padding:12px;
border:1px solid #ddd;
border-radius:6px;
}

.form-checkbox{
display:flex;
gap:10px;
font-size:14px;
margin-bottom:20px;
}

.signup-info{
color:#333;
}

.step{
display:flex;
gap:15px;
margin-bottom:25px;
}

.step-number{
width:40px;
height:40px;
background:#ff2d75;
color:#fff;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-weight:bold;
}
/* ===== Logo Size ===== */
.logo-img{
height:45px;
width:auto;
display:block;
}


/* ===== button signup ===== */


.nav-signup{
background:#ff2d75;
color:#fff;
padding:10px 20px;
border-radius:8px;
font-weight:600;
}

.nav-signup:hover{
background:#e91e63;
color:#fff;
}
/* ===== Global ===== */
*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Inter','Segoe UI',sans-serif;
color:var(--text-primary);
background:var(--white);
line-height:1.6;
}

.container{
max-width:1200px;
margin:auto;
padding:0 1.5rem;
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
}

a{
text-decoration:none;
color:inherit;
}

ul{
list-style:none;
}

 


/* ===== Signup Page ===== */

.signup-section{
padding:80px 20px;
background:linear-gradient(135deg,#f4f7fb,#e6ecf7);
min-height:100vh;
}

.signup-container{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
max-width:1100px;
margin:auto;
}

.signup-box{
background:#fff;
padding:40px;
border-radius:10px;
box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.signup-box h1{
font-size:30px;
margin-bottom:10px;
}

.signup-text{
color:#666;
margin-bottom:25px;
}

.form-group{
margin-bottom:18px;
}

.form-group label{
display:block;
margin-bottom:6px;
font-weight:600;
}

.form-group input{
width:100%;
padding:12px;
border:1px solid #ddd;
border-radius:6px;
}

.form-check{
display:flex;
gap:10px;
font-size:14px;
margin-bottom:20px;
}

.signup-btn{
width:100%;
padding:14px;
}

.login-text{
margin-top:20px;
text-align:center;
}

.signup-info h2{
margin-bottom:30px;
}

.step{
display:flex;
gap:15px;
margin-bottom:25px;
}

.step-number{
width:40px;
height:40px;
background:#ff2d75;
color:#fff;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-weight:bold;
}


/* ===== MOBILE RESPONSIVE ===== */

@media (max-width:900px){

.signup-container{
grid-template-columns:1fr;
gap:40px;
}

.signup-info{
order:-1;
text-align:left;
}

.step{
justify-content:center;
}

.signup-box{
padding:30px 20px;
}

}

@media (max-width: 480px) {
    .signup-section {
        padding: 40px 0;
        min-height: auto;
    }

    .signup-container {
        gap: 20px;
        max-width: 100%;
    }

    .signup-box {
        padding: 20px;
        margin: 20px;
        border-radius: 8px;
    }

    .signup-box h1 {
        font-size: 24px;
        margin-bottom: 8px;
    }

    .signup-text {
        margin-bottom: 20px;
        font-size: 0.9rem;
    }

    .form-group {
        margin-bottom: 15px;
    }

    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 5px;
    }

    .form-group input,
    .form-group textarea {
        padding: 10px;
        font-size: 1rem;
    }

    .form-check {
        font-size: 12px;
        gap: 8px;
    }

    .signup-btn {
        padding: 12px;
        font-size: 0.95rem;
    }

    .login-text {
        font-size: 0.9rem;
        margin-top: 15px;
    }

    .signup-info h2 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .step {
        gap: 12px;
        margin-bottom: 20px;
        justify-content: flex-start;
    }

    .step-number {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
        flex-shrink: 0;
    }

    .step h3 {
        font-size: 14px;
        margin-bottom: 4px;
    }

    .step p {
        font-size: 0.85rem;
        color: #666;
    }
}


.signup-section{
padding:80px 20px;
background:linear-gradient(135deg,#f5f7fb,#e6ecf7);
min-height:100vh;
}

.signup-container{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
max-width:1100px;
margin:auto;
}

.signup-box{
background:#fff;
padding:40px;
border-radius:10px;
box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.signup-box h1{
font-size:30px;
margin-bottom:10px;
}

.signup-text{
color:#666;
margin-bottom:25px;
}

.form-group{
margin-bottom:18px;
}

.form-group label{
display:block;
margin-bottom:6px;
font-weight:600;
}

.form-group input,
.form-group textarea{
width:100%;
padding:12px;
border:1px solid #ddd;
border-radius:6px;
}

.form-check{
display:flex;
gap:10px;
font-size:14px;
margin-bottom:20px;
}

.signup-btn{
width:100%;
padding:14px;
}

.step{
display:flex;
gap:15px;
margin-bottom:25px;
}

.step-number{
width:40px;
height:40px;
background:#ff2d75;
color:#fff;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-weight:bold;
}


/* Mobile */

@media (max-width:900px){

.signup-container{
grid-template-columns:1fr;
gap:40px;
}

}

/*@media (max-width:900px){

.signup-container{
grid-template-columns:1fr;
gap:40px;
}

.signup-info{

text-align:left;
}

.step{
justify-content:flex-start;
}

}*/



/* ===== Top Info Bar (Orange) ===== */
.topbar {
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 0.75rem 0;
    font-size: 0.9rem;
}

.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.topbar-content {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.topbar-content span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.topbar-content a {
    color: #fff;
    font-weight: 500;
}

.topbar-content a:hover {
    text-decoration: underline;
}

/* ===== Navigation Bar ===== */
.navbar {
    background: var(--white);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 999;
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.25rem;
}

.logo-icon {
    font-size: 1.75rem;
}

.logo-text {
    color: var(--primary);
    letter-spacing: 1px;
}

.logo-highlight {
    color: var(--secondary);
}

/* ===== Navigation Menu ===== */
.nav-menu {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.nav-menu > li {
    position: relative;
}

.nav-menu a {
    padding: 0.75rem 1rem;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.95rem;
    display: block;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary);
    background: rgba(255, 107, 53, 0.1);
}

/* Active Menu */
.nav-menu a.active{
color:var(--primary);
font-weight:600;
position:relative;
background:transparent;
}

.nav-menu a.active::after{
content:'';
position:absolute;
left:10%;
bottom:-6px;
width:80%;
height:3px;
background:linear-gradient(90deg,#7C3AED,#2563EB);
border-radius:2px;
}

.nav-login {
    color: var(--secondary) !important;
    font-weight: 600;
}

.nav-signup {
    background: var(--secondary);
    color: white !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 0.5rem;
    margin-left: 0.5rem;
}

.nav-signup:hover {
    background: var(--secondary-dark) !important;
    box-shadow: var(--shadow-md);
}

/* ===== Dropdown Menu ===== */
/* ===== Dropdown Menu ===== */

.dropdown {
    position: relative;
}
/* Parent dropdown active */
.dropdown.active > a{
color:#ff4f87;
font-weight:1000;
}

.dropdown-toggle::after {
    content: '';
    display: inline-block;
    width: 5px;
    height: 5px;
    border-right: 2px solid;
    border-bottom: 2px solid;
    transform: rotate(-45deg);
    margin-left: 0.5rem;
    vertical-align: -1px;
}

/* FIXED DROPDOWN */

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    padding: 0.5rem 0;
    min-width: 260px;   /* width increase */
    box-shadow: var(--shadow-lg);
    display: none;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li a {
    padding: 12px 20px;
    color: var(--text-primary);
    display: block;
    font-size: 15px;
}

.dropdown-menu li a:hover {
    background: var(--gray-light);
    color: var(--primary);
    padding-left: 24px;
}

/* ===== Mobile Menu Toggle ===== */


/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary{
background: linear-gradient(135deg,#ff2d75,#ff5fa2);
color:#fff;
padding:12px 26px;
border-radius:8px;
text-decoration:none;
font-weight:600;
border:none;
transition:0.3s;
}

.btn-primary:hover{
background: linear-gradient(135deg,#e91e63,#ff2d75);
transform:translateY(-2px);
box-shadow:0 8px 20px rgba(255,45,117,0.3);
}

 
/*.btn-secondary{
border:2px solid #2563EB;
color:#2563EB;
background:#fff;
}

.btn-secondary:hover{
background:#2563EB;
color:#fff;
}*/

.btn-secondary{
border:2px solid #2563EB;
color:#2563EB;
padding:12px 26px;
border-radius:8px;
text-decoration:none;
font-weight:600;
background:#fff;
transition:0.3s;
}

.btn-secondary:hover{
background:#2563EB;
color:#fff;
}


.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

@media (max-width: 480px) {
    .btn-large {
        padding: 0.85rem 1.5rem;
        font-size: 0.95rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* ===== Hero Section ===== */
.hero {
background:linear-gradient(135deg,#F8FAFC 0%,#EEF2FF 100%);
    padding: 4rem 0;
    margin-top: -0px;
    padding-top: 120px;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    animation: slideInLeft 0.8s ease;
}

.hero-subtitle {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--blue-light) 100%);
    border-radius: 1rem;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: white;
    box-shadow: var(--shadow-lg);
}

.hero-image img{
width:100%;
max-width:450px;
border-radius:16px;
box-shadow:0 20px 40px rgba(0,0,0,0.15);
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===== Section Headers ===== */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header-subtitle {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== Feature Section ===== */


.features{
padding:80px 0;
background:#f8fafc;
}

.features-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:30px;
margin-top:40px;
}

@media (max-width:768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width:480px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

.feature-card{
background:#ffffff;
padding:40px 25px;
border-radius:12px;
border:1px solid #e5e7eb;
text-align:center;
transition:all .3s ease;
box-shadow:0 5px 15px rgba(0,0,0,0.05);
}

@media (max-width:480px) {
    .feature-card {
        padding: 25px 15px;
    }
}

.feature-card:hover{
transform:translateY(-6px);
box-shadow:0 15px 35px rgba(0,0,0,0.1);
}

.feature-icon{
width:70px;
height:70px;
margin:auto;
margin-bottom:20px;
border-radius:50%;
background:linear-gradient(135deg,#7C3AE9,#3B82F6);
display:flex;
align-items:center;
justify-content:center;
font-size:26px;
color:#fff;
}

.feature-card h3{
font-size:22px;
margin-bottom:10px;
color:#1f2937;
}

.feature-card p{
color:#6b7280;
font-size:15px;
}
.features-grid .feature-card h3{
font-size:28px;
font-weight:700;
color:#111827;
}
/* ===== Service Cards ===== */
.services-section {
    padding: 5rem 0;
    background: var(--gray-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

@media (max-width:768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.service-card {
    background: var(--white);
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.service-header {
    background: linear-gradient(135deg, var(--secondary), var(--blue-light));
    color: white;
    padding: 2rem;
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

@media (max-width:480px) {
    .service-header {
        min-height: 150px;
        font-size: 2.5rem;
        padding: 1.5rem;
    }
}

.service-content {
    padding: 2rem;
}

.service-card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-card a {
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.service-card a:hover {
    gap: 1rem;
}

/* ===== CTA Section ===== */
.cta {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    color: white;
    padding: 4rem;
    border-radius: 1rem;
    text-align: center;
    margin: 4rem 0;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta .btn {
    background: var(--primary);
    color: white;
}

.cta .btn:hover {
    background: var(--primary-dark);
}

/* ===== Footer ===== */
.footer {
    background: var(--gray-dark);
    color: #ecf0f1;
    padding: 3rem 0 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

@media (max-width: 480px) {
    .footer-section h3,
    .footer-section h4 {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .footer-section p {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
        line-height: 1.6;
    }

    .footer-section ul {
        gap: 0.5rem;
    }

    .footer-section a {
        font-size: 0.85rem;
    }
}

.footer-section p {
    color: #bdc3c7;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.footer-section ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-section a {
    color: #bdc3c7;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

@media (max-width: 480px) {
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        padding-top: 1.5rem;
    }

    .footer-bottom p {
        font-size: 0.8rem;
        margin: 0;
    }

    .footer-bottom-links {
        width: 100%;
        font-size: 0.8rem;
    }

    .footer-bottom-links a {
        color: #bdc3c7;
        text-decoration: none;
    }
}

.footer-bottom p {
    color: #95a5a6;
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary);
    color: white;
}

/* ===== Pricing Section ===== */
.pricing {
    padding: 5rem 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    border: 2px solid var(--border-color);
    border-radius: 0.75rem;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.pricing-card.featured {
    border-color: var(--secondary);
    background: linear-gradient(135deg, rgba(30, 136, 229, 0.05), transparent);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: var(--primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
}

.pricing-card h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.pricing-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.pricing-period {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.pricing-features {
    text-align: left;
    margin: 2rem 0;
    padding: 2rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.pricing-features li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pricing-features i {
    color: var(--secondary);
    font-weight: 700;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .nav-menu {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        flex-direction: column;
        background: var(--white);
        padding: 1rem 0;
        gap: 0;
        border-top: 1px solid var(--border-color);
        display: none;
        max-height: 80vh;
        overflow-y: auto;
    }

    .nav-menu.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }

    .topbar-content {
        flex-direction: column;
        gap: 0.5rem;
        font-size: 0.8rem;
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero {
        padding-top: 80px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-image{
background:linear-gradient(135deg,var(--secondary),var(--secondary-light));
border-radius:1rem;
height:400px;
display:flex;
align-items:center;
justify-content:center;
font-size:5rem;
color:white;
box-shadow:var(--shadow-lg);
}

    .cta {
        padding: 2rem;
        margin: 2rem 0;
    }

    .features {
        padding: 40px 0;
    }

    .services-section {
        padding: 2.5rem 0;
    }

    .pricing {
        padding: 2.5rem 0;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .section-header-subtitle {
        font-size: 0.85rem;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .service-content {
        padding: 1.5rem;
    }

    .service-card h3 {
        font-size: 1.1rem;
    }

    .service-card p {
        font-size: 0.9rem;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 22px;
    }

    .feature-card h3 {
        font-size: 18px;
    }

    .feature-card p {
        font-size: 13px;
    }

    .cta {
        padding: 2rem 1rem;
    }

    .cta h2 {
        font-size: 1.75rem;
    }

    .cta p {
        font-size: 0.95rem;
    }
}

/* ===== WhatsApp Float Button ===== */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: white;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 997;
    animation: whatsapp-bounce 2s infinite;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

@keyframes whatsapp-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 1.5rem;
        right: 1.5rem;
    }
}

.contact-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
align-items:start;
}

.contact-box{
background:#f8fafc;
padding:25px;
border-radius:12px;
margin-bottom:20px;
}

/* MOBILE FIX */

@media(max-width:768px){

.contact-grid{
grid-template-columns:1fr;
gap:30px;
}

.contact-grid h2{
font-size:28px;
}

}

/* ===== Page Header ===== */
.page-header {
    padding: 4rem 0;
    color: white;
    text-align: center;
    margin-bottom: 0;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.95;
}

@media (max-width: 768px) {
    .page-header {
        padding: 2.5rem 0;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .page-header p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 1.5rem 0;
    }

    .page-header h1 {
        font-size: 1.5rem;
        margin-bottom: 0.3rem;
    }

    .page-header p {
        font-size: 0.8rem;
    }
}

/* ===== Service Overview Mobile ===== */
.service-overview {
    padding: 3rem 0;
}

.overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

@media (max-width: 768px) {
    .overview-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .overview-image {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .service-overview {
        padding: 1.5rem 0;
    }

    .overview-text h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .overview-text p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .benefits-list {
        gap: 0.75rem;
    }

    .benefits-list li {
        font-size: 0.85rem;
        padding: 0.4rem 0;
    }

    .overview-image {
        height: 200px;
        border-radius: 0.5rem;
    }
}

/* ===== Features Section Mobile ===== */
.features-section {
    padding: 3rem 0;
}

.features-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

@media (max-width: 768px) {
    .features-section {
        padding: 2rem 0;
    }

    .features-section h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .features-section {
        padding: 1.5rem 0;
    }

    .features-section h2 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }

    .feature-item {
        padding: 1rem;
    }

    .feature-item .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .feature-item h3 {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }

    .feature-item p {
        font-size: 0.8rem;
        line-height: 1.4;
    }
}

/* ===== Use Cases Mobile ===== */
.use-cases {
    padding: 3rem 0;
    background: #f8fafc;
}

.use-cases h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.usecases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

@media (max-width: 768px) {
    .use-cases {
        padding: 2rem 0;
    }

    .use-cases h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .usecases-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .use-cases {
        padding: 1.5rem 0;
    }

    .use-cases h2 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }

    .usecases-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .usecase-card {
        padding: 1rem;
        text-align: center;
    }

    .usecase-icon {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }

    .usecase-card h3 {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }

    .usecase-card p {
        font-size: 0.8rem;
        line-height: 1.4;
    }
}

/* ===== Policy Pages (Delivery, Refund, Privacy, Terms) Mobile ===== */
@media (max-width: 480px) {
    section[style*="padding: 5rem 0"] {
        padding: 2rem 1rem !important;
    }

    section[style*="padding: 5rem 0"] h2 {
        font-size: 1.25rem !important;
        margin-top: 1.5rem !important;
        margin-bottom: 0.75rem !important;
    }

    section[style*="padding: 5rem 0"] p {
        font-size: 0.9rem !important;
        margin-bottom: 1rem !important;
    }

    section[style*="padding: 5rem 0"] ul {
        margin-left: 1.5rem !important;
        font-size: 0.9rem !important;
    }

    section[style*="padding: 5rem 0"] li {
        margin-bottom: 0.5rem;
        line-height: 1.5;
    }
}

/* ===== Login Page Mobile ===== */
@media (max-width: 768px) {
    section[style*="background: linear-gradient"] {
        padding: 3rem 1rem !important;
    }
}

@media (max-width: 480px) {
    section[style*="min-height: calc(100vh"] {
        min-height: auto !important;
        padding: 2rem 1rem !important;
    }

    section[style*="min-height: calc(100vh"] .container {
        display: block !important;
        max-width: 100% !important;
    }

    section[style*="min-height: calc(100vh"] > div {
        background: white !important;
        padding: 1.5rem !important;
        margin-bottom: 1.5rem;
        border-radius: 0.75rem;
    }

    section[style*="min-height: calc(100vh"] h2 {
        font-size: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }

    section[style*="min-height: calc(100vh"] input {
        font-size: 1rem !important;
        padding: 0.875rem !important;
        min-height: 44px;
    }

    section[style*="min-height: calc(100vh"] label {
        font-size: 0.9rem !important;
    }

    section[style*="min-height: calc(100vh"] .btn {
        width: 100% !important;
        min-height: 44px;
    }

    section[style*="display: flex; gap: 1rem"] > div {
        gap: 0.75rem !important;
    }

    section[style*="display: flex; gap: 1rem"] i {
        font-size: 1.25rem !important;
        flex-shrink: 0;
    }

    section[style*="display: flex; gap: 1rem"] h3 {
        font-size: 0.95rem !important;
    }

    section[style*="display: flex; gap: 1rem"] p {
        font-size: 0.8rem !important;
    }
}

/* ===== Text Content Mobile ===== */
@media (max-width: 480px) {
    div[style*="color: var(--text-primary)"] {
        font-size: 0.9rem !important;
    }

    div[style*="line-height: 1.8"] {
        line-height: 1.6 !important;
    }

    section[style*="color: var(--text-secondary)"] {
        font-size: 0.85rem !important;
        line-height: 1.6 !important;
    }
}

/* ===== ENHANCED MOBILE MENU - HAMBURGER STYLE WITH SUBMENUS ===== */
/* Added: March 13, 2026 */

/* ===== ENHANCED MOBILE MENU - LEFT SLIDE ===== */

@media (max-width:768px){

.nav-menu{
position:fixed !important;
top:60px !important;
left:-300px !important;
right:auto !important;
width:280px !important;
height:calc(100vh - 60px) !important;
background:white !important;
padding:0 !important;
gap:0 !important;
display:flex !important;
flex-direction:column !important;
z-index:998 !important;
box-shadow:4px 0 15px rgba(0,0,0,0.2) !important;
transition:left .3s ease !important;
overflow-y:auto !important;
}

.nav-menu.active{
left:0 !important;
}

.nav-menu li{
width:100% !important;
border-bottom:1px solid #e5e7eb !important;
}

.nav-menu a{
padding:1.2rem 1.5rem !important;
display:flex !important;
justify-content:space-between !important;
align-items:center !important;
color:var(--text-primary) !important;
font-size:.95rem !important;
width:100% !important;
border-radius:0 !important;
}

.nav-menu a:hover{
background:#f5f7fb !important;
color:var(--primary) !important;
}

.nav-menu a.active{
color:var(--primary) !important;
font-weight:600 !important;
background:#f0f4ff !important;
}

.nav-menu a.active::after{
display:none !important;
}

/* Dropdown arrow */

.dropdown-toggle::after{
content:'›' !important;
font-size:1.5rem !important;
color:var(--primary) !important;
transition:transform .3s ease !important;
}

.dropdown-toggle.expanded::after{
transform:rotate(90deg) !important;
}

/* Dropdown menu */

.dropdown-menu{
position:static !important;
display:none !important;
flex-direction:column !important;
background:#f9fafb !important;
border:none !important;
padding:0 !important;
max-height:0 !important;
overflow:hidden !important;
transition:max-height .3s ease !important;
}

.dropdown-toggle.expanded ~ .dropdown-menu{
display:flex !important;
max-height:500px !important;
}

.dropdown-menu li{
border-bottom:1px solid #e0e0e0 !important;
}

.dropdown-menu a{
padding:1rem 1.5rem 1rem 2.5rem !important;
font-size:.9rem !important;
color:#555 !important;
}

.dropdown-menu a:hover{
background:#eff0f5 !important;
color:var(--primary) !important;
}

.dropdown-menu a.active{
color:var(--primary) !important;
font-weight:600 !important;
background:#e8ecff !important;
}

}

/* Overlay */

@media(max-width:768px){

body::before{
content:'';
position:fixed;
top:0;
left:0;
right:0;
bottom:0;
background:rgba(0,0,0,0);
z-index:997;
transition:background .3s ease;
pointer-events:none;
}

body.menu-open::before{
background:rgba(0,0,0,.5);
pointer-events:auto;
}

}

/* ===== PRICING PAGE ===== */
/* ===== PRICING PAGE ===== */

.pricing-section{
padding:80px 0;
text-align:center;
}

.pricing-title{
font-size:32px;
margin-bottom:10px;
font-weight:700;
}

.pricing-subtitle{
color:#777;
margin-bottom:40px;
}

/* ===== TABS ===== */

.pricing-tabs{
display:flex;
justify-content:center;
gap:15px;
margin-bottom:40px;
flex-wrap:wrap;
}

.pricing-tabs .tab{
padding:10px 22px;
border-radius:30px;
border:1px solid #ddd;
background:#fff;
cursor:pointer;
font-weight:500;
transition:0.3s;
}

.pricing-tabs .tab:hover{
background:#f3f4f6;
}

.pricing-tabs .tab.active{
background:#22c55e;
color:#fff;
border-color:#22c55e;
}

/* ===== SMS CALCULATOR ===== */

.sms-calculator{
max-width:700px;
margin:40px auto;
text-align:center;
}

#smsRange{
width:100%;
height:6px;
border-radius:6px;
background:linear-gradient(90deg,#4f46e5,#22c55e);
outline:none;
cursor:pointer;
}

/* ===== RANGE LABELS ===== */

.range-labels{
display:flex;
justify-content:center;
gap:20px;
margin-top:20px;
flex-wrap:wrap;
}

.range-labels span{
padding:8px 16px;
background:#f2f2f2;
border-radius:6px;
font-size:14px;
cursor:pointer;
transition:0.3s;
}

.range-labels span:hover{
background:#e5e7eb;
}

.range-labels span.active{
background:#22c55e;
color:white;
}

/* ===== PRICING GRID ===== */

.pricing-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;
margin-top:40px;
}

/* ===== CARD ===== */

.price-card{
border:1px solid #ddd;
border-radius:12px;
padding:30px;
background:#fff;
text-align:left;
transition:0.3s;
box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

.price-card:hover{
transform:translateY(-5px);
box-shadow:0 15px 30px rgba(0,0,0,0.1);
}

.price-card h3{
font-size:20px;
margin-bottom:10px;
}

.price{
font-size:34px;
font-weight:700;
margin:10px 0;
color:#2563eb;
}

.price-rate{
color:#777;
font-size:14px;
}

/* ===== FEATURES ===== */

.price-card ul{
margin:20px 0;
padding-left:0;
}

.price-card li{
margin-bottom:10px;
display:flex;
align-items:center;
}

.price-card i{
color:#22c55e;
margin-right:8px;
}

/* ===== TAB CONTENT ===== */

.tab-content{
display:none;
}

.tab-content.active{
display:block;
}

/* ===== MOBILE ===== */

@media(max-width:768px){

.pricing-title{
font-size:26px;
}

.range-labels{
gap:10px;
}

.price-card{
padding:20px;
}

.price{
font-size:28px;
}

}


/* ===== WHATSAPP PRICING ===== */

.whatsapp-title{
text-align:center;
font-size:24px;
margin:40px 0;
color:#25d366;
}

.whatsapp-title i{
margin-right:8px;
}

.whatsapp-pricing{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;
margin-top:30px;
}

.wa-card{
border:1px solid #ddd;
border-radius:10px;
padding:30px;
background:#fff;
position:relative;
text-align:left;
transition:0.3s;
}

.wa-card:hover{
transform:translateY(-5px);
box-shadow:0 10px 30px rgba(0,0,0,0.1);
}

.wa-card h4{
font-size:20px;
margin-bottom:10px;
}

.wa-price{
font-size:30px;
font-weight:700;
margin:10px 0;
}

.wa-note{
font-size:13px;
color:#777;
margin-bottom:20px;
}

.wa-card ul{
margin-bottom:20px;
}

.wa-card li{
margin-bottom:8px;
}

.wa-card i{
color:#4caf50;
margin-right:6px;
}

/* Popular plan */

.popular{
border:2px solid #ff4d6d;
}

.popular-badge{
position:absolute;
top:-12px;
left:50%;
transform:translateX(-50%);
background:#ff4d6d;
color:#fff;
padding:4px 10px;
font-size:12px;
border-radius:20px;
}

.sms-summary{
margin:30px 0;
display:flex;
justify-content:center;
}

.summary-box{
display:flex;
gap:40px;
background:#f8fafc;
padding:20px 40px;
border-radius:10px;
box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.summary-item{
text-align:center;
}

.summary-item .label{
display:block;
font-size:13px;
color:#666;
margin-bottom:5px;
}

.summary-item .value{
font-size:22px;
font-weight:700;
color:#111;
}

.summary-item .savings{
color:#22c55e;
}


/* ===== Pricing Tabs ===== */

.pricing-tabs{
display:flex;
justify-content:center;
gap:20px;
margin:40px 0;
flex-wrap:wrap;
}

.pricing-tabs .tab{
display:flex;
align-items:center;
gap:10px;
padding:14px 28px;
border-radius:40px;
border:none;
font-size:16px;
font-weight:600;
cursor:pointer;
background:#f3f4f6;
transition:0.3s;
box-shadow:0 5px 15px rgba(0,0,0,0.08);
}

.pricing-tabs .tab img{
width:22px;
height:22px;
}

/* Active */

.pricing-tabs .tab.active{
color:#fff;
}

/* SMS */

.tab.sms.active{
background:#ef4444;
}

/* WhatsApp */

.tab.whatsapp.active{
background:#25d366;
}

/* Voice */

.tab.voice.active{
background:#6366f1;
}

/* RCS */

.tab.rcs.active{
background:#10b981;
}

/* Hover */

.pricing-tabs .tab:hover{
transform:translateY(-2px);
box-shadow:0 8px 20px rgba(0,0,0,0.15);
}


/* ===== Contact Page ===== */
.contact-box{
background:#f5f7fb;
padding:20px;
border-radius:10px;
box-shadow:0 5px 15px rgba(0,0,0,0.05);
}

.contact-box h5{
margin-bottom:10px;
font-weight:600;
}

.contact-box a{
color:#111;
text-decoration:none;
}

.contact-box a:hover{
color:#ff6b35;
}

/* ===== CONTACT PAGE ===== */

.contact-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
align-items:start;
}

.contact-grid h2{
margin-bottom:20px;
font-size:28px;
color:var(--text-primary);
}

/* FORM */

.contact-grid form{
display:flex;
flex-direction:column;
gap:15px;
}

.contact-grid input,
.contact-grid textarea{
width:100%;
padding:12px;
border:1px solid #ddd;
border-radius:6px;
font-size:15px;
transition:0.3s;
}

.contact-grid input:focus,
.contact-grid textarea:focus{
border-color:#ff6b35;
outline:none;
box-shadow:0 0 0 2px rgba(255,107,53,0.15);
}

.contact-grid textarea{
resize:vertical;
min-height:120px;
}

.contact-grid button{
margin-top:10px;
}

/* CONTACT INFO BOX */

.contact-box{
background:#f8fafc;
padding:20px;
border-radius:10px;
margin-bottom:20px;
border:1px solid #eee;
transition:0.3s;
}

.contact-box:hover{
box-shadow:0 10px 20px rgba(0,0,0,0.08);
transform:translateY(-3px);
}

.contact-box h4{
margin-bottom:8px;
color:#ff6b35;
}

.contact-box p{
color:#555;
line-height:1.6;
}

.contact-box a{
color:#333;
text-decoration:none;
}

.contact-box a:hover{
color:#ff6b35;
}

/* SUCCESS MESSAGE */

.alert-success{
background:#e6ffed;
border:1px solid #b7f5c8;
color:#1b7f3b;
padding:12px;
border-radius:6px;
}

/* MAP */

iframe{
width:100%;
border-radius:10px;
}

/* ===== MOBILE RESPONSIVE ===== */

@media(max-width:768px){

.contact-grid{
grid-template-columns:1fr;
gap:30px;
}

.contact-grid h2{
font-size:24px;
}

.contact-box{
padding:18px;
}

}

@media(max-width:480px){

.contact-grid h2{
font-size:22px;
}

.contact-grid input,
.contact-grid textarea{
padding:10px;
font-size:14px;
}

}


 .dropdown-menu{
position:absolute;
background:#fff;
list-style:none;
padding:10px 0;
width:220px;
box-shadow:0 5px 20px rgba(0,0,0,0.1);
}

.dropdown-menu li{
position:relative;
}

.dropdown-menu li a{
display:block;
padding:10px 15px;
text-decoration:none;
color:#333;
}

.dropdown-menu li a:hover{
background:#f5f5f5;
}

.submenu-menu{
display:none;
position:absolute;
top:0;
left:100%;
background:#fff;
width:220px;
box-shadow:0 5px 20px rgba(0,0,0,0.1);
}

.submenu:hover .submenu-menu{
display:block;
}

.submenu > a::after{
content:"\276F";
float:right;
font-size:12px;
margin-top:3px;
}

.submenu{
position:relative;
}

.submenu-menu{
display:none;
position:absolute;
left:100%;
top:0;
background:#fff;
min-width:220px;
box-shadow:0 5px 20px rgba(0,0,0,0.1);
}

.submenu:hover .submenu-menu{
display:block;
}
@media (max-width:768px){

.submenu-menu{
position:relative;
left:0;
box-shadow:none;
}

.submenu > a::after{
float:right;
}

}
/* ===== END ENHANCED MOBILE MENU ===== */

/* ===== MEGA MENU - IMPROVED 100% ===== */

.mega-dropdown {
    position: relative;
    display: inline-block;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 800px;
    background: #fff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    padding: 35px;
    display: none;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
    z-index: 999;
    
    /* IMPROVEMENT 1: Smooth Animation */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    margin-top: -5px;  /* Negative margin to close the gap */
    
    /* FIX: Keep menu open when hovering over it */
    pointer-events: auto;
}

.mega-dropdown:hover .mega-menu {
    display: grid;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Keep menu open when hovering over menu items */
.mega-menu:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Mega Column Header */
.mega-column h4 {
    font-size: 16px;
    margin-bottom: 18px;
    color: #111827;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 12px;
    border-bottom: 2px solid #667eea;
}

.mega-column h4 i {
    font-size: 18px;
    color: #667eea;
}

/* Mega Column Links */
.mega-column a {
    display: block;
    padding: 10px 12px;
    font-size: 14px;
    color: #6b7280;
    transition: all 0.3s ease;
    border-radius: 6px;
    background: transparent;
    font-weight: 500;
    text-decoration: none;
    margin-bottom: 4px;
}

/* IMPROVEMENT 2: Better Hover Effects */
.mega-column a:hover {
    background: linear-gradient(135deg, #f0f4ff 0%, #e6ecf7 100%);
    color: #667eea;
    padding-left: 16px;
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
    font-weight: 600;
}

/* Add dividers between columns */
.mega-column {
    padding-right: 35px;
    border-right: 1px solid #e5e7eb;
}

.mega-column:last-child {
    border-right: none;
    padding-right: 0;
}

/* MOBILE RESPONSIVE - IMPROVEMENT 3 */
@media (max-width: 1024px) {
    .mega-menu {
        width: 700px;
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
        padding: 25px;
    }
    
    .mega-column h4 {
        font-size: 15px;
        margin-bottom: 12px;
    }
    
    .mega-column a {
        font-size: 13px;
        padding: 8px 10px;
    }
}

@media (max-width: 768px) {
    .mega-menu {
        position: relative !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        display: none !important;
        grid-template-columns: repeat(2, 1fr) !important;
        padding: 15px 0 !important;
        box-shadow: none !important;
        background: #f9fafb !important;
        gap: 0 !important;
        margin-top: 0 !important;
        border-radius: 0 !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
    }
    
    .mega-dropdown.expanded .mega-menu {
        display: grid !important;
    }
    
    .mega-column {
        border-right: none !important;
        border-bottom: 1px solid #e5e7eb;
        padding: 15px 20px !important;
    }
    
    .mega-column:nth-child(2n) {
        border-right: 1px solid #e5e7eb;
    }
    
    .mega-column:last-child,
    .mega-column:nth-last-child(2) {
        border-bottom: none;
    }
    
    .mega-column h4 {
        font-size: 14px;
        margin-bottom: 10px;
        border-bottom: 1px solid #ddd;
        padding-bottom: 8px;
    }
    
    .mega-column a {
        display: block;
        padding: 8px 0;
        font-size: 13px;
        margin-bottom: 3px;
    }
    
    .mega-column a:hover {
        padding-left: 8px;
        background: #f0f4ff;
    }
}

@media (max-width: 480px) {
    .mega-menu {
        grid-template-columns: 1fr !important;
    }
    
    .mega-column {
        border-right: none !important;
        border-bottom: 1px solid #e5e7eb !important;
    }
    
    .mega-column:nth-child(2n) {
        border-right: none !important;
    }
}

/* ===== END MEGA MENU IMPROVED 100% ===== */

/* ===== HAMBURGER MENU STYLING ===== */
.menu-toggle {
    display: none;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px 10px;
    font-size: 0.9rem;
    font-weight: 700;
    color: #333;
    transition: all 0.3s ease;
    white-space: nowrap;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    min-width: fit-content;
}

.menu-toggle:hover {
    color: #667eea;
    background: rgba(102, 126, 234, 0.08);
}

.menu-toggle:active {
    transform: scale(0.98);
}

.hamburger-icon {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 26px;
    height: 22px;
    justify-content: center;
    flex-shrink: 0;
}

.hamburger-icon .line {
    width: 26px;
    height: 3px;
    background-color: currentColor;
    border-radius: 2px;
    transition: all 0.35s ease;
}

.menu-text {
    display: none;
    font-size: 0.9rem;
    font-weight: 700;
    flex-shrink: 0;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    white-space: nowrap;
    min-width: fit-content;
}

/* Active state - X animation */
.menu-toggle.active .line-1 {
    transform: rotate(45deg) translate(7px, 7px);
}

.menu-toggle.active .line-2 {
    opacity: 0;
}

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

/* ===== MOBILE LOGIN BUTTON ===== */
.mobile-login-btn {
    display: none;
    align-items: center;
    gap: 4px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white !important;
    text-decoration: none;
    padding: 7px 11px;
    border-radius: 5px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(102,126,234,0.3);
    flex-shrink: 0;
}

.mobile-login-btn:hover {
    background: linear-gradient(135deg, #764ba2, #667eea);
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(102,126,234,0.4);
}

.mobile-login-btn i {
    font-size: 0.7rem;
}

/* ===== NAVBAR CONTROLS CONTAINER ===== */
.navbar-controls {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

/* ===== MOBILE RESPONSIVE - HAMBURGER MENU ===== */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .menu-text {
        display: inline-block;
    }

    .mobile-login-btn {
        display: flex;
    }

    .navbar-controls {
        gap: 6px;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .menu-toggle {
        gap: 4px;
        padding: 7px 8px;
        font-size: 0.85rem;
    }

    .hamburger-icon {
        width: 24px;
    }

    .hamburger-icon .line {
        width: 24px;
    }

    .menu-text {
        font-size: 0.85rem;
        white-space: nowrap;
    }

    .mobile-login-btn {
        padding: 6px 9px;
        font-size: 0.7rem;
    }
}

/* Very small devices */
@media (max-width: 380px) {
    .menu-toggle {
        gap: 3px;
        padding: 6px 7px;
        font-size: 0.8rem;
    }

    .hamburger-icon {
        width: 22px;
    }

    .hamburger-icon .line {
        width: 22px;
        height: 2.5px;
    }

    .menu-text {
        font-size: 0.8rem;
        letter-spacing: 0.4px;
        white-space: nowrap;
    }

    .mobile-login-btn {
        padding: 5px 8px;
        font-size: 0.65rem;
        gap: 2px;
    }
}
/* ===== END HAMBURGER MENU STYLING ===== */