/* Reset & Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-color: #09090b;
    --card-bg: #111113;
    --card-border: #222226;
    --primary-orange: #f95700;
    --primary-orange-hover: #e04e00;
    --text-white: #ffffff;
    --text-muted: #9ca3af;
    --font-main: 'Inter', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-white);
    font-family: var(--font-main);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Container */
.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography Helpers */
.badge-tag {
    color: var(--primary-orange);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: inline-block;
}

.badge-tag-center {
    display: block;
    text-align: center;
}

.section-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    color: var(--text-white);
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: 16px;
}

.section-subtext {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 600px;
    line-height: 1.6;
    margin-bottom: 48px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    font-family: var(--font-main);
}

.btn-orange {
    background-color: var(--primary-orange);
    color: #ffffff;
}

.btn-orange:hover {
    background-color: var(--primary-orange-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(249, 87, 0, 0.3);
}

.btn-dark {
    background-color: #1d1d20;
    border: 1px solid #2d2d34;
    color: #ffffff;
}

.btn-dark:hover {
    background-color: #26262a;
    border-color: #3f3f46;
    transform: translateY(-1px);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-full {
    width: 100%;
}

/* Navigation Bar */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: rgba(9, 9, 11, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 18px 0;
}

.nav-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.nav-logo-img {
    max-height: 38px;
    width: auto;
    object-fit: contain;
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    color: #a1a1aa;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: #ffffff;
}

/* Hero Section */
.hero-section {
    padding: 90px 0 60px 0;
}

.hero-title {
    font-size: clamp(48px, 6vw, 76px);
    font-weight: 800;
    color: var(--text-white);
    letter-spacing: -0.03em;
    line-height: 1.05;
    margin-bottom: 24px;
}

.hero-description {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 620px;
    line-height: 1.6;
    margin-bottom: 36px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 50px;
}

.bullet-dot {
    color: var(--primary-orange);
    font-size: 12px;
}

.hero-divider {
    width: 100%;
    height: 1px;
    background-color: var(--card-border);
}

/* Why Businesses Choose Igniva Section */
.services-section {
    padding: 80px 0;
}

.grid-problems {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.problem-card {
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.problem-card:hover {
    transform: translateY(-2px);
    border-color: #33333a;
}

.card-number {
    color: var(--primary-orange);
    font-size: 16px;
    font-weight: 700;
}

.card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: -0.01em;
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background-color: rgba(255, 255, 255, 0.01);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.grid-process {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.process-card {
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 14px;
    padding: 36px 30px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.25s ease;
}

.process-card:hover {
    transform: translateY(-4px);
    border-color: rgba(249, 87, 0, 0.4);
}

.process-step-num {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-orange);
    margin-bottom: 16px;
    letter-spacing: -0.03em;
}

.process-step-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 12px;
}

.process-step-desc {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Selected Work Section */
.work-section {
    padding: 80px 0;
}

.grid-work {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.work-card {
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.work-card:hover {
    transform: translateY(-4px);
    border-color: #3b3b44;
}

.work-preview {
    height: 240px;
    width: 100%;
    position: relative;
    background-color: #161619;
}

.result-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 10;
    background-color: rgba(249, 87, 0, 0.95);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 6px;
    backdrop-filter: blur(4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.preview-summit {
    background: linear-gradient(135deg, #1f1b18 0%, #0d0c0c 60%, #17120e 100%);
}

.preview-apex {
    background: linear-gradient(135deg, #3d1c08 0%, #1a0c04 60%, #0d0602 100%);
}

.preview-northshore {
    background: linear-gradient(135deg, #1a1b1d 0%, #0f1012 60%, #151618 100%);
}

.gradient-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.6;
}

.overlay-1 {
    background: radial-gradient(circle at top right, rgba(249, 87, 0, 0.15), transparent 70%);
}

.overlay-2 {
    background: radial-gradient(circle at top right, rgba(249, 87, 0, 0.35), transparent 70%);
}

.overlay-3 {
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.05), transparent 60%);
}

.work-content {
    padding: 24px 28px 28px 28px;
}

.work-category {
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.work-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: -0.02em;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
}

.grid-testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
}

.testimonial-quote {
    font-size: 16px;
    color: #d1d5db;
    line-height: 1.6;
    font-style: italic;
}

.author-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-white);
}

.author-role {
    font-size: 13px;
    color: var(--primary-orange);
    font-weight: 500;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
}

.grid-pricing {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

.pricing-card {
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 36px 30px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.2s ease;
}

.pricing-card:hover {
    transform: translateY(-3px);
}

.card-recommended {
    border: 1px solid var(--primary-orange);
    background: linear-gradient(180deg, rgba(249, 87, 0, 0.1) 0%, rgba(17, 17, 19, 0.95) 100%);
    box-shadow: 0 0 30px rgba(249, 87, 0, 0.08);
}

.recommended-badge {
    color: var(--primary-orange);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

.pricing-plan {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 16px;
}

.pricing-amount {
    font-size: 40px;
    font-weight: 800;
    color: var(--text-white);
    letter-spacing: -0.03em;
    margin-bottom: 12px;
}

.pricing-period {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-muted);
}

.pricing-desc {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 24px;
}

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
    margin-top: auto;
}

.pricing-features li {
    font-size: 14px;
    color: #e4e4e7;
    display: flex;
    align-items: center;
    gap: 10px;
}

.check-icon {
    color: var(--primary-orange);
    font-weight: 800;
}

.price-btn {
    margin-top: auto;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 800px;
}

.faq-item {
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.faq-item.active {
    border-color: rgba(249, 87, 0, 0.4);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 24px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-white);
    cursor: pointer;
    text-align: left;
    font-family: var(--font-main);
}

.faq-icon {
    font-size: 24px;
    color: var(--primary-orange);
    transition: transform 0.25s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 28px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 28px 24px 28px;
}

.faq-answer p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* CTA Banner Section */
.cta-section {
    padding: 60px 0 100px 0;
}

.cta-box {
    background: linear-gradient(180deg, rgba(74, 26, 0, 0.6) 0%, rgba(20, 10, 5, 0.95) 100%);
    border: 1px solid rgba(249, 87, 0, 0.25);
    border-radius: 16px;
    padding: 80px 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: inset 0 0 60px rgba(249, 87, 0, 0.15);
}

.cta-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    color: var(--text-white);
    letter-spacing: -0.03em;
    margin-bottom: 32px;
}

/* Footer Section */
.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 32px 0;
}

.footer-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
}

.footer-logo-img {
    max-height: 32px;
    width: auto;
    object-fit: contain;
}

.footer-copyright {
    color: var(--text-muted);
}

/* Floating WhatsApp Widget */
.floating-whatsapp {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    background-color: #25D366;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.floating-whatsapp:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-icon {
    width: 22px;
    height: 22px;
}

.whatsapp-text {
    font-size: 14px;
    font-weight: 700;
    font-family: var(--font-main);
}

/* Booking Modal */
.modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    padding: 20px;
}

.modal-backdrop.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-card {
    background-color: #141417;
    border: 1px solid var(--card-border);
    border-radius: 16px;
    width: 100%;
    max-width: 480px;
    padding: 36px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    transform: translateY(20px);
    transition: transform 0.25s ease;
}

.modal-backdrop.active .modal-card {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
}

.modal-close:hover {
    color: var(--text-white);
}

.modal-badge {
    color: var(--primary-orange);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.modal-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 6px;
}

.modal-sub {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: #e4e4e7;
}

.form-group input,
.form-group select {
    background-color: #0b0b0d;
    border: 1px solid #27272a;
    border-radius: 8px;
    padding: 12px 14px;
    color: #ffffff;
    font-size: 14px;
    font-family: var(--font-main);
    outline: none;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--primary-orange);
}

.form-success-msg {
    display: none;
    margin-top: 16px;
    padding: 14px;
    background-color: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #4ade80;
    border-radius: 8px;
    font-size: 14px;
    text-align: center;
}

/* Responsive Styles */
@media (max-width: 900px) {
    .grid-problems,
    .grid-process,
    .grid-work,
    .grid-testimonials,
    .grid-pricing {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 42px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
    }

    .cta-box {
        padding: 50px 20px;
    }

    .footer-container {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
        padding: 10px 16px;
    }

    .whatsapp-text {
        font-size: 13px;
    }
}
