/* 
   JAD Express - Premium Modern Styles
   Design Direction: Premium, Trustworthy, Modern
   Palette: Orange/Pink Gradients + Purple Accent + Dark/Light Neutrals
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Sora:wght@400;600;700;800&display=swap');

:root {
    /* Brand Colors */
    --brand-gradient: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
    --brand-orange: #FF8E53;
    --brand-pink: #FF6B6B;

    /* Accent Colors */
    --accent-purple: #8B5CF6;
    --accent-purple-dark: #7C3AED;
    --accent-purple-light: #A78BFA;

    /* Neutrals */
    --bg-body: #F8FAFC;
    /* Slate 50 */
    --bg-surface: #FFFFFF;
    /* White */
    --text-main: #0F172A;
    /* Slate 900 */
    --text-secondary: #475569;
    /* Slate 600 */
    --text-muted: #94A3B8;
    /* Slate 400 */
    --border-light: #E2E8F0;
    /* Slate 200 */

    /* Typography */
    --font-heading: 'Sora', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;

    /* UI Elements */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-premium: 0 20px 40px -10px rgba(139, 92, 246, 0.15);
    /* Purple tint shadow */

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

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

ul {
    list-style: none;
}

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

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    width: 100%;
}

.grid {
    display: grid;
    gap: var(--spacing-lg);
}

.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.flex-col {
    flex-direction: column;
}

.gap-sm {
    gap: var(--spacing-sm);
}

.gap-md {
    gap: var(--spacing-md);
}

.text-center {
    text-align: center;
}

.text-gradient {
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-purple {
    color: var(--accent-purple);
}

.bg-white {
    background-color: var(--bg-surface);
}

.bg-gradient {
    background: var(--brand-gradient);
}

.section-py {
    padding-top: var(--spacing-2xl);
    padding-bottom: var(--spacing-2xl);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-sm);
    /* Slightly sharper for professional feel, or use full pill */
    font-weight: 600;
    font-family: var(--font-heading);
    cursor: pointer;
    transition: var(--transition-smooth);
    font-size: 1rem;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--accent-purple);
    color: white;
    box-shadow: 0 4px 14px 0 rgba(139, 92, 246, 0.39);
}

.btn-primary:hover {
    background-color: var(--accent-purple-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px 0 rgba(139, 92, 246, 0.45);
}

.btn-secondary {
    background-color: transparent;
    border-color: var(--accent-purple);
    color: var(--accent-purple);
}

.btn-secondary:hover {
    background-color: rgba(139, 92, 246, 0.05);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* Cards */
.card {
    background: var(--bg-surface);
    border-radius: var(--radius-md);
    padding: var(--spacing-lg);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(139, 92, 246, 0.2);
}

/* Badges */
.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge-purple {
    background-color: #F3E8FF;
    color: var(--accent-purple-dark);
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition-fast);
}

.nav-link {
    font-weight: 500;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.nav-link:hover {
    color: var(--accent-purple);
}

/* Mobile Menu Toggle */
.mobile-menu-btn {
    display: none;
    /* Hidden on desktop */
}

/* Responsive */
@media (max-width: 768px) {
    .mobile-hide {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 768px) {
    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Hero Section */
.hero-section {
    padding: var(--spacing-2xl) 0;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 80% 20%, rgba(255, 142, 83, 0.05) 0%, transparent 60%);
}

.hero-title {
    font-size: 2.5rem;
    /* Mobile first */
    line-height: 1.1;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

.hero-subtitle {
    font-size: 1.125rem;
    line-height: 1.6;
    max-width: 600px;
}

.text-yellow-400 {
    color: #FACC15;
}

.text-green-500 {
    color: #22C55E;
}

.text-purple-500 {
    color: var(--accent-purple);
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.gap-xs {
    gap: 0.25rem;
}

/* Hero Visual */
.hero-image-container {
    position: relative;
    height: 400px;
    /* Adjust as needed */
    display: flex;
    align-items: center;
    justify-content: center;
}

.premium-abstract-shape {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #F3F4F6 0%, #E5E7EB 100%);
    border-radius: var(--radius-lg);
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
    border: 1px solid white;
}

/* Glass Panel in Hero (Abstract UI) */
.glass-panel {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-md);
    padding: var(--spacing-lg);
    width: 280px;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.1);
}

.skeleton-line {
    height: 10px;
    background: #E2E8F0;
    border-radius: 4px;
}

.hero-card-floating {
    position: absolute;
    background: white;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    z-index: 2;
    border: 1px solid var(--border-light);
    animation: float 6s ease-in-out infinite;
}

.card-1 {
    top: 10%;
    left: -20px;
    animation-delay: 0s;
}

.card-2 {
    bottom: 10%;
    right: -20px;
    animation-delay: 3s;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

.hero-blob {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    width: 3rem;
    height: 3rem;
    background: var(--brand-gradient);
    color: white;
    font-weight: 700;
    font-family: var(--font-heading);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    font-size: 1.25rem;
    box-shadow: var(--shadow-md);
}

/* Typography Tweaks */
.text-lg {
    font-size: 1.125rem;
    font-weight: 600;
}

.text-xs {
    font-size: 0.75rem;
}

.text-sm {
    font-size: 0.875rem;
}

/* Services */
.service-icon {
    width: 3rem;
    height: 3rem;
    background: #F3E8FF;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.text-2xl {
    font-size: 1.5rem;
}

/* Pricing */
.plan-card {
    position: relative;
    padding: var(--spacing-lg);
    display: flex;
    flex-direction: column;
}

.popular-plan {
    transform: scale(1.02);
    box-shadow: var(--shadow-xl);
    z-index: 10;
}

.btn-outline-primary {
    border: 1px solid var(--accent-purple);
    color: var(--accent-purple);
    background: transparent;
    font-weight: 600;
}

.btn-outline-primary:hover {
    background: rgba(139, 92, 246, 0.05);
}

.text-3xl {
    font-size: 1.875rem;
}

.text-xl {
    font-size: 1.25rem;
}

.font-bold {
    font-weight: 700;
}

/* Social Proof */
.avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
}

.bg-gray-200 {
    background-color: #E2E8F0;
}

.text-gray-500 {
    color: #64748B;
}

/* FAQ Accordion */
.accordion-item {
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    margin-bottom: var(--spacing-sm);
    background: white;
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    text-align: left;
    padding: var(--spacing-md);
    background: white;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-main);
    transition: var(--transition-fast);
}

.accordion-header:hover {
    background: #F8FAFC;
}

.accordion-icon {
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 var(--spacing-md);
}

.accordion-item.active .accordion-content {
    padding-bottom: var(--spacing-md);
}

/* Footer */
.footer {
    background-color: var(--text-main);
    color: #94A3B8;
    padding: var(--spacing-2xl) 0 var(--spacing-lg);
    font-size: 0.9rem;
}

.footer h4 {
    color: white;
    margin-bottom: var(--spacing-md);
    font-size: 1.125rem;
}

.footer a {
    color: #94A3B8;
    display: block;
    margin-bottom: 0.5rem;
}

.footer a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #334155;
    margin-top: var(--spacing-2xl);
    padding-top: var(--spacing-md);
    text-align: center;
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: #25D366;
    color: white;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.4);
    color: white;
}

/* Content/Blog Section */
.blog-card-img {
    height: 180px;
    background: #E2E8F0;
    border-radius: var(--radius-sm);
    margin-bottom: var(--spacing-sm);
    position: relative;
    overflow: hidden;
}

.blog-date {
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
    display: block;
    color: var(--accent-purple);
    font-weight: 600;
}