/* All your original CSS goes here first */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Navigation */
nav {
    position: fixed;
    width: 100%;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.5rem 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    height: 70px;
    display: flex;
    align-items: center;
}

nav .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.logo img {
    height: 46px;
    width: 46px;
    object-fit: contain;
}

.logo span {
    font-size: 1.8rem;
    font-weight: bold;
    color: #fff;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

nav a:hover {
    color: #e91e63;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, #1a0033 0%, #4a0e4e 50%, #81016f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(233, 30, 99, 0.15) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: moveGrid 20s linear infinite;
}

@keyframes moveGrid {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 2rem;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #e91e63 0%, #9c27b0 50%, #673ab7 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
    animation: fadeInUp 1s ease 0.4s backwards;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.5);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Styles */
section {
    padding: 5rem 2rem;
}

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

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    color: #1a1a2e;
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: #666;
    font-size: 1.1rem;
}

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

.service-card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(233, 30, 99, 0.3);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #e91e63 0%, #9c27b0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-card h3 {
    color: #1a1a2e;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.price-tag {
    display: inline-block;
    background: linear-gradient(135deg, #e91e63 0%, #9c27b0 50%, #673ab7 100%);
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    margin-top: 1rem;
    font-weight: 600;
    font-size: 1.2rem;
}

.price-details {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.price-item {
    display: flex;
    justify-content: space-between;
    margin: 0.5rem 0;
    font-size: 0.9rem;
    color: #666;
}

.price-item.total {
    font-weight: 600;
    color: #e91e63;
    font-size: 1rem;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 2px solid #e91e63;
}

.contact-button {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, #e91e63 0%, #9c27b0 50%, #673ab7 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    margin-top: 1rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(233, 30, 99, 0.4);
}

.feature-list {
    list-style: none;
    margin: 1rem 0;
    padding: 0;
}

.feature-list li {
    padding: 0.3rem 0;
    color: #555;
}

.feature-list li:before {
    content: "✓ ";
    color: #e91e63;
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Solutions Grid */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.solution-card {
    background: linear-gradient(135deg, #e91e63 0%, #9c27b0 50%, #673ab7 100%);
    padding: 2.5rem;
    border-radius: 15px;
    color: #fff;
    transition: transform 0.3s;
}

.solution-card:hover {
    transform: scale(1.05);
}

.solution-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* About Section */
#about {
    background: linear-gradient(135deg, #fce4ec 0%, #f8bbd0 50%, #f48fb1 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

.about-text h3 {
    color: #1a1a2e;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.about-text p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* Contact Section */
#contact {
    background: linear-gradient(135deg, #1a0033 0%, #4a0e4e 100%);
    color: #fff;
}

#contact h2 {
    color: #fff;
}

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

.contact-card {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-card h3 {
    margin-bottom: 0.5rem;
    color: #fff;
}

.contact-card a {
    color: #f48fb1;
    text-decoration: none;
    word-break: break-all;
}

.contact-card a:hover {
    color: #e91e63;
}

/* Footer */
footer {
    background: #0d001a;
    color: #fff;
    text-align: center;
    padding: 2rem;
}

/* --- New Hamburger & Mobile Menu Styles --- */

/* Hide the toggle button by default (Desktop first) */
.menu-toggle {
    display: none;
}

/* Responsive */
@media (max-width: 768px) {
    /* Existing Styles */
    nav ul {
        gap: 1rem;
        font-size: 0.9rem;
    }
    .hero h1 {
        font-size: 2rem;
    }
    .hero p {
        font-size: 1rem;
    }
    .about-content {
        grid-template-columns: 1fr;
    }
    h2 {
        font-size: 2rem;
    }

    /* New Mobile Navigation Styles */
    .menu-toggle {
        display: block; /* Show the button on mobile */
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
        width: 30px;
        height: 30px;
        position: relative;
    }

    .hamburger-icon,
    .hamburger-icon::before,
    .hamburger-icon::after {
        content: '';
        display: block;
        width: 100%;
        height: 3px;
        background-color: #fff; /* White bars */
        border-radius: 3px;
        transition: all 0.3s ease;
    }

    .hamburger-icon {
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
    }

    .hamburger-icon::before {
        transform: translateY(-8px);
    }

    .hamburger-icon::after {
        transform: translateY(8px);
    }
    
    /* Animation for 'X' icon */
    .menu-toggle.active .hamburger-icon {
        background-color: transparent;
    }

    .menu-toggle.active .hamburger-icon::before {
        transform: rotate(45deg);
    }

    .menu-toggle.active .hamburger-icon::after {
        transform: rotate(-45deg);
    }

    /* Mobile Menu (initially hidden and full-screen overlay) */
    .nav-menu {
        position: fixed;
        top: 70px; /* Below the fixed navbar */
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(26, 26, 46, 0.98); /* Same dark background */
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 2rem 0;
        /* Start off-screen */
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        z-index: 999;
    }

    .nav-menu.active {
        transform: translateX(0); /* Slide in */
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
        margin: 1rem 0;
        padding: 0.5rem 0;
    }

    .nav-menu a {
        font-size: 1.5rem;
        display: block;
        padding: 1rem;
    }
}