/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0f1729; /* Dark midnight blue */
    --secondary-color: #1a2332;
    --contrast-light: #f8fafc; /* Light contrast color */
    --contrast-medium: #e2e8f0; /* Medium contrast color */
    --accent-color: #3b82f6;
    --text-primary: #ffffff;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    --text-dark: #1e293b; /* Dark text for light backgrounds */
    --border-color: #334155;
    --border-light: #e2e8f0; /* Light border for contrast sections */
    --card-bg: #1e293b;
    --card-bg-light: #ffffff; /* Light card background */
    --hover-bg: #2d3748;
    --hover-bg-light: #f1f5f9; /* Light hover background */
}

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

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

/* Header */
.header {
    background-color: var(--contrast-light);
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    height: 40px;
    width: auto;
}

.godrej-logo {
    height: 45px;
}

.clusterzap-logo {
    height: 35px;
}

.logo-separator {
    font-size: 1.8rem;
    color: var(--accent-color);
    font-weight: 600;
}

.godrej-logo-link {
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.godrej-logo-link:hover {
    opacity: 0.8;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    font-size: 0.85rem;
    color: var(--text-dark);
}

.contact-email, .contact-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-button-small {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button-small:hover {
    background-color: var(--secondary-color);
    transform: translateY(-1px);
}

/* Hero Section */
.hero {
    padding: 3rem 0 4rem;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.highlight {
    color: var(--accent-color);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-weight: 500;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    line-height: 1.7;
}

.hero-cta {
    margin-top: 2rem;
}

.cta-button-primary {
    background-color: var(--accent-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.cta-button-primary:hover {
    background-color: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.cta-button-primary.large {
    padding: 1.25rem 2.5rem;
    font-size: 1.2rem;
}

.offer-note {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Growth Section */
.growth-section {
    background-color: var(--contrast-light);
    padding: 4rem 0;
    text-align: center;
}

.growth-section .section-title {
    color: var(--text-dark);
}

.growth-section .section-subtitle {
    color: var(--text-dark);
    opacity: 0.8;
}

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

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Services Section */
.services {
    padding: 3rem 0;
}

.services .section-title {
    text-align: center;
    margin-bottom: 3rem;
}

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

.service-box {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    text-align: center;
    height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-box:hover {
    border-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.service-box:nth-child(even) {
    background-color: var(--card-bg-light);
    border: 1px solid var(--border-light);
}

.service-box:nth-child(even) h4 {
    color: var(--text-dark);
}

.service-box:nth-child(even) p {
    color: var(--text-dark);
    opacity: 0.8;
}

.service-box:nth-child(even):hover {
    background-color: var(--hover-bg-light);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.service-number {
    background-color: var(--accent-color);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    margin: 0 auto 1rem;
}

.service-box h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    line-height: 1.3;
}

.service-box p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Why Choose Section */
.why-choose {
    background-color: var(--contrast-light);
    padding: 4rem 0;
}

.why-choose .section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.why-choose .benefit-item h4 {
    color: var(--text-dark);
}

.why-choose .benefit-item p {
    color: var(--text-dark);
    opacity: 0.8;
}

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

.benefit-item {
    text-align: center;
    padding: 1.5rem;
}

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

.benefit-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.benefit-item p {
    color: var(--text-secondary);
}

/* Target Audience Section */
.target-audience {
    padding: 4rem 0;
    background-color: var(--contrast-medium);
}

.target-audience .section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

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

.audience-item {
    background-color: var(--card-bg-light);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    color: var(--text-dark);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.audience-item:hover {
    border-color: var(--accent-color);
    background-color: var(--hover-bg-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

/* Digital Dawn Packages Section */
.digital-dawn {
    background-color: var(--contrast-light);
    padding: 3rem 0;
}

.dawn-header {
    text-align: center;
    margin-bottom: 4rem;
}

.dawn-header .section-title {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.dawn-subtitle {
    font-size: 2rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.dawn-tagline {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.dawn-description {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.dawn-solution {
    background-color: var(--primary-color);
    color: var(--text-primary);
    padding: 2rem;
    border-radius: 12px;
    max-width: 800px;
    margin: 0 auto;
}

.dawn-solution h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.dawn-solution p {
    font-size: 1.1rem;
    line-height: 1.6;
}

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

.package-card {
    background-color: var(--card-bg-light);
    border: 2px solid var(--border-light);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-color);
}

.package-card.popular {
    border-color: var(--accent-color);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.package-header {
    margin-bottom: 1.5rem;
}

.package-header h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.package-price {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.original-price {
    font-size: 1.2rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.discounted-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
}

.discount-badge {
    background-color: #10b981;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.package-content h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.package-features {
    list-style: none;
}

.package-features li {
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    opacity: 0.9;
}

.package-features li::before {
    content: "✓";
    color: var(--accent-color);
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.1rem;
}

.more-plans {
    text-align: center;
    background-color: var(--primary-color);
    padding: 2.5rem;
    border-radius: 16px;
    max-width: 700px;
    margin: 0 auto;
}

.more-plans-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Web Awaken Packages Section */
.web-awaken {
    background-color: var(--primary-color);
    padding: 3rem 0;
}

.awaken-header {
    text-align: center;
    margin-bottom: 4rem;
}

.awaken-header .section-title {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.awaken-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.awaken-plan {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    transition: all 0.3s ease;
}

.awaken-plan:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border-color: var(--accent-color);
}

.awaken-plan.popular-plan {
    border-color: var(--accent-color);
    background-color: rgba(30, 41, 59, 0.8);
}

.awaken-plan.premium-plan {
    border-color: #f59e0b;
    background-color: rgba(30, 41, 59, 0.9);
}

.popular-badge, .premium-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.popular-badge {
    background-color: var(--accent-color);
}

.premium-badge {
    background-color: #f59e0b;
}

.plan-header {
    margin-bottom: 2rem;
    text-align: center;
}

.plan-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.plan-pricing {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.plan-target, .plan-note {
    color: var(--text-secondary);
    font-style: italic;
    margin-top: 1rem;
}

.plan-benefits {
    margin-bottom: 2rem;
}

.plan-benefits h4 {
    color: var(--accent-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

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

.benefit-card {
    background-color: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 8px;
    padding: 1.5rem;
}

.benefit-card h5 {
    color: var(--accent-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.benefit-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

.plan-services {
    margin-bottom: 2rem;
}

.service-item {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

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

.service-item h4 {
    color: var(--accent-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-item p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.service-item ul {
    list-style: none;
    margin-left: 1rem;
}

.service-item ul li {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-item ul li::before {
    content: "•";
    color: var(--accent-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.benefit {
    color: var(--accent-color);
    font-style: italic;
    margin-top: 0.5rem;
}

.optional-addons {
    background-color: rgba(59, 130, 246, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.optional-addons h4 {
    color: var(--accent-color);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.optional-addons ul {
    list-style: none;
}

.optional-addons ul li {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.optional-addons ul li::before {
    content: "+";
    color: var(--accent-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.awaken-footer {
    text-align: center;
    background-color: var(--secondary-color);
    padding: 3rem;
    border-radius: 16px;
    margin-top: 2rem;
}

.discount-note {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Nirmaan X Partner Advantage Section */
.nirmaan-advantage {
    background-color: var(--primary-color);
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.nirmaan-advantage::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background-color: rgba(59, 130, 246, 0.05);
    border-radius: 50%;
    transform: translate(100px, -150px);
    z-index: 1;
}

.nirmaan-advantage::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 400px;
    height: 400px;
    background-color: rgba(59, 130, 246, 0.05);
    border-radius: 50%;
    transform: translate(-200px, 200px);
    z-index: 1;
}

.nirmaan-advantage .container {
    position: relative;
    z-index: 2;
}

.advantage-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 2rem;
}

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

.advantage-card {
    background-color: rgba(30, 41, 59, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
    min-height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.advantage-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border-color: var(--accent-color);
}

.advantage-icon {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.advantage-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    line-height: 1.3;
}

.advantage-card p {
    color: var(--text-secondary);
    line-height: 1.5;
    font-size: 0.9rem;
    flex-grow: 1;
}

.advantage-cta {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.advantage-note {
    font-size: 1.1rem;
    color: var(--accent-color);
    line-height: 1.7;
}

/* How It Works Section */
.how-it-works {
    background-color: var(--contrast-light);
    padding: 4rem 0;
}

.how-it-works .section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.how-it-works .step h4 {
    color: var(--text-dark);
}

.how-it-works .step p {
    color: var(--text-dark);
    opacity: 0.8;
}

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

.step {
    text-align: center;
    padding: 2rem 1rem;
}

.step-number {
    background-color: var(--accent-color);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.step h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.step p {
    color: var(--text-secondary);
}

/* Final CTA Section */
.final-cta {
    padding: 5rem 0;
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.cta-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 2rem 0 1.5rem;
    color: var(--accent-color);
}

.cta-content p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.offer-validity {
    color: var(--accent-color);
    font-weight: 600;
}

/* Footer */
.footer {
    background-color: var(--contrast-medium);
    border-top: 1px solid var(--border-light);
    padding: 2rem 0;
    text-align: center;
}

.footer p {
    color: var(--text-dark);
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        flex-direction: column;
        gap: 1rem;
    }

    .contact-info {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .contact-details {
        flex-direction: row;
        gap: 1rem;
        font-size: 0.8rem;
    }

    .logo-section {
        gap: 0.5rem;
    }

    .godrej-logo {
        height: 35px;
    }

    .clusterzap-logo {
        height: 30px;
    }

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

    .hero-subtitle {
        font-size: 1.2rem;
    }

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

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

    .service-box {
        height: auto;
        min-height: 140px;
    }

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

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

    .steps-container {
        grid-template-columns: 1fr;
    }

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

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

    .package-card.popular {
        transform: none;
    }

    .dawn-subtitle {
        font-size: 1.5rem;
    }

    .dawn-description {
        font-size: 1.2rem;
    }

    .benefits-grid-small {
        grid-template-columns: 1fr;
    }

    .plan-pricing {
        flex-direction: column;
        gap: 0.5rem;
    }

    .plan-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .contact-details {
        flex-direction: column;
        gap: 0.25rem;
        text-align: center;
    }
}
