/* =========================================================================
   Parichiti Studios - Custom CSS
   ========================================================================= */

/* Variables — Dark Mode by default */
:root {
    --primary-color: #818cf8;
    --primary-dark: #6366f1;
    --secondary-color: #f472b6;
    --text-main: #f1f5f9;
    --text-muted: #94a3b8;
    --bg-light: #1e2433;
    --bg-white: #151b27;
    --bg-dark: #0d1117;
    --accent: #34d399;
    --border-color: #2d3748;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition: all 0.3s ease;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.4);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5), 0 4px 6px -2px rgba(0, 0, 0, 0.3);
    --shadow-xl: 0 20px 40px -5px rgba(0, 0, 0, 0.6), 0 10px 10px -5px rgba(0, 0, 0, 0.3);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-main);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

/* Utilities */
.text-center { text-align: center; }
.section-padding { padding: 80px 0; }
.bg-white { background-color: var(--bg-white); }
.bg-light { background-color: var(--bg-light); }
.bg-dark { background-color: var(--bg-dark); color: #fff; }
.bg-gradient { 
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #fff;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto 3rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 30px;
    font-weight: 600;
    font-family: var(--font-heading);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #fff;
    border: none;
    box-shadow: 0 4px 14px 0 rgba(99, 102, 241, 0.39);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
    color: #fff;
}

.btn-secondary {
    background: #fff;
    color: var(--primary-color);
    border: none;
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Top Bar */
.top-bar {
    background-color: var(--bg-dark);
    color: #cbd5e1;
    font-size: 0.875rem;
    padding: 8px 0;
}

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

.top-bar-contact a {
    color: #cbd5e1;
    margin-right: 20px;
    transition: var(--transition);
}

.top-bar-contact a:hover {
    color: var(--primary-color);
}

.top-bar-contact i {
    margin-right: 5px;
    color: var(--primary-color);
}

.whatsapp-header-btn {
    display: inline-flex;
    align-items: center;
    background-color: #25D366;
    color: white !important;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
    transition: var(--transition);
}

.whatsapp-header-btn i {
    margin-right: 6px;
    font-size: 1.1rem;
}

.whatsapp-header-btn:hover {
    background-color: #128C7E;
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .top-bar-contact a:nth-child(1) {
        display: none;
    }
}

/* Navbar */
.navbar {
    background-color: rgba(13, 17, 23, 0.97);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 1px 0 rgba(255,255,255,0.06);
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
    padding: 10px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    transition: height 0.3s ease;
}

.navbar.scrolled .nav-container {
    height: 70px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
}

.logo .highlight {
    color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu li a {
    color: var(--text-main);
    font-weight: 500;
    position: relative;
}

.nav-menu li a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu li a:not(.btn):hover::after,
.nav-menu li a.active::after {
    width: 100%;
}

.nav-menu li a:not(.btn):hover,
.nav-menu li a.active {
    color: var(--primary-color);
}

.menu-toggle {
    display: none;
    cursor: pointer;
}

.menu-toggle .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background-color: var(--text-main);
}

/* Hero Section */
.hero {
    padding: 160px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.1), transparent),
                radial-gradient(circle at bottom left, rgba(236, 72, 153, 0.05), transparent);
    background-color: var(--bg-white);
    position: relative;
    overflow: hidden;
}

/* Geometric shapes in bg */
.hero::before {
    content: '';
    position: absolute;
    top: 20%;
    right: 5%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(236, 72, 153, 0.1));
    filter: blur(50px);
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: 5%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(99, 102, 241, 0.1));
    filter: blur(40px);
    z-index: 0;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-content h1 .gradient-text {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

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

.hero-image {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

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

.service-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    z-index: -1;
    transition: opacity 0.4s ease;
    opacity: 0;
}

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

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.service-card p {
    color: var(--text-muted);
    transition: var(--transition);
}

.service-card:hover h3,
.service-card:hover p {
    color: #fff;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
}

.about-image::after {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--primary-color);
    border-radius: 20px;
    z-index: -1;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* Features/Why Choose Us */
.features-list {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.1);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.feature-item h4 {
    margin-bottom: 0.5rem;
}

.feature-item p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
}

.contact-info-wrap {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 3rem 2rem;
    border-radius: 20px;
    color: #fff;
    box-shadow: var(--shadow-xl);
}

.contact-info-wrap h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.25rem;
    font-size: 1.25rem;
}

.info-text h4 {
    color: #fff;
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.info-text p, .info-text a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

.info-text a:hover {
    color: #fff;
}

.contact-form {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
    background-color: var(--bg-light);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
    background-color: #fff;
}

textarea.form-control {
    height: 150px;
    resize: vertical;
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    color: white;
}

/* Footer */
.footer {
    background-color: var(--bg-dark);
    padding: 80px 0 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h3 {
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.footer-col p {
    color: #9ca3af;
    margin-bottom: 1.5rem;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    color: #9ca3af;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: center;
    color: #9ca3af;
    margin-bottom: 1rem !important;
}

.contact-info li i {
    margin-right: 15px;
    color: var(--primary-color);
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: #fff;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    color: #9ca3af;
    margin: 0;
}

.brand-col .logo {
    color: #fff;
    margin-bottom: 1rem;
    display: inline-block;
}

/* Page Header */
.page-header {
    padding: 160px 0 80px;
    background: var(--bg-dark);
    text-align: center;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23111827" fill-opacity="1" d="M0,128L48,138.7C96,149,192,171,288,165.3C384,160,480,128,576,133.3C672,139,768,181,864,186.7C960,192,1056,160,1152,144C1248,128,1344,128,1392,128L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
}

.page-header h1 {
    color: #fff;
    font-size: 3rem;
    position: relative;
    z-index: 1;
}

.page-header p {
    color: #9ca3af;
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Animations */
.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

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

/* Responsive Design */
@media (max-width: 991px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-btns {
        justify-content: center;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
        margin-bottom: 2rem;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        z-index: 1001;
    }
    
    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background-color: var(--bg-white);
        flex-direction: column;
        justify-content: center;
        transition: 0.4s;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        z-index: 1000;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        margin: 1.5rem 0;
    }
    
    .hero {
        padding: 120px 0 80px;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
}

/* =============================================
   PRICING SECTION
   ============================================= */
.pricing-section {
    background: linear-gradient(180deg, #f8faff 0%, #ffffff 100%);
}

.pricing-badges {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.pricing-badges span {
    background: var(--bg-white);
    border: 1px solid #e0e7ff;
    color: var(--text-muted);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.pricing-badges span i {
    color: var(--primary-color);
    margin-right: 6px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: stretch;
    margin-top: 2rem;
}

.pricing-card {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: #e0e7ff;
}

.pricing-featured {
    border-color: var(--primary-color);
    transform: scale(1.03);
    background: #fff;
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.2);
}

.pricing-featured:hover {
    transform: scale(1.03) translateY(-8px);
}

.popular-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    white-space: nowrap;
}

.pricing-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f3f4f6;
}

.plan-name {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.plan-original {
    color: #9ca3af;
    font-size: 1rem;
    text-decoration: line-through;
    margin-bottom: 4px;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    font-family: var(--font-heading);
    margin: 0;
    line-height: 1;
}

.plan-price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-muted);
}

.plan-save {
    display: inline-block;
    margin-top: 8px;
    background: #dcfce7;
    color: #16a34a;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 12px;
    letter-spacing: 0.05em;
}

.plan-desc {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.plan-features {
    list-style: none;
    flex: 1;
    margin-bottom: 2rem;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.95rem;
    border-bottom: 1px solid #f9fafb;
    color: var(--text-main);
}

.plan-features li i {
    flex-shrink: 0;
    font-size: 1rem;
}

.plan-features .included i {
    color: #10b981;
}

.plan-features .excluded {
    opacity: 0.4;
    text-decoration: line-through;
}

.plan-features .excluded i {
    color: #ef4444;
}

.plan-btn {
    display: block;
    text-align: center;
    padding: 13px 20px;
    border-radius: 30px;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 700;
    font-family: var(--font-heading);
    transition: var(--transition);
    margin-top: auto;
}

.plan-btn:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
}

.plan-btn-featured {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    border: none;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.plan-btn-featured:hover {
    opacity: 0.9;
    color: #fff;
    transform: translateY(-2px);
}

/* =============================================
   ENHANCED MOBILE / HEADER STYLES
   ============================================= */

/* Better logo icon */
.logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    margin-right: 8px;
    vertical-align: middle;
}

/* Top-bar responsive */
@media (max-width: 480px) {
    .top-bar {
        display: none;
    }
    .hero {
        padding: 80px 0 60px !important;
    }
}

/* Pricing responsive */
@media (max-width: 991px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }
    .pricing-featured {
        transform: scale(1);
        order: -1;
    }
    .pricing-featured:hover {
        transform: translateY(-8px);
    }
}

/* Better mobile nav */
@media (max-width: 768px) {
    .nav-menu {
        padding: 5rem 2rem 2rem;
        gap: 0;
    }
    .nav-menu li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #f3f4f6;
    }
    .nav-menu li:last-child {
        border: none;
        margin-top: 1.5rem;
    }
    .nav-menu li a {
        display: block;
        padding: 1rem;
        font-size: 1.1rem;
    }
    .nav-btn {
        width: 80%;
        margin: 0 auto;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .section-subtitle {
        font-size: 1rem;
    }
    .hero-content h1 {
        font-size: 2.4rem;
    }
    .pricing-badges {
        gap: 0.75rem;
    }
    .pricing-badges span {
        font-size: 0.8rem;
        padding: 5px 12px;
    }
    .plan-price {
        font-size: 2rem;
    }
    .pricing-card {
        padding: 2rem 1.5rem;
    }
    .service-card {
        padding: 2rem;
    }
}

@media (max-width: 576px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
    .hero-content h1 {
        font-size: 1.9rem;
    }
    .page-header h1 {
        font-size: 2rem;
    }
    .section-title {
        font-size: 1.6rem;
    }
    .contact-form {
        padding: 2rem 1.25rem;
    }
    .contact-container {
        gap: 2rem;
    }
}

/* =============================================
   DARK MODE COMPONENT OVERRIDES
   ============================================= */

/* Body background */
body {
    background-color: var(--bg-dark);
}

/* Navbar links in dark mode */
.nav-menu li a:not(.btn) {
    color: #cbd5e1;
}

.nav-menu li a:not(.btn):hover,
.nav-menu li a.active {
    color: var(--primary-color);
}

/* Mobile nav dark background */
@media (max-width: 768px) {
    .nav-menu {
        background-color: #0d1117;
        border-left: 1px solid rgba(255,255,255,0.06);
    }
    .nav-menu li {
        border-bottom-color: rgba(255,255,255,0.06);
    }
}

/* Hero section dark */
.hero {
    background-color: var(--bg-dark);
    background: radial-gradient(circle at top right, rgba(129, 140, 248, 0.12), transparent 60%),
                radial-gradient(circle at bottom left, rgba(244, 114, 182, 0.08), transparent 60%),
                var(--bg-dark);
}

/* Service cards dark */
.service-card {
    background: #1a2133;
    border: 1px solid #2d3748;
}

/* Contact form dark */
.contact-form {
    background: #1a2133;
    border: 1px solid #2d3748;
}

.form-control {
    background-color: #0d1117;
    border-color: #2d3748;
    color: var(--text-main);
}

.form-control:focus {
    background-color: #151b27;
    border-color: var(--primary-color);
}

.form-control::placeholder {
    color: #64748b;
}

/* Pricing cards dark */
.pricing-card {
    background: #1a2133;
    border-color: #2d3748;
}

.pricing-featured {
    background: #1e2a45;
    border-color: var(--primary-color);
    box-shadow: 0 0 40px rgba(129, 140, 248, 0.25);
}

.pricing-header {
    border-bottom-color: #2d3748;
}

.plan-features li {
    border-bottom-color: #2d3748;
    color: #cbd5e1;
}

.plan-features .excluded {
    color: #475569;
}

/* About image border */
.about-image::after {
    border-color: var(--primary-color);
    opacity: 0.5;
}

/* Btn secondary in dark */
.btn-secondary {
    background: #1a2133;
    color: var(--primary-color);
    border: 1px solid #2d3748;
}

.btn-secondary:hover {
    background: #232d42;
}

/* Section backgrounds */
.bg-white {
    background-color: var(--bg-white) !important;
}

.bg-light {
    background-color: var(--bg-light) !important;
}

.bg-dark-subtle {
    background-color: #151b27;
}

/* Pricing section bg */
.pricing-section {
    background: linear-gradient(180deg, #0d1117 0%, #151b27 100%);
}

/* Pricing badges dark */
.pricing-badges span {
    background: #1a2133;
    border-color: #2d3748;
    color: #94a3b8;
}

/* Top bar */
.top-bar {
    background-color: #080d14;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

/* Footer already uses dark bg, just ensure border */
.footer {
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
}

/* Page header stays dark */
.page-header {
    background: linear-gradient(135deg, #0d1117 0%, #1a2133 100%);
}

/* =============================================
   FAQ SECTION
   ============================================= */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.faq-item {
    background: #1a2133;
    border: 1px solid #2d3748;
    border-radius: 16px;
    padding: 1.75rem 2rem;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(129, 140, 248, 0.1);
}

.faq-item h4 {
    font-size: 1.05rem;
    margin-bottom: 0.75rem;
    color: var(--text-main);
}

.faq-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}
