/*
Theme Name: VRL Packers and Movers India
Theme URI: https://vrlpackersindia.in/
Author: VRL Packers and Movers
Author URI: https://vrlpackersindia.in/
Description: A modern, high-performance WordPress theme for VRL Packers and Movers India. Built for speed, SEO, conversions. Full vendor system, CPT, tracking, terms, and all template pages included.
Version: 3.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: vrl-packers
Tags: logistics, packers-movers, business, responsive, seo-optimized
*/

/* ============================================================
   CSS CUSTOM PROPERTIES (Design Tokens)
   ============================================================ */
:root {
    /* Brand Colors */
    --vrl-primary:       #D62B2B;      /* Bold Indian Red - trust + action */
    --vrl-primary-dark:  #A51F1F;
    --vrl-primary-light: #F5E5E5;
    --vrl-accent:        #F5A623;      /* Warm amber - energy + optimism */
    --vrl-navy:          #0D1B3E;      /* Deep navy - authority + stability */
    --vrl-navy-mid:      #163264;
    --vrl-navy-light:    #1E4080;
    --vrl-white:         #FFFFFF;
    --vrl-off-white:     #F8F9FC;
    --vrl-light-gray:    #EEF1F8;
    --vrl-text-dark:     #1A1A2E;
    --vrl-text-body:     #4A5568;
    --vrl-text-muted:    #718096;
    --vrl-border:        #E2E8F0;
    --vrl-success:       #1B7E3F;
    --vrl-whatsapp:      #25D366;

    /* Typography */
    --font-display:      'Syne', sans-serif;
    --font-body:         'DM Sans', sans-serif;

    /* Spacing */
    --section-pad:       5rem 1.5rem;
    --container-max:     1240px;

    /* Effects */
    --shadow-sm:         0 2px 8px rgba(13,27,62,0.08);
    --shadow-md:         0 8px 28px rgba(13,27,62,0.12);
    --shadow-lg:         0 20px 60px rgba(13,27,62,0.18);
    --shadow-colored:    0 8px 32px rgba(214,43,43,0.25);
    --radius-sm:         8px;
    --radius-md:         14px;
    --radius-lg:         24px;
    --radius-full:       9999px;
    --transition:        0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
    color: var(--vrl-text-body);
    background: var(--vrl-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--vrl-text-dark);
    line-height: 1.25;
}

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

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

ul, ol { list-style: none; }

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section { padding: var(--section-pad); }

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--vrl-primary);
    background: var(--vrl-primary-light);
    padding: 0.35rem 0.9rem;
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
}

.section-title {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-title h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    margin-bottom: 0.75rem;
    color: var(--vrl-navy);
}

.section-title p {
    font-size: 1.05rem;
    color: var(--vrl-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.75rem 1.6rem;
    border-radius: var(--radius-full);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--vrl-primary);
    color: var(--vrl-white);
    box-shadow: var(--shadow-colored);
}

.btn-primary:hover {
    background: var(--vrl-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(214,43,43,0.35);
    color: white;
}

.btn-secondary {
    background: var(--vrl-navy);
    color: var(--vrl-white);
}

.btn-secondary:hover {
    background: var(--vrl-navy-mid);
    transform: translateY(-2px);
    color: white;
}

.btn-outline {
    background: transparent;
    border-color: var(--vrl-white);
    color: var(--vrl-white);
}

.btn-outline:hover {
    background: var(--vrl-white);
    color: var(--vrl-navy);
}

.btn-whatsapp {
    background: var(--vrl-whatsapp);
    color: var(--vrl-white);
}

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

.btn-call {
    background: var(--vrl-navy);
    color: var(--vrl-white);
}

.btn-call:hover {
    background: var(--vrl-navy-mid);
    transform: translateY(-2px);
    color: white;
}

.btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

/* ============================================================
   ANIMATION BASE
   ============================================================ */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-left.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ============================================================
   TOP BAR
   ============================================================ */
.vrl-topbar {
    background: var(--vrl-navy);
    color: rgba(255,255,255,0.85);
    font-size: 0.82rem;
    padding: 0.45rem 0;
}

.vrl-topbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.topbar-left, .topbar-right {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.topbar-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: rgba(255,255,255,0.85);
    transition: color var(--transition);
    font-weight: 500;
}

.topbar-link:hover { color: var(--vrl-accent); }

.topbar-link i { font-size: 0.78rem; color: var(--vrl-accent); }

.topbar-cta {
    background: var(--vrl-primary);
    color: white !important;
    padding: 0.3rem 0.9rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.03em;
    transition: all var(--transition);
}

.topbar-cta:hover {
    background: var(--vrl-accent);
    color: var(--vrl-navy) !important;
}

/* ============================================================
   HEADER
   ============================================================ */
.vrl-header {
    background: var(--vrl-white);
    position: sticky;
    top: 0;
    z-index: 1100;
    box-shadow: 0 1px 0 var(--vrl-border);
    transition: box-shadow var(--transition);
}

.vrl-header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    gap: 1.5rem;
}

/* Logo */
.vrl-logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--vrl-navy);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.logo-name span { color: var(--vrl-primary); }

.logo-tagline {
    font-size: 0.68rem;
    color: var(--vrl-text-muted);
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-top: 1px;
}

/* Primary Nav */
.primary-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

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

.nav-menu li a {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--vrl-text-dark);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.nav-menu li a:hover,
.nav-menu li.current-menu-item a {
    color: var(--vrl-primary);
    background: var(--vrl-primary-light);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--vrl-navy);
    transition: color var(--transition);
}

.header-phone:hover { color: var(--vrl-primary); }

.header-phone i { color: var(--vrl-primary); font-size: 0.85rem; }

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    gap: 5px;
    align-items: center;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--vrl-navy);
    border-radius: 2px;
    transition: all var(--transition);
}

/* Mobile Nav */
.mobile-nav {
    display: none;
    background: var(--vrl-white);
    border-top: 1px solid var(--vrl-border);
    padding: 1rem 1.5rem;
}

.mobile-nav.open { display: block; }

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.mobile-nav ul li a {
    display: block;
    padding: 0.6rem 0.75rem;
    font-weight: 600;
    color: var(--vrl-text-dark);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.mobile-nav ul li a:hover {
    color: var(--vrl-primary);
    background: var(--vrl-primary-light);
}

.mobile-nav-cta {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--vrl-border);
    flex-wrap: wrap;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.vrl-hero {
    background: var(--vrl-navy);
    position: relative;
    overflow: hidden;
    padding: 5rem 1.5rem 4rem;
    min-height: 580px;
    display: flex;
    align-items: center;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 70% 50%, rgba(214,43,43,0.18) 0%, transparent 60%),
        radial-gradient(ellipse at 10% 80%, rgba(245,166,35,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--container-max);
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(245,166,35,0.15);
    border: 1px solid rgba(245,166,35,0.4);
    color: var(--vrl-accent);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    margin-bottom: 1.5rem;
}

.hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--vrl-accent);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-heading {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 800;
    color: var(--vrl-white);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
}

.hero-heading .highlight {
    color: var(--vrl-accent);
    position: relative;
}

.hero-subtext {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 2rem;
    line-height: 1.7;
    max-width: 520px;
}

.hero-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.8);
    font-weight: 500;
}

.trust-item i { color: var(--vrl-accent); font-size: 0.9rem; }

/* Hero Quote Form Card */
.hero-form-card {
    background: var(--vrl-white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: 0 30px 80px rgba(0,0,0,0.35);
    position: relative;
    overflow: hidden;
}

.hero-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--vrl-primary), var(--vrl-accent));
}

.form-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--vrl-navy);
    margin-bottom: 0.25rem;
}

.form-card-sub {
    font-size: 0.8rem;
    color: var(--vrl-text-muted);
    margin-bottom: 1.5rem;
}

.vrl-form-group {
    margin-bottom: 1rem;
}

.vrl-form-group label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--vrl-navy);
    margin-bottom: 0.35rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.vrl-form-group input,
.vrl-form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--vrl-border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--vrl-text-dark);
    background: var(--vrl-white);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.vrl-form-group input:focus,
.vrl-form-group select:focus {
    outline: none;
    border-color: var(--vrl-primary);
    box-shadow: 0 0 0 3px rgba(214,43,43,0.1);
}

.vrl-form-group input::placeholder { color: var(--vrl-text-muted); }

.form-submit-btn {
    width: 100%;
    padding: 0.9rem;
    background: var(--vrl-primary);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition);
    box-shadow: var(--shadow-colored);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.form-submit-btn:hover {
    background: var(--vrl-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(214,43,43,0.35);
}

.form-privacy {
    text-align: center;
    font-size: 0.72rem;
    color: var(--vrl-text-muted);
    margin-top: 0.75rem;
}

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip {
    background: var(--vrl-primary);
    padding: 2.5rem 1.5rem;
}

.stats-strip .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.stat-item {
    text-align: center;
    color: white;
    padding: 0.5rem;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255,255,255,0.3);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.82rem;
    font-weight: 500;
    opacity: 0.9;
}

/* ============================================================
   WHY CHOOSE US SECTION
   ============================================================ */
.why-us {
    background: var(--vrl-off-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    background: var(--vrl-white);
    border-radius: var(--radius-md);
    padding: 2rem;
    border: 1px solid var(--vrl-border);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--vrl-primary), var(--vrl-accent));
    transform: scaleX(0);
    transition: transform var(--transition);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.feature-card:hover::before { transform: scaleX(1); }

.feature-icon {
    width: 56px;
    height: 56px;
    background: var(--vrl-primary-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--vrl-primary);
    margin-bottom: 1.25rem;
    transition: all var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--vrl-primary);
    color: white;
}

.feature-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.6rem;
    color: var(--vrl-navy);
}

.feature-card p {
    font-size: 0.88rem;
    color: var(--vrl-text-muted);
    line-height: 1.65;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-section {
    background: var(--vrl-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--vrl-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--vrl-border);
    transition: all var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-img-wrap {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.service-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-img-wrap img {
    transform: scale(1.05);
}

.service-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--vrl-primary);
    color: white;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
}

.service-body {
    padding: 1.5rem;
}

.service-body h3 {
    font-size: 1.1rem;
    color: var(--vrl-navy);
    margin-bottom: 0.6rem;
}

.service-body p {
    font-size: 0.88rem;
    color: var(--vrl-text-muted);
    margin-bottom: 1rem;
    line-height: 1.65;
}

.service-features {
    margin-bottom: 1.25rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    color: var(--vrl-text-body);
    padding: 0.2rem 0;
}

.service-features li::before {
    content: '✓';
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--vrl-success);
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    background: rgba(27,126,63,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-cta-row {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.service-cta-row .btn {
    font-size: 0.82rem;
    padding: 0.5rem 1rem;
}

/* ============================================================
   HOW IT WORKS / PROCESS
   ============================================================ */
.process-section {
    background: var(--vrl-navy);
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 50%, rgba(214,43,43,0.12) 0%, transparent 60%);
    pointer-events: none;
}

.process-section .section-title h2 { color: white; }
.process-section .section-title p { color: rgba(255,255,255,0.65); }
.process-section .section-label {
    background: rgba(245,166,35,0.15);
    color: var(--vrl-accent);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 36px;
    left: calc(12.5% + 36px);
    right: calc(12.5% + 36px);
    height: 2px;
    background: linear-gradient(90deg, var(--vrl-primary), var(--vrl-accent), var(--vrl-primary));
    opacity: 0.5;
    z-index: 0;
}

.process-step {
    text-align: center;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--vrl-primary), var(--vrl-primary-dark));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 24px rgba(214,43,43,0.4);
    border: 4px solid var(--vrl-navy);
    position: relative;
}

.step-icon-inner {
    font-size: 1.3rem;
}

.process-step h3 {
    color: white;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.process-step p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.reviews-section {
    background: var(--vrl-off-white);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.review-card {
    background: var(--vrl-white);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    border: 1px solid var(--vrl-border);
    transition: all var(--transition);
    position: relative;
}

.review-card::before {
    content: '\201C';
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 5rem;
    font-family: Georgia, serif;
    color: var(--vrl-primary-light);
    line-height: 1;
    pointer-events: none;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.review-stars {
    color: var(--vrl-accent);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
}

.review-text {
    font-size: 0.9rem;
    color: var(--vrl-text-body);
    line-height: 1.75;
    margin-bottom: 1.25rem;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.author-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--vrl-border);
}

.author-info .name {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--vrl-navy);
}

.author-info .city {
    font-size: 0.78rem;
    color: var(--vrl-text-muted);
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
    background: linear-gradient(135deg, var(--vrl-primary) 0%, var(--vrl-primary-dark) 100%);
    padding: 4rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(0,0,0,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-banner h2 {
    color: white;
    font-size: clamp(1.6rem, 3.5vw, 2.5rem);
    margin-bottom: 0.75rem;
    position: relative;
}

.cta-banner p {
    color: rgba(255,255,255,0.85);
    font-size: 1.05rem;
    margin-bottom: 2rem;
    position: relative;
}

.cta-banner .btn-group {
    justify-content: center;
    position: relative;
}

.btn-light {
    background: white;
    color: var(--vrl-primary);
    font-weight: 700;
}

.btn-light:hover {
    background: var(--vrl-off-white);
    transform: translateY(-2px);
    color: var(--vrl-primary);
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section {
    background: var(--vrl-white);
}

.faq-container {
    max-width: 780px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--vrl-border);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    overflow: hidden;
    transition: all var(--transition);
}

.faq-item.open {
    border-color: var(--vrl-primary);
    box-shadow: 0 4px 16px rgba(214,43,43,0.1);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 1.4rem;
    cursor: pointer;
    font-weight: 600;
    color: var(--vrl-navy);
    font-size: 0.95rem;
    transition: color var(--transition);
    gap: 1rem;
}

.faq-question:hover { color: var(--vrl-primary); }

.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1.5px solid var(--vrl-border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.8rem;
    color: var(--vrl-text-muted);
    transition: all var(--transition);
}

.faq-item.open .faq-icon {
    background: var(--vrl-primary);
    border-color: var(--vrl-primary);
    color: white;
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    padding: 0 1.4rem 1.2rem;
    font-size: 0.9rem;
    color: var(--vrl-text-body);
    line-height: 1.75;
    border-top: 1px solid var(--vrl-border);
    padding-top: 1rem;
}

.faq-item.open .faq-answer { display: block; }

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section {
    background: var(--vrl-off-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 3rem;
    align-items: start;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.contact-info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: white;
    padding: 1.25rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--vrl-border);
    transition: all var(--transition);
}

.contact-info-item:hover {
    border-color: var(--vrl-primary);
    box-shadow: var(--shadow-sm);
}

.contact-icon {
    width: 44px;
    height: 44px;
    background: var(--vrl-primary-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--vrl-primary);
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-info-text strong {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--vrl-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.2rem;
}

.contact-info-text span, .contact-info-text a {
    font-size: 0.92rem;
    color: var(--vrl-navy);
    font-weight: 600;
    transition: color var(--transition);
}

.contact-info-text a:hover { color: var(--vrl-primary); }

.contact-form-card {
    background: white;
    border-radius: var(--radius-md);
    padding: 2.5rem;
    border: 1px solid var(--vrl-border);
    box-shadow: var(--shadow-sm);
}

.contact-form-card h3 {
    font-size: 1.3rem;
    color: var(--vrl-navy);
    margin-bottom: 0.25rem;
}

.contact-form-card .sub {
    font-size: 0.85rem;
    color: var(--vrl-text-muted);
    margin-bottom: 1.5rem;
}

/* ============================================================
   BLOG SECTION
   ============================================================ */
.blog-section {
    background: var(--vrl-white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: var(--vrl-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--vrl-border);
    transition: all var(--transition);
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.blog-img-wrap {
    height: 200px;
    overflow: hidden;
}

.blog-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-img-wrap img { transform: scale(1.06); }

.blog-body {
    padding: 1.5rem;
}

.blog-cat {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--vrl-primary);
    background: var(--vrl-primary-light);
    padding: 0.2rem 0.65rem;
    border-radius: var(--radius-full);
    margin-bottom: 0.75rem;
}

.blog-body h3 {
    font-size: 1rem;
    color: var(--vrl-navy);
    margin-bottom: 0.5rem;
    line-height: 1.45;
}

.blog-body h3 a:hover { color: var(--vrl-primary); }

.blog-body p {
    font-size: 0.85rem;
    color: var(--vrl-text-muted);
    line-height: 1.65;
    margin-bottom: 1rem;
}

.read-more {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--vrl-primary);
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    transition: gap var(--transition);
}

.read-more:hover { gap: 0.6rem; color: var(--vrl-primary-dark); }

/* ============================================================
   FOOTER
   ============================================================ */
.vrl-footer {
    background: var(--vrl-navy);
    color: rgba(255,255,255,0.8);
    padding: 4rem 1.5rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo-name {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 0.25rem;
}

.footer-brand .logo-name span { color: var(--vrl-accent); }

.footer-brand p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.75;
    margin-bottom: 1.5rem;
    max-width: 260px;
}

.social-row {
    display: flex;
    gap: 0.75rem;
}

.social-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    transition: all var(--transition);
}

.social-btn:hover {
    transform: translateY(-3px);
    color: white;
}

.social-btn.fb:hover { background: #1877f2; }
.social-btn.wa:hover { background: var(--vrl-whatsapp); }
.social-btn.ig:hover { background: #e4405f; }
.social-btn.yt:hover { background: #ff0000; }

.footer-col h4 {
    color: white;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.75rem;
}

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

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.65);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: all var(--transition);
}

.footer-links a:hover {
    color: var(--vrl-accent);
    transform: translateX(4px);
}

.footer-links a i {
    font-size: 0.7rem;
    color: var(--vrl-accent);
    opacity: 0.7;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact-item {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    font-size: 0.83rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.55;
}

.footer-contact-item i {
    color: var(--vrl-accent);
    margin-top: 3px;
    flex-shrink: 0;
    font-size: 0.85rem;
}

.footer-contact-item a {
    color: rgba(255,255,255,0.65);
    transition: color var(--transition);
}

.footer-contact-item a:hover { color: var(--vrl-accent); }

.footer-bottom {
    padding: 1.5rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.45);
}

.footer-bottom a {
    color: rgba(255,255,255,0.6);
    transition: color var(--transition);
}

.footer-bottom a:hover { color: var(--vrl-accent); }

.footer-keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-keyword {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.05);
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-full);
    transition: all var(--transition);
}

.footer-keyword:hover {
    background: rgba(245,166,35,0.15);
    color: var(--vrl-accent);
}

/* ============================================================
   MOBILE STICKY CTA
   ============================================================ */
.mobile-sticky {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    background: var(--vrl-navy);
    border-top: 2px solid var(--vrl-accent);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}

.mobile-sticky-inner {
    display: flex;
}

.mobile-sticky-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    padding: 0.75rem 0.5rem;
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition);
    border-right: 1px solid rgba(255,255,255,0.1);
}

.mobile-sticky-btn:last-child { border-right: none; }

.mobile-sticky-btn i { font-size: 1.1rem; }

.mobile-sticky-btn.call { background: var(--vrl-primary); }
.mobile-sticky-btn.whatsapp { background: var(--vrl-whatsapp); }
.mobile-sticky-btn.quote { background: var(--vrl-navy-mid); }

.mobile-sticky-btn:hover {
    filter: brightness(1.1);
    color: white;
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.vrl-breadcrumb {
    background: var(--vrl-off-white);
    padding: 0.75rem 1.5rem;
    border-bottom: 1px solid var(--vrl-border);
    font-size: 0.8rem;
    color: var(--vrl-text-muted);
}

.vrl-breadcrumb .container {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-wrap: wrap;
}

.vrl-breadcrumb a { color: var(--vrl-primary); font-weight: 500; }
.vrl-breadcrumb a:hover { color: var(--vrl-primary-dark); }
.vrl-breadcrumb span { color: var(--vrl-text-muted); }

/* ============================================================
   TRUST BADGES ROW
   ============================================================ */
.trust-badges {
    background: var(--vrl-white);
    padding: 1.5rem;
    border-top: 1px solid var(--vrl-border);
    border-bottom: 1px solid var(--vrl-border);
}

.trust-badges-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--vrl-text-dark);
}

.trust-badge i {
    font-size: 1.1rem;
    color: var(--vrl-primary);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; gap: 2.5rem; }
    .hero-form-card { max-width: 520px; }
    .process-steps { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
    .process-steps::before { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .stats-strip .container { grid-template-columns: repeat(2, 1fr); }
    .stat-item:nth-child(2)::after { display: none; }
}

@media (max-width: 768px) {
    :root { --section-pad: 3.5rem 1.25rem; }

    .vrl-topbar { display: none; }

    .primary-nav { display: none; }
    .menu-toggle { display: flex; }
    .mobile-sticky { display: block; }
    body { padding-bottom: 68px; }

    .header-inner { height: 60px; }

    .hero-content { grid-template-columns: 1fr; }
    .hero-heading { font-size: 2rem; }
    .hero-form-card { padding: 1.5rem; }

    .process-steps { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; text-align: center; }

    .stats-strip .container { grid-template-columns: repeat(2, 1fr); }
    .stat-item::after { display: none; }
}

@media (max-width: 480px) {
    :root { --section-pad: 3rem 1rem; }
    .stats-strip .container { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
    .stat-number { font-size: 1.75rem; }
    .trust-badges-inner { gap: 1rem; }
    .mobile-sticky-btn { font-size: 0.65rem; padding: 0.6rem 0.25rem; }
}
