/* ==========================================================================
   STARKORA Pricing Styles (White Professional Theme with Hover Glow)
   ========================================================================== */
:root {
    --bg-main: #ffffff;
    --bg-alt: #f8fafc;
    --bg-card: #ffffff;
    --bg-card-border: rgba(120, 87, 255, 0.12);
    
    --primary-blue: #0066ff;
    --primary-purple: #7928ca;
    
    --text-main: #0f172a;
    --text-muted: #64748b;
    
    --gradient-brand: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-purple) 100%);
    
    --font-family: 'Plus Jakarta Sans', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font-family);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

span {
    color: var(--primary-blue);
}

h1, h2, h3, h4 {
    color: var(--text-main);
    font-weight: 700;
}

/* ==========================================================================
   Logo Integration (Optimized Sizing)
   ========================================================================== */
.logo-link {
    display: inline-block;
    line-height: 1;
}

.logo-img {
    height: 75px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 102, 255, 0.35));
    transition: var(--transition);
}

.logo-img:hover {
    transform: scale(1.03);
}

/* ==========================================================================
   Buttons & Badges
   ========================================================================== */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--gradient-brand);
    color: #fff;
    box-shadow: 0 4px 20px rgba(0, 102, 255, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(121, 40, 202, 0.35);
}

.btn-outline {
    background: var(--bg-alt);
    border: 1px solid rgba(15, 23, 42, 0.1);
    color: var(--text-main);
}

.btn-outline:hover {
    background: var(--gradient-brand);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.2);
}

.btn-block {
    width: 100%;
}

.badge {
    background: rgba(0, 102, 255, 0.08);
    border: 1px solid rgba(0, 102, 255, 0.2);
    color: var(--primary-blue);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
    font-weight: 700;
}

/* ==========================================================================
   Header & Navbar
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 30px;
}

.nav-menu a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-blue);
}

.btn-nav {
    padding: 8px 20px;
    background: rgba(121, 40, 202, 0.08);
    border: 1px solid rgba(121, 40, 202, 0.3);
    color: var(--primary-purple) !important;
}

.btn-nav:hover {
    background: var(--primary-purple);
    color: #fff !important;
}

.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
    cursor: pointer;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
    display: block;
    background: var(--text-main);
    height: 2px;
    width: 25px;
    position: relative;
    transition: var(--transition);
}

.nav-toggle-label span::before {
    content: '';
    top: -7px;
    position: absolute;
    width: 25px;
    height: 2px;
    background: var(--text-main);
}

.nav-toggle-label span::after {
    content: '';
    top: 7px;
    position: absolute;
    width: 25px;
    height: 2px;
    background: var(--text-main);
}

/* ==========================================================================
   Page Header
   ========================================================================== */
.page-header {
    padding: 180px 0 60px;
    text-align: center;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.page-header h1 {
    font-size: 3rem;
    max-width: 800px;
    margin: 0 auto 20px;
    letter-spacing: -1px;
}

.page-header h1 span {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-header p {
    color: var(--text-muted);
    font-size: 1.15rem;
    max-width: 650px;
    margin: 0 auto;
}

/* ==========================================================================
   Pricing Section Grid
   ========================================================================== */
.pricing-section {
    padding: 60px 0 80px;
    background: #fff;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    border-radius: 24px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-purple);
    box-shadow: 0 15px 35px rgba(121, 40, 202, 0.12);
}

.pricing-card.popular {
    border: 2px solid var(--primary-blue);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.1);
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-brand);
    color: #fff;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tier-tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--primary-blue);
    letter-spacing: 1px;
    font-weight: 700;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin: 8px 0 12px;
}

.pricing-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.price span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
}

.pricing-features {
    list-style: none;
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.92rem;
    color: var(--text-main);
}

.pricing-features li svg {
    width: 18px;
    height: 18px;
    color: var(--primary-blue);
    flex-shrink: 0;
    margin-top: 2px;
}

.payment-terms {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 20px;
    font-weight: 600;
}

/* ==========================================================================
   Custom Budget Section (Properly Stacked Form Layout)
   ========================================================================== */
.budget-section {
    padding: 40px 0 120px;
    background: #fff;
}

.budget-box {
    background: var(--bg-alt);
    border: 1px solid var(--bg-card-border);
    border-radius: 24px;
    padding: 50px 40px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    text-align: center;
}

.budget-box h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.budget-box p {
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto 35px;
    font-size: 1.05rem;
}

.budget-form {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.budget-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.budget-form label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-main);
}

.budget-form input,
.budget-form select,
.budget-form textarea {
    width: 100%;
    padding: 14px 18px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 12px;
    color: var(--text-main);
    font-family: var(--font-family);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition);
}

.budget-form select {
    cursor: pointer;
}

.budget-form textarea {
    resize: vertical;
}

.budget-form input:focus,
.budget-form select:focus,
.budget-form textarea:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.12);
}

.btn-submit-custom {
    margin-top: 10px;
    align-self: flex-start;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    padding: 40px 0;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
    background: #fff;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ==========================================================================
   Responsive Styles
   ========================================================================== */
@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .nav-toggle-label {
        display: block;
    }

    .logo-img {
        height: 55px;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        border-bottom: 1px solid rgba(15, 23, 42, 0.08);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    }

    .nav-menu ul {
        flex-direction: column;
        padding: 20px;
        align-items: flex-start;
    }

    .nav-toggle:checked ~ .nav-menu {
        max-height: 380px;
    }

    .page-header h1 {
        font-size: 2.3rem;
    }

    .budget-form-grid {
        grid-template-columns: 1fr;
    }

    .budget-box {
        padding: 30px 20px;
    }

    .btn-submit-custom {
        width: 100%;
    }
}

/* --- Option 3 Footer Styling --- */
.footer-option-three {
    background-color: #ffffff;
    color: #4b5563;
    border-top: 1px solid #e5e7eb;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.footer-top-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding: 5rem 0 3rem 0;
}

.footer-col .logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 0.2rem;
}

.footer-col .logo span {
    color: #2563eb;
}

.footer-slogan {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2563eb;
    margin-bottom: 1rem;
}

.footer-desc {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

/* Social Icon Circles matching the reference image layout */
.footer-socials {
    display: flex;
    gap: 0.8rem;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    background: #f3f4f6;
    color: #111827;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-socials a svg {
    width: 18px;
    height: 18px;
}

.footer-socials a:hover {
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    color: #ffffff;
    transform: translateY(-2px);
}

.footer-col h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.2rem;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    text-decoration: none;
    color: #6b7280;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.footer-col ul li a:hover {
    color: #2563eb;
}

.contact-col p {
    font-size: 0.95rem;
    color: #6b7280;
    margin-bottom: 0.6rem;
}

/* Newsletter Input Row */
.footer-newsletter {
    display: flex;
    margin-top: 1.2rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    overflow: hidden;
    background: #f9fafb;
}

.footer-newsletter input {
    flex: 1;
    padding: 0.7rem 1rem;
    border: none;
    background: transparent;
    outline: none;
    font-size: 0.9rem;
    color: #111827;
}

.footer-newsletter button {
    background: #ef4444; /* Matches the red send button arrow in reference image */
    color: #ffffff;
    border: none;
    padding: 0 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease;
}

.footer-newsletter button svg {
    width: 16px;
    height: 16px;
}

.footer-newsletter button:hover {
    opacity: 0.9;
}

/* Bottom Dark Strip matching reference layout */
.footer-bottom-bar {
    background-color: #111827;
    color: #9ca3af;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-radius: 8px 8px 0 0;
    font-size: 0.85rem;
}

.footer-links-left {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-links-left a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links-left a:hover {
    color: #ffffff;
}

.footer-links-left span {
    color: #4b5563;
}

/* Responsive Media Query for Footer */
@media (max-width: 968px) {
    .footer-top-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    .footer-bottom-bar {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .footer-top-content {
        grid-template-columns: 1fr;
    }
}