/* ==========================================================================
   AALIYA BOOK PUBLICATION - CRISP HIGH-CONTRAST LIGHT THEME
   Sharp, Professional, Modern Geometric UI Design System
   ========================================================================== */

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

:root {
    /* Sharp High-Contrast Slate & Blue/Coral Theme */
    --primary-brand: #0F172A;          /* Slate 900 (Sharp Slate Black) */
    --primary-brand-rgb: 15, 23, 42;
    --primary-dark: #020617;           /* Slate 950 */
    --primary-light: #F1F5F9;          /* Slate 100 */
    
    --accent-blue: #2563EB;            /* Royal Blue */
    --accent-blue-hover: #1D4ED8;
    
    --accent-coral: #EA580C;           /* Sharp Orange */
    --accent-coral-hover: #C2410C;
    --accent-coral-light: #FFEDD5;

    --success-mint: #059669;           /* Sharp Emerald */
    --success-mint-light: #D1FAE5;
    
    --teal-plan: #0D9488;              /* Sharp Teal */
    --teal-plan-light: #CCFBF1;

    --blue-plan: #2563EB;              /* Sharp Blue */
    --blue-plan-light: #DBEAFE;

    --danger-red: #DC2626;             /* Red 600 */
    --danger-red-light: #FEE2E2;       /* Red 100 */

    /* Backgrounds & Text */
    --bg-slate: #FFFFFF;            /* Crisp 100% White Background */
    --bg-alt: #F8FAFC;              /* Clean Slate 50 for alternate sections */
    --bg-card: #FFFFFF;
    --text-primary: #0F172A;        /* Sharp Slate 900 */
    --text-secondary: #475569;      /* Slate 600 */
    --border-color: #E2E8F0;        /* Slate 200 (Clean, sharp borders) */
    
    /* Typography */
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Sharp, Subtle Geometric Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.07), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

    /* Spacing Scale */
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 20px;
    --space-6: 24px;
    --space-8: 32px;
    --space-12: 48px;

    /* Crisp Standard Transitions */
    --transition-smooth: all 0.2s ease-in-out;
}

/* ==========================================================================
   RESET & SYSTEM BASES
   ========================================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

html {
    scroll-behavior: smooth;
    text-size-adjust: 100%;
}

body {
    background-color: var(--bg-slate);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 15.5px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary-brand);
    font-weight: 700;
    line-height: 1.25;
}

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

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

/* ==========================================================================
   SECTIONS & TITLE BLOCKS
   ========================================================================== */

.section {
    padding: 80px 0;
    position: relative;
}

.section-alt {
    background-color: var(--bg-alt);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.section-title-wrapper {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 48px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    background-color: var(--primary-light);
    color: var(--text-secondary);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 4px;
    margin-bottom: var(--space-3);
    border: 1px solid var(--border-color);
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--primary-brand);
    margin-bottom: var(--space-3);
}

.section-title span {
    color: var(--accent-blue);
}

.section-subtitle {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.5;
    font-weight: 400;
}

/* Sharp, Solid Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14.5px;
    border-radius: 8px; /* Sharp geometric corners */
    cursor: pointer;
    border: 1px solid transparent;
    transition: var(--transition-smooth);
    gap: var(--space-2);
    outline: none;
}

.btn-primary {
    background-color: var(--accent-blue);
    color: #FFFFFF;
}

.btn-primary:hover {
    background-color: var(--accent-blue-hover);
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: #FFFFFF;
    color: var(--primary-brand);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background-color: var(--primary-light);
    transform: translateY(-1px);
}

.btn-whatsapp {
    background-color: #059669;
    color: #FFFFFF;
}

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

.btn-sm {
    padding: 8px 18px;
    font-size: 12.5px;
}

/* ==========================================================================
   NAVIGATION HEADER (Clean, Solid Sticky Navbar)
   ========================================================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 72px;
    z-index: 1000;
    background-color: #FFFFFF;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.header.scrolled {
    height: 64px;
    box-shadow: var(--shadow-sm);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.logo-img {
    height: 38px;
    width: 38px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid var(--border-color);
}

.company-name {
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--primary-brand);
}

.company-name span {
    color: var(--accent-blue);
}

.nav-menu {
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: var(--space-6);
    height: 100%;
}

.nav-links a {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14.5px;
    color: var(--text-secondary);
    position: relative;
    padding: 4px 0;
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-links a:hover {
    color: var(--primary-brand);
}

.nav-links li.active-link a {
    color: var(--primary-brand);
    font-weight: 700;
}

.nav-links li.active-link a::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-blue);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

/* Burger menu button */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 32px;
    height: 32px;
    position: relative;
    z-index: 1002;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background-color: var(--primary-brand);
    position: absolute;
    left: 6px;
    transition: var(--transition-smooth);
}

.menu-toggle span:nth-child(1) { top: 11px; }
.menu-toggle span:nth-child(2) { top: 16px; }
.menu-toggle span:nth-child(3) { top: 21px; }

.menu-toggle.active span:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
    background-color: var(--accent-blue);
}
.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
    background-color: var(--accent-blue);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero-section {
    padding: 130px 0 70px;
    background-color: #FFFFFF;
    border-bottom: 1px solid var(--border-color);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: var(--space-8);
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
}

.hero-announcement {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    background-color: var(--primary-light);
    color: var(--text-secondary);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 12px;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    margin-bottom: var(--space-4);
}

.hero-title {
    font-size: 46px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--primary-brand);
    margin-bottom: var(--space-4);
}

.hero-title span {
    color: var(--accent-blue);
}

.hero-description {
    font-size: 16.5px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-6);
    max-width: 600px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
    margin-bottom: var(--space-6);
}

.hero-stats {
    display: flex;
    gap: var(--space-8);
    border-top: 1px solid var(--border-color);
    padding-top: var(--space-5);
}

.hero-stat-item {
    display: flex;
    flex-direction: column;
}

.hero-stat-number {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-brand);
}

.hero-stat-label {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
}

.hero-visual {
    position: relative;
    width: 100%;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.hero-image-wrapper:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-floating-badge {
    position: absolute;
    bottom: -10px;
    left: 20px;
    background-color: #FFFFFF;
    border-radius: 8px;
    padding: var(--space-3) var(--space-4);
    display: flex;
    align-items: center;
    gap: var(--space-3);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--accent-blue);
    max-width: 290px;
}

.floating-badge-icon {
    font-size: 20px;
}

.floating-badge-text h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-brand);
    margin-bottom: 2px;
}

.floating-badge-text p {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.3;
}

/* ==========================================================================
   BENEFITS SECTION
   ========================================================================== */

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-5);
}

.benefit-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px; /* Geometric rounded corners */
    padding: var(--space-6);
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-blue);
}

.benefit-icon {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background-color: var(--primary-light);
    color: var(--primary-brand);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-4);
    font-size: 18px;
}

.benefit-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--primary-brand);
    margin-bottom: var(--space-2);
}

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

/* ==========================================================================
   WRITING PLANS SECTION
   ========================================================================== */

.plans-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
}

.plan-card {
    background-color: var(--bg-card);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    padding: 32px;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.plan-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-blue);
}

/* Sharp colors instead of pastels */
.plan-blue {
    border-top: 4px solid var(--accent-blue);
}
.plan-blue .plan-name { color: var(--accent-blue); }
.plan-blue .plan-salary-amount { color: var(--primary-brand); }
.plan-blue .plan-fee-amount { color: var(--accent-blue); }
.plan-blue .btn-plan { background-color: var(--accent-blue); color: #FFFFFF; }
.plan-blue .btn-plan:hover { background-color: var(--accent-blue-hover); }

.plan-green {
    border-top: 4px solid var(--success-mint);
}
.plan-green .plan-name { color: var(--success-mint); }
.plan-green .plan-salary-amount { color: var(--primary-brand); }
.plan-green .plan-fee-amount { color: var(--success-mint); }
.plan-green .btn-plan { background-color: var(--success-mint); color: #FFFFFF; }
.plan-green .btn-plan:hover { background-color: #047857; }

.plan-teal {
    border-top: 4px solid var(--teal-plan);
}
.plan-teal .plan-name { color: var(--teal-plan); }
.plan-teal .plan-salary-amount { color: var(--primary-brand); }
.plan-teal .plan-fee-amount { color: var(--teal-plan); }
.plan-teal .btn-plan { background-color: var(--teal-plan); color: #FFFFFF; }
.plan-teal .btn-plan:hover { background-color: #0F766E; }

.plan-orange {
    border-top: 4px solid var(--accent-coral);
}
.plan-orange .plan-name { color: var(--accent-coral); }
.plan-orange .plan-salary-amount { color: var(--primary-brand); }
.plan-orange .plan-fee-amount { color: var(--accent-coral); }
.plan-orange .btn-plan { background-color: var(--accent-coral); color: #FFFFFF; }
.plan-orange .btn-plan:hover { background-color: var(--accent-coral-hover); }

.plan-ribbon {
    position: absolute;
    top: 16px;
    right: 16px;
    background-color: var(--accent-coral);
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 10.5px;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.plan-header {
    margin-bottom: var(--space-4);
}

.plan-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-1);
}

.plan-salary {
    display: flex;
    align-items: baseline;
    gap: var(--space-1);
}

.plan-salary-currency {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
}

.plan-salary-amount {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -0.01em;
    line-height: 1;
}

.plan-salary-label {
    color: var(--text-secondary);
    margin-left: var(--space-2);
    font-size: 14.5px;
    font-weight: 500;
}

.plan-desc {
    font-size: 14.5px;
    color: var(--text-secondary);
    margin-top: var(--space-2);
    line-height: 1.5;
}

.plan-divider {
    height: 1px;
    background-color: var(--border-color);
    margin-bottom: var(--space-4);
}

.plan-features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    margin-bottom: var(--space-5);
    flex-grow: 1;
}

.plan-feature-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-2);
    font-size: 14.5px;
    color: var(--text-secondary);
}

.plan-feature-icon {
    color: var(--accent-blue);
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 1px;
}

.plan-feature-text strong {
    color: var(--text-primary);
    font-weight: 600;
}

.plan-fee-card {
    background-color: var(--primary-light);
    border-radius: 8px;
    padding: var(--space-3) var(--space-4);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-5);
    border: 1px solid var(--border-color);
}

.plan-fee-label {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text-secondary);
}

.plan-fee-amount {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
}

.btn-plan {
    width: 100%;
    border-radius: 8px;
    font-weight: 700;
}

/* ==========================================================================
   HOW IT WORKS SECTION
   ========================================================================== */

.steps-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.steps-timeline-bar {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background-color: var(--border-color);
    transform: translateX(-50%);
}

.step-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-8);
    position: relative;
}

.step-row:last-child {
    margin-bottom: 0;
}

.step-col-content {
    width: 44%;
    background-color: var(--bg-card);
    border-radius: 12px;
    padding: var(--space-5) var(--space-6);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.step-col-content:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--accent-blue);
}

.step-row:nth-child(even) {
    flex-direction: row-reverse;
}

.step-badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 11px;
    color: var(--accent-blue);
    background-color: var(--blue-plan-light);
    padding: 3px 8px;
    border-radius: 4px;
    margin-bottom: var(--space-2);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.step-col-content h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: var(--space-2);
    color: var(--primary-brand);
}

.step-col-content p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.step-center-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 32px;
    height: 32px;
    background-color: #FFFFFF;
    border: 2px solid var(--primary-brand);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13px;
    color: var(--primary-brand);
    box-shadow: var(--shadow-sm);
}

.step-row:hover .step-center-dot {
    background-color: var(--accent-blue);
    color: #FFFFFF;
    border-color: var(--accent-blue);
}

/* ==========================================================================
   TRUST STATS & ACCREDITATION
   ========================================================================== */

.trust-section {
    padding: 60px 0;
    background-color: var(--primary-brand);
    color: #FFFFFF;
    border-bottom: 1px solid var(--border-color);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
    text-align: center;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.trust-icon-badge {
    width: 48px;
    height: 48px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: var(--space-3);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.trust-item h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: var(--space-2);
}

.trust-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    max-width: 280px;
    line-height: 1.5;
}

.accreditation-container {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-6);
}

.accreditation-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 6px;
}

.accreditation-icon {
    font-size: 20px;
}

.accreditation-text h5 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13px;
    color: #FFFFFF;
}

.accreditation-text p {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    font-family: monospace;
}

/* ==========================================================================
   ABOUT US SECTION
   ========================================================================== */

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: center;
}

.about-content {
    display: flex;
    flex-direction: column;
}

.about-p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-4);
}

.about-highlight {
    font-size: 16.5px;
    font-weight: 700;
    color: var(--primary-brand);
    border-left: 3px solid var(--accent-blue);
    padding-left: var(--space-4);
    margin: var(--space-4) 0;
    line-height: 1.5;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
}

.about-stat-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: var(--space-4);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.about-stat-card:hover {
    transform: translateY(-2px);
    border-color: var(--accent-blue);
}

.about-stat-num {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 800;
    color: var(--primary-brand);
    margin-bottom: 2px;
}

.about-stat-lbl {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.about-stat-featured {
    grid-column: 1 / -1;
    background-color: var(--primary-light);
    border: 1px solid var(--border-color);
}

/* ==========================================================================
   REVIEWS & TESTIMONIALS
   ========================================================================== */

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-5);
}

.review-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: var(--space-5);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-blue);
}

.review-header {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-3);
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-light);
    color: var(--primary-brand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    border: 1px solid var(--border-color);
}

.review-meta h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-brand);
    margin-bottom: 1px;
}

.review-meta span {
    font-size: 12px;
    color: var(--text-secondary);
}

.review-rating {
    display: flex;
    gap: 2px;
    margin-bottom: var(--space-2);
}

.review-rating svg {
    width: 14px;
    height: 14px;
    fill: #F59E0B;
}

.review-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ==========================================================================
   FAQ SECTION (ACCORDIONS)
   ========================================================================== */

.faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: var(--space-3);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.accordion-header {
    width: 100%;
    padding: var(--space-4) var(--space-5);
    background: none;
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    outline: none;
}

.accordion-question {
    font-family: var(--font-heading);
    font-size: 15.5px;
    font-weight: 700;
    color: var(--primary-brand);
    padding-right: var(--space-4);
}

.accordion-icon {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    background-color: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--text-secondary);
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.accordion-item.active {
    border-color: var(--accent-blue);
}

.accordion-item.active .accordion-icon {
    background-color: var(--accent-blue);
    color: #FFFFFF;
    transform: rotate(45deg);
}

.accordion-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.25s ease-in-out;
}

.accordion-item.active .accordion-content {
    grid-template-rows: 1fr;
}

.accordion-inner {
    overflow: hidden;
}

.accordion-answer {
    padding: 0 var(--space-5) var(--space-4);
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    border-top: 1px solid var(--border-color);
    padding-top: var(--space-3);
}

.accordion-answer p {
    margin-bottom: var(--space-2);
}

.accordion-answer p:last-child {
    margin-bottom: 0;
}

.accordion-answer a {
    color: var(--accent-blue);
    font-weight: 700;
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.11fr;
    gap: var(--space-8);
}

.contact-info {
    display: flex;
    flex-direction: column;
}

.contact-card-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
    margin-bottom: var(--space-5);
}

.contact-sub-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: var(--space-4);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.contact-sub-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-blue);
}

.contact-sub-icon {
    font-size: 22px;
    margin-bottom: var(--space-2);
}

.contact-sub-card h4 {
    font-family: var(--font-heading);
    font-size: 15.5px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--primary-brand);
}

.contact-sub-card p {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: var(--space-2);
    word-break: break-all;
}

.contact-sub-link {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13px;
    color: var(--accent-blue);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.contact-box {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: var(--space-6) var(--space-8);
    box-shadow: var(--shadow-md);
}

.contact-box h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: var(--space-4);
    color: var(--primary-brand);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

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

.form-label {
    font-family: var(--font-heading);
    font-size: 13.5px;
    font-weight: 700;
    color: var(--text-primary);
}

.form-control {
    background-color: var(--bg-alt);
    border: 1px solid var(--border-color);
    border-radius: 8px; /* Sharp inputs */
    padding: 10px 16px;
    font-size: 14px;
    color: var(--text-primary);
    outline: none;
    transition: var(--transition-smooth);
    width: 100%;
    max-width: 100%;
}

.form-control:focus {
    background-color: #FFFFFF;
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.1);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer {
    background-color: #0F172A; /* Clean Dark Slate */
    color: #FFFFFF;
    padding: 60px 0 30px;
    border-top: 4px solid var(--accent-blue);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr 0.75fr 1.25fr;
    gap: var(--space-6);
    margin-bottom: 30px;
}

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

.footer-about .nav-logo {
    margin-bottom: var(--space-3);
}

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13.5px;
    line-height: 1.6;
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 15.5px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: var(--space-4);
    position: relative;
    padding-bottom: var(--space-2);
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 20px;
    height: 2px;
    background-color: var(--accent-blue);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13.5px;
}

.footer-links a:hover {
    color: #FFFFFF;
}

.footer-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.footer-contact-item {
    display: flex;
    gap: var(--space-2);
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact-icon {
    color: var(--accent-blue);
    font-size: 16px;
    flex-shrink: 0;
}

.footer-contact-text strong {
    color: #FFFFFF;
    display: block;
    margin-bottom: 1px;
}

.footer-bottom {
    padding-top: var(--space-5);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-3);
}

.footer-copy {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-legal-links {
    display: flex;
    gap: var(--space-4);
}

.footer-legal-links a {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-legal-links a:hover {
    color: #FFFFFF;
}

/* ==========================================================================
   FLOATING & SECURITY POPUP MODAL
   ========================================================================== */

.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 52px;
    height: 52px;
    background-color: #059669;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
    z-index: 999;
    cursor: pointer;
    transition: var(--transition-bounce);
}

.whatsapp-float svg {
    width: 24px;
    height: 24px;
    fill: #FFFFFF;
}

.whatsapp-float:hover {
    transform: scale(1.05) rotate(3deg);
}

/* Sharp warning dialog modal overlay */
.popup-overlay {
    display: none;
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    padding: var(--space-4);
    animation: fadeIn 0.2s ease-out forwards;
}

.popup-overlay.show {
    display: flex;
}

.popup-container {
    background-color: var(--bg-card);
    width: 100%;
    max-width: 600px;
    max-height: 85vh;
    border-radius: 12px; /* Sharp corners */
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transform: scale(0.95);
    opacity: 0;
    animation: popupAppear 0.25s ease-out forwards;
    border: 1px solid var(--border-color);
}

.popup-banner {
    background-color: var(--danger-red);
    color: #FFFFFF;
    padding: 14px var(--space-5);
    display: flex;
    align-items: center;
    gap: var(--space-2);
    flex-shrink: 0;
}

.popup-banner h3 {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.popup-close {
    position: absolute;
    top: 14px;
    right: 16px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    cursor: pointer;
}

.popup-close:hover {
    color: #FFFFFF;
}

.popup-body {
    padding: var(--space-5);
    overflow-y: auto;
    flex-grow: 1;
}

.popup-tabs {
    display: flex;
    background-color: var(--primary-light);
    padding: 3px;
    border-radius: 6px;
    margin-bottom: var(--space-4);
    border: 1px solid var(--border-color);
}

.popup-tab-btn {
    flex: 1;
    border: none;
    background: none;
    padding: 8px 12px;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.popup-tab-btn.active {
    background-color: #FFFFFF;
    color: var(--primary-brand);
    box-shadow: var(--shadow-sm);
}

.popup-text-content {
    display: none;
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-secondary);
}

.popup-text-content.active {
    display: block;
}

.popup-text-content p {
    margin-bottom: var(--space-3);
}

.popup-highlight-box {
    background-color: var(--primary-light);
    border-left: 3px solid var(--accent-blue);
    padding: var(--space-3) var(--space-4);
    margin: var(--space-3) 0;
    border-radius: 4px;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
}

.popup-highlight-box strong {
    color: var(--primary-brand);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 2px;
}

.popup-highlight-box a {
    color: var(--accent-blue);
    font-weight: 700;
}

.popup-danger-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    margin-top: var(--space-3);
    padding-top: var(--space-3);
    border-top: 1px solid var(--border-color);
}

.popup-danger-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-2);
    font-size: 13.5px;
}

.popup-danger-bullet {
    color: var(--danger-red);
    font-weight: bold;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

/* ==========================================================================
   SCROLL REVEAL TARGETS
   ========================================================================== */

.reveal-element {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.reveal-element.revealed {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */

@media (max-width: 1024px) {
    .hero-title {
        font-size: 38px;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .plans-grid {
        gap: var(--space-4);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header {
        height: 60px;
    }
    .header.scrolled {
        height: 56px;
    }
    .navbar {
        padding: 0 var(--space-4);
    }
    .logo-img {
        height: 34px;
        width: 34px;
    }
    .company-name {
        font-size: 17px;
    }

    .section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 28px;
    }

    .menu-toggle {
        display: block;
    }

    /* Fixed mobile drawer side slide-in layout */
    .nav-menu {
        position: fixed;
        top: 60px;
        right: 0;
        width: 250px;
        height: calc(100vh - 60px);
        background-color: #FFFFFF;
        box-shadow: var(--shadow-lg);
        border-left: 1px solid var(--border-color);
        transform: translateX(100%);
        transition: var(--transition-smooth);
        z-index: 1001;
        flex-direction: column;
        padding: var(--space-6);
        align-items: flex-start;
        visibility: hidden;
    }

    .nav-menu.active {
        transform: translateX(0);
        visibility: visible;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        gap: 0;
        height: auto;
    }

    .nav-links a {
        padding: var(--space-3) 0;
        width: 100%;
        border-bottom: 1px solid var(--border-color);
        font-size: 14.5px;
    }

    .nav-links li.active-link a::after {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    /* Hero stacks */
    .hero-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }

    .hero-content {
        text-align: center;
        align-items: center;
    }

    .hero-announcement {
        align-self: center;
    }

    .hero-description {
        margin: 0 auto var(--space-5);
    }

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

    .hero-stats {
        justify-content: center;
        width: 100%;
    }

    .hero-floating-badge {
        left: 50%;
        transform: translateX(-50%);
        bottom: -20px;
        width: 90%;
        max-width: 280px;
    }

    /* Plans wrap */
    .plans-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    /* Steps mobile layout */
    .steps-timeline-bar {
        left: 20px;
        transform: none;
    }

    .step-row {
        display: block;
        position: relative;
        margin-bottom: var(--space-6);
        width: 100%;
    }

    .step-col-content {
        width: auto;
        margin-left: 44px;
        padding: var(--space-4);
    }

    .step-center-dot {
        left: 20px;
        top: 20px;
        transform: translate(-50%, -50%);
        width: 26px;
        height: 26px;
        font-size: 11px;
    }

    /* Trust Grid */
    .trust-section {
        margin: 0;
        border-radius: 0;
        padding: 50px 0;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
        gap: var(--space-5);
    }

    .accreditation-container {
        gap: var(--space-3);
        flex-direction: column;
        align-items: center;
    }

    /* About Us stacks */
    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }

    .about-stats-grid {
        grid-template-columns: 1fr;
        gap: var(--space-3);
    }

    .about-stat-featured {
        width: 100%;
    }

    /* Reviews stack */
    .reviews-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    /* Contact forms stack */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
}

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

    .contact-card-list {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-5);
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: var(--space-2);
    }

    .hero-title {
        font-size: 30px;
    }
    
    .hero-stat-number {
        font-size: 22px;
    }
    
    .plan-card {
        padding: var(--space-5) var(--space-4);
    }
}