/* ===========================
   Safelify Theme — Main CSS
   =========================== */

/* ---------- Variables ---------- */
:root {
    --color-primary: #e30613;
    --color-primary-dark: #c20511;
    --color-primary-light: rgba(227, 6, 19, 0.1);
    --color-dark: #111111;
    --color-dark-2: #1a1a1a;
    --color-dark-3: #2a2a2a;
    --color-body: #5e3f3b;
    --color-text: #1a1c1c;
    --color-light: #fcfcfc;
    --color-gray-50: #f9f9f9;
    --color-gray-100: #f3f3f5;
    --color-gray-200: #e5e7eb;
    --color-gray-300: #d1d5db;
    --color-gray-400: #9ca3af;
    --color-gray-500: #6b7280;
    --color-gray-600: #717182;
    --color-success: #16a34a;
    --color-error: #dc2626;

    --font-heading: "Plus Jakarta Sans", sans-serif;
    --font-body: "Inter", sans-serif;

    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-red: 0 10px 20px -10px rgba(227, 6, 19, 0.2);
    --shadow-card: 0 25px 50px -12px rgba(0, 0, 0, 0.15);

    --transition: 0.2s ease-in-out;
    --transition-slow: 0.4s ease-in-out;

    --container: 1280px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-body);
    background: #fff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-primary-dark); }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-text);
    line-height: 1.2;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; letter-spacing: -0.025em; }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 800; letter-spacing: -0.025em; }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); font-weight: 700; }
h4 { font-size: clamp(1.1rem, 2vw, 1.25rem); font-weight: 700; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
::selection { background: var(--color-primary); color: #fff; }
:focus-visible { outline: 2px solid var(--color-primary); outline-offset: 2px; }

/* ---------- Container ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
@media (min-width: 768px) { .container { padding: 0 32px; } }
@media (min-width: 1025px) { .container { padding: 0 48px; } }

.page-section { padding: 64px 0; }
@media (max-width: 768px) { .page-section { padding: 40px 0; } }

.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.screen-reader-text { @extend .sr-only; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 16px;
    padding: 16px 32px;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
    text-decoration: none;
    line-height: 1;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: scale(0.98); }
.btn-primary { background: var(--color-primary); color: #fff; }
.btn-primary:hover { background: var(--color-primary-dark); color: #fff; }
.btn-secondary { background: transparent; color: var(--color-primary); border: 2px solid var(--color-primary); }
.btn-secondary:hover { background: var(--color-primary); color: #fff; }
.btn-light { background: #fff; color: var(--color-primary); }
.btn-light:hover { background: #f0f0f0; color: var(--color-primary); }
.btn-dark { background: var(--color-dark); color: #fff; border-radius: var(--radius-lg); padding: 16px 24px; }
.btn-dark:hover { background: var(--color-dark-2); color: #fff; }
.btn-glass { background: rgba(227, 6, 19, 0.06); color: var(--color-primary); border: 2px solid var(--color-primary); backdrop-filter: blur(6px); }
.btn-glass:hover { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }
.btn-sm { padding: 12px 24px; font-size: 14px; }
.btn-lg { padding: 20px 40px; font-size: 18px; }
.btn .btn-icon { width: 20px; height: 20px; flex-shrink: 0; }
.is-pill { border-radius: var(--radius-full); }

/* ---------- Navigation ---------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #ffffff;
    border-bottom: 1px solid var(--color-gray-200);
    transition: background var(--transition), box-shadow var(--transition);
}
.site-header.is-scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.nav-container { width: 100%; }
.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 48px;
    height: 72px;
}
@media (min-width: 768px) { .nav-inner { height: 80px; padding: 0 64px; } }
@media (min-width: 1025px) { .nav-inner { height: 88px; padding: 0 96px; } }

.nav-brand { display: flex; align-items: center; }
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-icon {
    display: flex; align-items: center; justify-content: center;
    width: 36px; height: 36px;
    background: var(--color-primary); color: #fff;
    font-family: var(--font-heading); font-weight: 800; font-size: 18px;
    border-radius: var(--radius-sm);
}
.nav-logo-text {
    font-family: var(--font-heading); font-weight: 700; font-size: 20px;
    color: #1a1c1c; letter-spacing: -1.2px;
}

.nav-toggle {
    display: flex; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer;
    padding: 4px; z-index: 1001;
}
@media (min-width: 1025px) { .nav-toggle { display: none; } }
.nav-toggle-bar {
    width: 24px; height: 2px;
    background: #1a1c1c;
    transition: all var(--transition);
    border-radius: 1px;
}
.nav-toggle.active .nav-toggle-bar:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle.active .nav-toggle-bar:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav-menu-wrapper {
    display: none;
    position: fixed;
    top: 72px; left: 0; right: 0; bottom: 0;
    background: #ffffff;
    flex-direction: column;
    padding: 32px 24px;
    overflow-y: auto;
    z-index: 999;
}
@media (min-width: 1025px) {
    .nav-menu-wrapper {
        display: flex !important;
        position: static;
        flex-direction: row;
        align-items: center;
        background: transparent;
        padding: 0;
        overflow: visible;
        flex: 1;
    }
}
.nav-menu-wrapper.open { display: flex; }

.nav-menu-inner {
    display: flex;
    flex-direction: column;
}
@media (min-width: 1025px) {
    .nav-menu-inner {
        flex: 1;
        flex-direction: row;
        justify-content: center;
    }
}

.nav-menu {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
@media (min-width: 1025px) {
    .nav-menu {
        flex-direction: row;
        align-items: center;
        gap: 0;
    }
}
.nav-menu li { position: relative; }
.nav-menu a {
    display: block;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 14px;
    color: #1a1c1c;
    text-decoration: none;
    letter-spacing: -0.35px;
    transition: color var(--transition);
    border-radius: var(--radius-md);
}
.nav-menu a:hover,
.nav-menu .current-menu-item > a,
.nav-menu .current_page_item > a { color: var(--color-primary); }

/* Mobile sub-menu toggle */
@media (max-width: 1024px) {
    .nav-menu .sub-menu {
        display: none;
        padding-left: 16px;
        margin-top: 4px;
    }
    .nav-menu .sub-open > .sub-menu {
        display: block;
    }
    .nav-menu .menu-item-has-children > a::after {
        content: ""; display: inline-block;
        width: 6px; height: 6px;
        border-right: 2px solid currentColor;
        border-bottom: 2px solid currentColor;
        transform: rotate(45deg);
        margin-left: 6px;
        transition: transform var(--transition);
    }
    .nav-menu .sub-open > a::after {
        transform: rotate(-135deg);
    }
    .nav-menu .sub-menu a {
        color: var(--color-gray-400);
        font-size: 13px;
        padding: 8px 16px;
    }
}
@media (min-width: 1025px) {
    .nav-menu a { padding: 8px 16px; border-radius: 0; }
    .nav-menu .menu-item-has-children { position: relative; }
    .nav-menu .menu-item-has-children > a::after {
        content: ""; display: inline-block;
        width: 6px; height: 6px;
        border-right: 2px solid currentColor;
        border-bottom: 2px solid currentColor;
        transform: rotate(45deg);
        margin-left: 6px;
        margin-bottom: 2px;
        transition: transform var(--transition);
    }
    .nav-menu .sub-menu {
        position: absolute;
        top: 100%; left: 0;
        min-width: 220px;
        background: #fff;
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-lg);
        padding: 8px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all var(--transition);
        z-index: 100;
    }
    .nav-menu .menu-item-has-children:hover > .sub-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    .nav-menu .sub-menu a {
        color: var(--color-text);
        padding: 10px 12px;
        font-size: 14px;
    }
    .nav-menu .sub-menu a:hover {
        background: var(--color-gray-50);
        color: var(--color-primary);
    }
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
}
@media (min-width: 1025px) {
    .nav-actions { margin-top: 0; }
}
.nav-link {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 14px;
    color: #fff;
    text-decoration: none;
}
.nav-link:hover { color: var(--color-primary); }

.nav-overlay { display: none; }

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 64px;
}
@media (min-width: 768px) { .hero { padding-top: 96px; min-height: 720px; } }
.hero-bg {
    position: absolute; inset: 0;
    z-index: 0;
    overflow: hidden;
}
.hero-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transition: transform 8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.hero:hover .hero-bg img {
    transform: scale(1.1);
}
.hero-overlay {
    position: absolute; inset: 0;
    z-index: 1;
}
.hero-dot-pattern {
    position: absolute; inset: 0;
    background-image: radial-gradient(circle at 2px 2px, rgba(0,0,0,0.05) 1px, transparent 0);
    background-size: 32px 32px;
    z-index: 2;
    pointer-events: none;
}
.hero-blur-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.2;
    pointer-events: none;
    z-index: 1;
    will-change: transform;
}
.hero-blur-circle.c1 { width: 500px; height: 500px; top: -15%; right: -8%; }
.hero-blur-circle.c2 { width: 350px; height: 350px; bottom: -8%; left: -5%; }
.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
}
.hero-inner { max-width: 720px; }
.hero-inner.center { text-align: center; margin: 0 auto; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0,0,0,0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0,0,0,0.08);
    padding: 10px 22px;
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    color: #4b5563;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 28px;
    transition: all 0.3s ease;
}
.hero-badge:hover {
    background: rgba(0,0,0,0.08);
    border-color: rgba(0,0,0,0.12);
}
.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    color: #111827;
    line-height: 1.06;
    letter-spacing: -0.035em;
    margin-bottom: 22px;
    text-shadow: 0 2px 40px rgba(0,0,0,0.08);
}
.hero-title span[style*="color"] {
    text-shadow: 0 0 50px currentColor;
}
.hero-desc {
    font-size: 17px;
    color: #4b5563;
    line-height: 1.75;
    max-width: 560px;
    margin-bottom: 36px;
    font-family: var(--font-body);
    font-weight: 400;
}
.hero-inner.center .hero-desc { margin: 0 auto 36px; }
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

/* ---------- Section Common ---------- */
.section {
    padding: 96px 0;
    position: relative;
}
@media (max-width: 768px) { .section { padding: 64px 0; } }
.section-label {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--color-primary);
    margin-bottom: 12px;
    display: block;
}
.section-title {
    margin-bottom: 16px;
}
.section-desc {
    font-size: 18px;
    color: var(--color-body);
    max-width: 640px;
    line-height: 1.7;
}
.section-header {
    text-align: center;
    margin-bottom: 56px;
}
.section-header .section-desc { margin: 0 auto; }

/* ---------- Services Grid ---------- */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1025px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-card);
    transition: all var(--transition-slow);
    position: relative;
    overflow: hidden;
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.2);
}
.service-card-icon {
    width: 56px; height: 56px;
    border-radius: var(--radius-lg);
    display: flex; align-items: center; justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}
.service-card h3 { margin-bottom: 12px; }
.service-card p {
    font-size: 15px;
    color: var(--color-body);
    line-height: 1.7;
}
.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    font-weight: 600;
    font-size: 14px;
    color: var(--color-primary);
}
.service-card-link:hover { gap: 12px; }

/* ---------- Stats Strip ---------- */
.stats-strip {
    background: #f3f3f5;
    padding: 48px 0;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    text-align: center;
}
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-item {}
.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #111827;
    line-height: 1;
    margin-bottom: 8px;
}
.stat-number .stat-plus { color: var(--color-primary); }
.stat-label {
    font-size: 14px;
    color: var(--color-gray-400);
    font-family: var(--font-body);
}

/* ---------- Pricing ---------- */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: start;
}
@media (min-width: 768px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1025px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }

.pricing-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-card);
    position: relative;
    transition: all var(--transition-slow);
    border: 2px solid transparent;
}
.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.2);
}
.pricing-card.featured {
    border-color: var(--color-primary);
    box-shadow: 0 25px 50px -12px rgba(227, 6, 19, 0.15);
    transform: scale(1.02);
}
.pricing-card.featured:hover { transform: scale(1.02) translateY(-4px); }
.pricing-badge {
    position: absolute;
    top: -12px; left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 16px;
    border-radius: var(--radius-full);
    font-family: var(--font-body);
}
.pricing-name {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}
.pricing-desc {
    font-size: 14px;
    color: var(--color-body);
    margin-bottom: 20px;
}
.pricing-amount {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 24px;
}
.pricing-currency {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-text);
}
.pricing-value {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 800;
    color: var(--color-text);
    line-height: 1;
}
.pricing-period {
    font-size: 16px;
    color: var(--color-body);
}
.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}
.pricing-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
}
.pricing-feature-icon {
    width: 20px; height: 20px;
    flex-shrink: 0;
    color: var(--color-success);
    display: flex; align-items: center; justify-content: center;
}
.pricing-feature-icon svg { width: 100%; height: 100%; }

/* ---------- Testimonials ---------- */
.testimonials-section {
    background: linear-gradient(to bottom, #fff, #fef2f2);
}
.testimonials-grid,
.safelify-reviews-grid {
    display: flex; gap: 24px; overflow-x: auto;
    scroll-behavior: smooth; -webkit-overflow-scrolling: touch;
    padding-bottom: 8px; cursor: grab;
    scrollbar-width: thin; scrollbar-color: #E30613 transparent;
}
.testimonials-grid::-webkit-scrollbar,
.safelify-reviews-grid::-webkit-scrollbar { display: none; }
.testimonials-grid,
.safelify-reviews-grid { -ms-overflow-style: none; scrollbar-width: none; }
.testimonials-grid.dragging,
.safelify-reviews-grid.dragging { cursor: grabbing; scroll-behavior: auto; }
.testimonials-grid .testimonial-card,
.safelify-reviews-grid .safelify-review-card { flex: 0 0 340px; min-width: 280px; }
@media (min-width: 768px) { .testimonials-grid .testimonial-card,
.safelify-reviews-grid .safelify-review-card { flex: 0 0 360px; } }
@media (min-width: 1025px) { .testimonials-grid .testimonial-card,
.safelify-reviews-grid .safelify-review-card { flex: 0 0 380px; } }

.testimonial-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-slow);
}
.testimonial-card:hover { transform: translateY(-4px); }
.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}
.testimonial-star {
    width: 18px; height: 18px;
    color: #eab308;
}
.testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-body);
    margin-bottom: 20px;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testimonial-avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--color-gray-200);
    object-fit: cover;
    flex-shrink: 0;
}
.testimonial-name {
    font-weight: 600;
    font-size: 15px;
    color: var(--color-text);
}
.testimonial-role {
    font-size: 13px;
    color: var(--color-gray-400);
}

/* ---------- CTA ---------- */
.cta-section {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    padding: 96px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-section .hero-dot-pattern {
    background-image: radial-gradient(circle at 2px 2px, rgba(255,255,255,0.1) 1px, transparent 0);
}
.cta-title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
}
.cta-desc {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    max-width: 560px;
    margin: 0 auto 32px;
}
.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

/* ---------- How It Works ---------- */
.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}
@media (min-width: 640px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1025px) { .steps-grid { grid-template-columns: repeat(4, 1fr); } }

.step-card { text-align: center; }
.step-number {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: #fff;
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
}
.step-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}
.step-card p {
    font-size: 14px;
    color: var(--color-body);
    line-height: 1.7;
    max-width: 260px;
    margin: 0 auto;
}

/* ---------- Footer ---------- */
.site-footer {
    background: #f6f6f7;
    color: var(--color-gray-500);
    position: relative;
}
.footer-wave {
    position: relative;
    line-height: 0;
    margin-top: -1px;
}
.footer-wave svg { display: block; width: 100%; height: 60px; }
.footer-content { padding: 64px 0 32px; }
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1025px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo-icon {
    display: flex; align-items: center; justify-content: center;
    width: 36px; height: 36px;
    background: var(--color-primary); color: #fff;
    font-family: var(--font-heading); font-weight: 800; font-size: 18px;
    border-radius: var(--radius-sm);
}
.footer-logo-text {
    font-family: var(--font-heading); font-weight: 700; font-size: 20px;
    color: #111827; letter-spacing: -1.2px;
}
.footer-desc {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 320px;
}
.footer-social { display: flex; gap: 12px; }
.social-link {
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: rgba(0,0,0,0.05);
    color: var(--color-gray-500);
    transition: all var(--transition);
}
.social-link:hover {
    color: var(--color-primary);
    background: rgba(227,6,19,0.1);
    transform: translateY(-2px);
}
.social-link svg { width: 20px; height: 20px; }

.footer-heading {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    color: #111827;
    margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
    font-size: 14px;
    color: var(--color-gray-500);
    transition: color var(--transition);
}
.footer-links a:hover { color: var(--color-primary); }

.footer-contact { margin-top: 20px; }
.footer-contact p {
    font-size: 14px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.contact-icon { font-size: 14px; }

.footer-bottom {
    border-top: 1px solid rgba(0,0,0,0.08);
    padding-top: 24px;
    margin-top: 48px;
    text-align: center;
}
.footer-bottom p { font-size: 13px; color: var(--color-gray-500); }

/* ---------- Form ---------- */
.form-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}
@media (min-width: 768px) {
    .form-section.with-info { grid-template-columns: 1fr 1fr; }
}
.form-info {}
.form-info h2 { margin-bottom: 16px; }
.form-info p { font-size: 16px; line-height: 1.7; margin-bottom: 24px; }
.form-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}
.form-info-icon {
    width: 48px; height: 48px;
    background: var(--color-primary-light);
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}
.form-info-text h4 { font-size: 16px; margin-bottom: 4px; }
.form-info-text p { font-size: 14px; margin-bottom: 0; }

.venforms-form input:not([type="submit"]):not([type="button"]),
.venforms-form textarea,
.venforms-form select {
    width: 100%;
    background: var(--color-gray-100);
    border: 1px solid transparent;
    border-radius: var(--radius-md);
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--color-text);
    transition: all var(--transition);
}
.venforms-form input:focus,
.venforms-form textarea:focus,
.venforms-form select:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(227,6,19,0.1);
    outline: none;
}
.venforms-form label {
    font-weight: 500;
    font-size: 14px;
    color: var(--color-text);
    margin-bottom: 6px;
    display: block;
}
.venforms-form input[type="submit"] {
    @extend .btn;
    @extend .btn-primary;
}

/* ---------- Blog / Content ---------- */
.content-area {
    max-width: 800px;
    margin: 0 auto;
}
.content-area h1,
.content-area h2,
.content-area h3,
.content-area h4 {
    margin-top: 1.5em;
    margin-bottom: 0.5em;
}
.content-area p {
    margin-bottom: 1.2em;
    line-height: 1.8;
}
.content-area img,
.content-area .aligncenter,
.content-area [class*="wp-block-image"] img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    margin: 1.5em 0;
    display: block;
}
.content-area img.aligncenter {
    margin-left: auto;
    margin-right: auto;
}

/* ---------- Booking Steps ---------- */
.booking-steps {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 48px;
    position: relative;
}
.booking-step {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    position: relative;
}
.booking-step:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -12px;
    top: 50%;
    width: 24px;
    height: 2px;
    background: var(--color-gray-300);
}
.booking-step.active:not(:last-child)::after { background: var(--color-primary); }
.booking-step.completed:not(:last-child)::after { background: var(--color-success); }
.booking-step-num {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--color-gray-200);
    color: var(--color-gray-500);
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; font-weight: 600;
    transition: all var(--transition);
}
.booking-step.active .booking-step-num { background: var(--color-primary); color: #fff; }
.booking-step.completed .booking-step-num { background: var(--color-success); color: #fff; }
.booking-step-label {
    font-size: 14px;
    color: var(--color-gray-500);
    font-weight: 500;
}
.booking-step.active .booking-step-label { color: var(--color-text); }
.booking-step.completed .booking-step-label { color: var(--color-success); }

/* ---------- Animations ---------- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes countUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in { animation: fadeIn 0.6s ease-out forwards; }
.animate-fade-in-up { animation: fadeInUp 0.6s ease-out forwards; }

[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
[data-animate].animated {
    opacity: 1;
    transform: translateY(0);
}
[data-animate="fade"] { transform: none; }
[data-animate="fade"].animated { opacity: 1; }
[data-animate="fade-up"].animated { opacity: 1; transform: translateY(0); }
[data-animate="fade-left"] { transform: translateX(-30px); }
[data-animate="fade-left"].animated { opacity: 1; transform: translateX(0); }
[data-animate="fade-right"] { transform: translateX(30px); }
[data-animate="fade-right"].animated { opacity: 1; transform: translateX(0); }
[data-animate="scale"] { transform: scale(0.9); }
[data-animate="scale"].animated { opacity: 1; transform: scale(1); }

[data-animate] { transition-delay: calc(var(--delay, 0) * 1ms); }

/* ---------- Parallax ---------- */
.parallax { will-change: transform; }

/* ---------- Feature list ---------- */
.feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}
@media (min-width: 640px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
.feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.feature-icon {
    width: 48px; height: 48px;
    flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    border-radius: var(--radius-md);
    font-size: 20px;
}
.feature-text h4 { font-size: 18px; margin-bottom: 4px; }
.feature-text p { font-size: 14px; color: var(--color-body); }

/* ---------- Split Content ---------- */
.split-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}
@media (min-width: 768px) { .split-section { grid-template-columns: 1fr 1fr; } }
.split-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}
.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.split-content h2 { margin-bottom: 16px; }
.split-content p { font-size: 16px; line-height: 1.8; margin-bottom: 24px; }

/* ---------- Partners / Trust Bar ---------- */
.partners-section { background: var(--color-gray-50); text-align: center; }
.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
}
.partner-item {
    opacity: 0.5;
    transition: opacity var(--transition);
    filter: grayscale(1);
}
.partner-item:hover { opacity: 1; filter: grayscale(0); }
.partner-item img { height: 32px; width: auto; }

/* ---------- Blog / Archive ---------- */
.archive-hero {
    padding: 120px 0 0;
    background: #f3f4f6;
    position: relative;
}
.archive-hero-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.archive-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 12px;
}
.archive-desc {
    color: #4b5563;
    font-size: 18px;
    margin-bottom: 32px;
}
.archive-cats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    padding-bottom: 48px;
}
.archive-cat-link {
    display: inline-flex;
    padding: 8px 20px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    color: #4b5563;
    border: 1px solid rgba(0,0,0,0.12);
    transition: all 0.2s;
    text-decoration: none;
}
.archive-cat-link:hover,
.archive-cat-link.active {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}
@media (min-width: 640px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1025px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }

.blog-card {
    background: #fff;
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}
.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.blog-card-img-link {
    display: block;
    height: 220px;
    overflow: hidden;
}
.blog-card-img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.blog-card:hover .blog-card-img { transform: scale(1.05); }
.blog-card-img-placeholder {
    width: 100%; height: 100%;
    background: var(--color-gray-100);
    display: flex; align-items: center; justify-content: center;
    color: var(--color-gray-300);
}
.blog-card-body { padding: 24px; }
.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.blog-card-cat {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-primary);
    text-decoration: none;
}
.blog-card-date {
    font-size: 13px;
    color: var(--color-gray-400);
}
.blog-card-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 12px;
}
.blog-card-title a {
    color: var(--color-dark);
    text-decoration: none;
}
.blog-card-title a:hover { color: var(--color-primary); }
.blog-card-excerpt {
    font-size: 14px;
    color: var(--color-gray-500);
    line-height: 1.6;
    margin-bottom: 16px;
}
.blog-card-readmore {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: none;
    transition: gap 0.2s;
}
.blog-card-readmore:hover { gap: 10px; }

.blog-pagination {
    text-align: center;
    margin-top: 48px;
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}
.blog-pagination a,
.blog-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 16px;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 500;
    border: 1px solid var(--color-gray-200);
    color: var(--color-text);
    text-decoration: none;
    transition: all 0.2s;
}
.blog-pagination .current {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}
.blog-pagination a:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.blog-empty {
    text-align: center;
    padding: 80px 0;
}
.blog-empty h2 { margin-bottom: 12px; }
.blog-empty p { color: var(--color-gray-500); margin-bottom: 24px; }

/* ---------- Single Post ---------- */
.single-post-hero {
    padding: 140px 0 40px;
    background: #f3f4f6;
    position: relative;
}
.single-post-hero-bg {
    position: absolute; inset: 0;
    opacity: 0.04;
    background-image: radial-gradient(circle at 2px 2px, #111827 1px, transparent 0);
    background-size: 40px 40px;
}
.single-post-hero-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}
.single-post-categories {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 16px;
    flex-wrap: wrap;
}
.post-cat-badge {
    display: inline-flex;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 999px;
    background: rgba(227,6,19,0.1);
    color: var(--color-primary);
    border: 1px solid rgba(227,6,19,0.2);
    text-decoration: none;
}
.post-cat-badge:hover {
    background: var(--color-primary);
    color: #fff;
}
.single-post-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 800;
    color: #111827;
    line-height: 1.15;
    margin-bottom: 20px;
}
.single-post-meta {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    color: #6b7280;
    font-size: 14px;
}
.single-post-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.single-post-featured {
    padding: 0 0 48px;
    background: #ffffff;
}
.single-post-featured-img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    display: block;
}

.single-post-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}
@media (min-width: 1025px) {
    .single-post-layout {
        grid-template-columns: 1fr 320px;
    }
}

.single-post-content {
    max-width: 800px;
}
.single-post-content h2,
.single-post-content h3 {
    font-family: var(--font-heading);
    color: var(--color-text);
    margin-top: 40px;
    margin-bottom: 16px;
}
.single-post-content h2 { font-size: 28px; font-weight: 700; }
.single-post-content h3 { font-size: 22px; font-weight: 700; }
.single-post-content p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--color-gray-600);
    margin-bottom: 20px;
}
.single-post-content ul,
.single-post-content ol {
    padding-left: 24px;
    margin-bottom: 20px;
}
.single-post-content li {
    font-size: 17px;
    line-height: 1.8;
    color: var(--color-gray-600);
    margin-bottom: 8px;
}
.single-post-content ul { list-style: disc; }
.single-post-content ol { list-style: decimal; }
.single-post-content img {
    border-radius: var(--radius-md);
    margin: 32px 0;
}
.single-post-content blockquote {
    border-left: 4px solid var(--color-primary);
    padding: 16px 24px;
    margin: 32px 0;
    background: var(--color-gray-50);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.single-post-content blockquote p {
    font-style: italic;
    color: var(--color-text);
    margin-bottom: 0;
}

.single-post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 40px;
    margin-top: 40px;
    border-top: 1px solid var(--color-gray-200);
}
.post-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.post-tag {
    display: inline-flex;
    padding: 6px 14px;
    font-size: 13px;
    border-radius: 999px;
    background: var(--color-gray-100);
    color: var(--color-gray-600);
    text-decoration: none;
    transition: all 0.2s;
}
.post-tag:hover {
    background: var(--color-primary);
    color: #fff;
}
.post-share {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--color-gray-500);
}
.post-share a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--color-gray-100);
    color: var(--color-gray-600);
    transition: all 0.2s;
}
.post-share a:hover {
    background: var(--color-primary);
    color: #fff;
}

.post-comments {
    margin-top: 48px;
    padding-top: 48px;
    border-top: 1px solid var(--color-gray-200);
}

/* ---------- Single Post Sidebar ---------- */
.single-post-sidebar {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
@media (max-width: 1024px) {
    .single-post-sidebar { display: none; }
}
.sidebar-widget {
    padding: 24px;
    background: var(--color-gray-50);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-gray-200);
}
.sidebar-widget h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
}
.sidebar-author { text-align: center; }
.sidebar-author-avatar {
    margin-bottom: 12px;
}
.sidebar-author-avatar img {
    border-radius: 50%;
    margin: 0 auto;
}
.sidebar-author h4 { margin-bottom: 8px; }
.sidebar-author p {
    font-size: 14px;
    color: var(--color-gray-500);
    line-height: 1.6;
}
.sidebar-recent ul { list-style: none; }
.sidebar-recent li {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--color-gray-200);
}
.sidebar-recent li:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.sidebar-recent a {
    display: flex;
    gap: 12px;
    text-decoration: none;
    color: var(--color-text);
}
.sidebar-recent a:hover { color: var(--color-primary); }
.recent-thumb {
    flex-shrink: 0;
    width: 60px; height: 60px;
    border-radius: var(--radius-sm);
    overflow: hidden;
}
.recent-thumb img { width: 100%; height: 100%; object-fit: cover; }
.recent-title {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
}
.sidebar-categories ul { list-style: none; }
.sidebar-categories li {
    padding: 8px 0;
    border-bottom: 1px solid var(--color-gray-200);
}
.sidebar-categories li:last-child { border-bottom: none; }
.sidebar-categories a {
    font-size: 14px;
    color: var(--color-gray-600);
    text-decoration: none;
}
.sidebar-categories a:hover { color: var(--color-primary); }

/* ===============================================
   VenForms — Complete Redesign (Modern Premium)
   =============================================== */
.venforms-form {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}
.venforms-container {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 20px !important;
}
.venforms-title, .venforms-description { display: none; }

/* --- Progress Steps (Horizontal) --- */
.venforms-multi-step {
    padding: 0 0 40px 0;
    position: relative;
}
.venforms-progress-header {
    display: none;
}
.venforms-progress-connector {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    padding: 0;
}
.venforms-progress-connector::before {
    content: '';
    position: absolute;
    top: 18px;
    left: 40px;
    right: 40px;
    height: 2px;
    background: #e5e7eb;
    z-index: 0;
}
.venforms-progress-connector::after {
    content: '';
    position: absolute;
    top: 18px;
    left: 40px;
    height: 2px;
    background: linear-gradient(90deg, #e30613, #ff4d5a);
    z-index: 1;
    width: calc(var(--progress, 25) * 1% - 0%);
    max-width: calc(100% - 80px);
    transition: width 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 0 12px rgba(227,6,19,0.2);
}
.venforms-progress-connector .venforms-connector-line-bg,
.venforms-progress-connector .venforms-connector-line-fill {
    display: none;
}
.venforms-connector-step {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 2;
    flex: 1;
    cursor: default;
}
.venforms-step-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    font-family: var(--font-body);
    transition: all 0.4s ease;
    border: 2px solid #e5e7eb;
    background: #fff;
    color: #9ca3af;
}
.venforms-step-circle.active {
    border-color: #e30613;
    background: #e30613;
    color: #fff;
    box-shadow: 0 4px 12px rgba(227,6,19,0.25);
}
.venforms-step-circle.done {
    border-color: #22c55e;
    background: #22c55e;
    color: #fff;
}
.venforms-step-icon {
    width: 14px;
    height: 14px;
}
.venforms-step-number {
    line-height: 1;
}
.venforms-step-label-text {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: color 0.4s ease;
    white-space: nowrap;
}
.venforms-step-label-text.active {
    color: #e30613;
}
.venforms-step-label-text.done {
    color: #22c55e;
}

/* --- Multi-Step Wizard --- */
.venforms-multi-step-wizard {
    margin-top: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* --- Step Content --- */
.venforms-step-content.venforms-step-active {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    animation: venformsSlideIn 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.venforms-step-content.venforms-step-hidden {
    display: none !important;
}

@keyframes venformsSlideIn {
    from { opacity: 0; transform: translateY(24px) scale(0.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* --- Section Header --- */
.venforms-section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f3f4f6;
}
.venforms-section-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    flex-shrink: 0;
}
.venforms-section-icon svg {
    width: 18px;
    height: 18px;
}
.venforms-section-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text);
    margin: 0;
    letter-spacing: -0.2px;
}

/* --- Field Groups as Cards --- */
.venforms-field-group {
    width: 100%;
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 16px;
    padding: 24px 28px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
}
.venforms-field-group:hover {
    border-color: #e8e8e8;
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}
.venforms-field-group:focus-within {
    border-color: rgba(227,6,19,0.12);
    box-shadow: 0 4px 20px rgba(227,6,19,0.05);
}
.venforms-col-half { display: inline-block; vertical-align: top; width: calc(50% - 10px); margin-right: 0; }
.venforms-col-third { display: inline-block; vertical-align: top; width: calc(33.33% - 14px); margin-right: 0; }
.venforms-col-two-thirds { display: inline-block; vertical-align: top; width: calc(66.67% - 14px); margin-right: 0; }

/* --- Step Nav --- */
.venforms-step-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-top: 8px;
    padding: 20px 0 0;
    border-top: 1px solid #f0f0f0;
    background: none;
    border-radius: 0;
    box-shadow: none;
}
.venforms-nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}
.venforms-step-nav .venforms-step-prev {
    padding: 10px 20px !important;
    border: 1.5px solid #e5e7eb !important;
    border-radius: 10px !important;
    background: #fff !important;
    color: #666 !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: var(--font-body);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.venforms-step-nav .venforms-step-prev:hover {
    border-color: #d1d5db !important;
    color: #333 !important;
    transform: translateX(-2px);
}
.venforms-step-nav .venforms-step-next {
    padding: 12px 28px !important;
    border: none !important;
    border-radius: 10px !important;
    background: linear-gradient(135deg, #e30613, #c20511) !important;
    color: #fff !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    cursor: pointer;
    transition: all 0.3s ease !important;
    font-family: var(--font-body);
    box-shadow: 0 4px 16px rgba(227, 6, 19, 0.25) !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.2px;
}
.venforms-step-nav .venforms-step-next:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 24px rgba(227, 6, 19, 0.35) !important;
}
.venforms-step-nav .venforms-btn-primary[type="submit"],
.venforms-submit-wrapper .venforms-btn-primary {
    padding: 12px 32px !important;
    border: none !important;
    border-radius: 10px !important;
    background: linear-gradient(135deg, #e30613, #c20511) !important;
    color: #fff !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    cursor: pointer;
    transition: all 0.3s ease !important;
    font-family: var(--font-body);
    box-shadow: 0 4px 16px rgba(227, 6, 19, 0.25) !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.venforms-step-nav .venforms-btn-primary[type="submit"]:hover,
.venforms-submit-wrapper .venforms-btn-primary:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 24px rgba(227, 6, 19, 0.35) !important;
}

/* --- Nav Total --- */
.venforms-nav-total-label {
    font-size: 11px !important;
    color: #999 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.8px !important;
}
.venforms-nav-total-amount {
    font-family: var(--font-heading) !important;
    font-size: 22px !important;
    font-weight: 800 !important;
    color: var(--color-primary) !important;
}

/* --- Dark Sidebar (steps 3-4) --- */
.venforms-step-content.venforms-step-active.has-sidebar {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
}
.venforms-step-content.venforms-step-active.has-sidebar > .venforms-field-group {
    grid-column: 1;
}
.venforms-sidebar {
    grid-column: 2;
    position: sticky;
    top: 100px;
    align-self: start;
}
.venforms-sidebar-dark {
    background: #ffffff;
    color: #111827;
    border: 1px solid #e5e7eb;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    border-radius: 12px;
    padding: 24px;
}
.venforms-sidebar-dark .venforms-sidebar-estimate-label {
    font-size: 12px;
    font-weight: 500;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}
.venforms-sidebar-dark .venforms-sidebar-total {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 24px;
}
.venforms-sidebar-dark .venforms-sidebar-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #4b5563;
    margin-bottom: 8px;
}
.venforms-sidebar-dark .venforms-sidebar-divider {
    border-top: 1px solid #e5e7eb;
    margin: 16px 0;
    padding-top: 16px;
}
.venforms-sidebar-dark .venforms-sidebar-status {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}
.venforms-sidebar-dark .venforms-sidebar-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    animation: pulse 2s infinite;
}
.venforms-sidebar-dark .venforms-sidebar-status-text {
    font-size: 12px;
    font-weight: 600;
    color: #16a34a;
}
.venforms-sidebar-dark .venforms-sidebar-features {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.venforms-sidebar-dark .venforms-sidebar-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #9ca3af;
}
.venforms-sidebar-dark .venforms-sidebar-feature svg {
    width: 16px;
    height: 16px;
    color: #16a34a;
    flex-shrink: 0;
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* --- White Sidebar (step 4) --- */
.venforms-sidebar-white {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.venforms-sidebar-white h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 16px;
}
.venforms-sidebar-white .sidebar-detail-label {
    font-size: 12px;
    font-weight: 500;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}
.venforms-sidebar-white .sidebar-detail-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 12px;
}
.venforms-sidebar-white .sidebar-total-box {
    background: #111111;
    border-radius: 8px;
    padding: 16px;
    color: #fff;
    margin-top: 16px;
}
.venforms-sidebar-white .sidebar-total-box .total-label {
    font-size: 12px;
    font-weight: 500;
    color: #9ca3af;
    text-transform: uppercase;
    margin-bottom: 4px;
}
.venforms-sidebar-white .sidebar-total-box .total-amount {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
}
.venforms-sidebar-white .sidebar-features {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.venforms-sidebar-white .sidebar-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #6b7280;
}
.venforms-sidebar-white .sidebar-feature svg {
    width: 16px;
    height: 16px;
    color: #16a34a;
    flex-shrink: 0;
}


/* --- Field Labels --- */
.venforms-field-group .venforms-label {
    display: block;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 13px;
    color: #374151;
    margin-bottom: 8px;
}
.venforms-required { color: #e30613; }

/* --- Card Selector --- */
.venforms-card-selector-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 900px) {
    .venforms-card-selector-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 640px) {
    .venforms-card-selector-grid {
        grid-template-columns: 1fr;
    }
}

.venforms-card {
    border: 1.5px solid #e8e8e8 !important;
    border-radius: 14px !important;
    padding: 28px 20px !important;
    cursor: pointer;
    transition: all 0.3s ease !important;
    background: #fcfcfc !important;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    gap: 10px;
    min-height: 240px;
}
.venforms-card:hover {
    border-color: rgba(227, 6, 19, 0.2) !important;
    background: #fff !important;
    box-shadow: 0 8px 24px rgba(0,0,0,0.05) !important;
}
.venforms-card-selected {
    border-color: #e30613 !important;
    background: #fff !important;
    box-shadow: 0 8px 28px rgba(227,6,19,0.08) !important;
}

.venforms-card-icon-wrapper {
    display: flex;
    justify-content: center;
}
.venforms-card-icon {
    display: inline-flex;
    width: 52px;
    height: 52px;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}
.venforms-card-icon svg {
    width: 26px;
    height: 26px;
}
.venforms-card-icon-default {
    background: #f3f4f6;
    color: #6b7280;
}
.venforms-card-icon-selected {
    background: linear-gradient(135deg, #e30613, #ff4d5a) !important;
    color: #fff !important;
}

.venforms-card-title {
    font-family: var(--font-heading) !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #111827;
}
.venforms-card-title-default {
    color: #111827 !important;
}
.venforms-card-title-selected {
    color: #e30613 !important;
}

.venforms-card-description {
    font-family: var(--font-body);
    font-size: 12px;
    color: #9ca3af;
    line-height: 1.4;
    margin: 0;
}
.venforms-card-features { width: 100%; }
.venforms-card-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}
.venforms-card-feature-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    flex-shrink: 0;
}
.venforms-card-feature span:last-child {
    font-size: 13px;
    color: #4b5563;
}
.venforms-card-price {
    font-size: 14px;
    font-weight: 700;
    color: #e30613;
}
.venforms-card-badge {
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #e30613, #ff4d5a);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 999px;
    white-space: nowrap;
    z-index: 10;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* --- Toggle Group --- */
.venforms-toggle-group-grid {
    display: grid;
    gap: 12px !important;
}
.venforms-toggle-columns-2 .venforms-toggle-group-grid {
    grid-template-columns: repeat(2, 1fr) !important;
}
@media (max-width: 640px) {
    .venforms-toggle-columns-2 .venforms-toggle-group-grid {
        grid-template-columns: 1fr !important;
    }
}
.venforms-toggle-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 24px !important;
    border: 2px solid var(--color-gray-200) !important;
    border-radius: 12px !important;
    cursor: pointer;
    transition: all 0.3s;
    background: #fff !important;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text);
}
.venforms-toggle-btn:hover {
    border-color: rgba(227, 6, 19, 0.3) !important;
}
.venforms-toggle-btn-selected {
    border-color: var(--color-primary) !important;
    background: rgba(227, 6, 19, 0.03) !important;
}

/* --- Toggle Boolean --- */
.venforms-toggle-boolean {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 20px;
    background: #fafafa;
    border: 1.5px solid #e8e8e8;
    border-radius: 12px;
    transition: all 0.3s ease;
}
.venforms-toggle-boolean:hover {
    border-color: #ddd;
    background: #fff;
}
.venforms-toggle-boolean.checked {
    border-color: rgba(227,6,19,0.2);
    background: #fef2f2;
}
.venforms-toggle-boolean > div:first-child { flex: 1; }
.venforms-toggle-boolean > div:first-child > div:first-child {
    font-weight: 700;
    font-size: 14px;
    color: #111827;
}
.venforms-toggle-btn-subtitle {
    font-size: 12px;
    color: #9ca3af;
    margin-top: 2px;
}
.venforms-toggle-btn-price {
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}
.venforms-toggle-btn-price-default { color: #9ca3af; }
.venforms-toggle-btn-price-selected { color: #e30613; }
.venforms-switch {
    display: inline-flex;
    cursor: pointer;
    position: relative;
    width: 44px;
    height: 24px;
    flex-shrink: 0;
}
.venforms-switch input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}
.venforms-slider {
    position: absolute;
    inset: 0;
    background: #d1d5db;
    border-radius: 999px;
    transition: background 0.3s;
}
.venforms-slider::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    transition: transform 0.3s;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}
.venforms-switch input:checked + .venforms-slider {
    background: #e30613;
}
.venforms-switch input:checked + .venforms-slider::before {
    transform: translateX(20px);
}

/* --- Form Label --- */
.venforms-label {
    display: block;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 13px;
    color: #374151;
    margin-bottom: 8px;
}

/* --- Form Inputs: Refined --- */
.venforms-field input[type="text"],
.venforms-field input[type="email"],
.venforms-field input[type="tel"],
.venforms-field input[type="password"],
.venforms-field input[type="url"],
.venforms-field input[type="number"],
.venforms-field input[type="date"],
.venforms-field input[type="time"],
.venforms-field select,
.venforms-field textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--color-text);
    background: #fafafa;
    border: 1.5px solid #e8e8e8;
    border-radius: 10px;
    transition: all 0.25s ease;
    outline: none;
}
.venforms-field input:hover,
.venforms-field select:hover,
.venforms-field textarea:hover {
    border-color: #ddd;
    background: #fff;
}
.venforms-field input:focus,
.venforms-field select:focus,
.venforms-field textarea:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(227, 6, 19, 0.06);
    background: #fff;
}
.venforms-field input::placeholder,
.venforms-field textarea::placeholder {
    color: #bbb;
}
.venforms-field select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}
.venforms-field textarea {
    min-height: 100px;
    resize: vertical;
}

/* --- Price Calculator --- */
.venforms-price-calculator {
    background: var(--color-gray-50);
    border: 1px solid var(--color-gray-200);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    margin-bottom: 32px;
}
.venforms-price-label {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--color-gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}
.venforms-price-total {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 800;
    color: var(--color-text);
}
.venforms-vat-row {
    border-top: 1px solid var(--color-gray-200);
    margin-top: 16px;
    padding-top: 16px;
}
.venforms-vat-row-inner,
.venforms-grand-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: var(--color-gray-600);
    margin-bottom: 8px;
}
.venforms-grand-total-row {
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0;
}
.venforms-vat-amount,
.venforms-grand-total-amount {
    font-weight: 700;
}
.venforms-grand-total {
    color: var(--color-primary) !important;
}

/* --- File Upload Grid --- */
.venforms-file-upload-dropzone {
    aspect-ratio: auto !important;
    min-height: 160px;
    background: var(--color-gray-50) !important;
    border: 2px dashed var(--color-gray-300) !important;
    border-radius: 12px !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.2s;
    padding: 24px;
}
.venforms-file-upload-dropzone:hover {
    border-color: var(--color-primary) !important;
    background: rgba(227, 6, 19, 0.03) !important;
}
.venforms-file-upload-dropzone .vf-upload-icon {
    width: 48px; height: 48px;
    color: var(--color-gray-400);
}
.venforms-file-upload-dropzone span {
    font-size: 14px;
    color: var(--color-gray-500);
}

/* --- Checkbox --- */
.venforms-field-checkbox .venforms-field-group-inner {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.venforms-field-checkbox label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--color-gray-700);
    cursor: pointer;
}
.venforms-field-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--color-primary);
    margin-top: 2px;
    flex-shrink: 0;
}

/* --- Submit Button --- */
.venforms-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 16px 32px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    background: var(--color-primary);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 4px 14px rgba(227, 6, 19, 0.3);
}
.venforms-btn-primary:hover {
    background: var(--color-primary-dark);
    box-shadow: 0 6px 20px rgba(227, 6, 19, 0.4);
    transform: translateY(-1px);
}
.venforms-btn-primary:active {
    transform: scale(0.98);
}

/* --- VenForms Error/Success --- */
.venforms-error {
    color: var(--color-error);
    font-size: 13px;
    margin-top: 4px;
}

/* --- Booking Step Navigation (outside form) --- */
.booking-step-nav {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
}
.booking-step-link {
    padding: 8px 20px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    background: var(--color-gray-100);
    color: var(--color-gray-500);
    transition: all 0.2s;
}
.booking-step-link.active,
.booking-step-link:hover {
    background: var(--color-primary);
    color: #fff;
}

/* ---------- Image Card Grid ---------- */
.image-card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
@media (min-width: 640px) { .image-card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1025px) { .image-card-grid { grid-template-columns: repeat(3, 1fr); } }

.image-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    height: 280px;
    cursor: pointer;
}
.image-card img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease-out;
}
.image-card:hover img { transform: scale(1.05); }
.image-card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    display: flex; align-items: flex-end;
    padding: 24px;
}
.image-card-title {
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
}

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.text-primary { color: var(--color-primary); }
.text-white { color: #fff; }
.bg-gray { background: var(--color-gray-50); }
.bg-dark { background: var(--color-dark); }
.bg-white { background: #fff; }
.relative { position: relative; }
.overflow-hidden { overflow: hidden; }

.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

/* ---------- Form / Booking Pages ---------- */
.booking-page {
    background: var(--color-gray-50);
    padding: 40px 24px 80px;
}
.booking-page-inner {
    max-width: 1040px;
    margin: 0 auto;
}
.page-form-section {
    background: var(--color-gray-50);
    padding: 48px 0 80px;
}
.page-form-section .container {
    max-width: 960px;
}
.venforms-form {
    background: #fff;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
@media (min-width: 768px) {
    .venforms-form {
        padding: 40px;
    }
}

/* ---------- Home Page Hero ---------- */
.home-hero {
    position: relative;
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #f8fafc, #ffffff, #eef2f7);
    overflow: hidden;
}
.home-hero-bg {
    position: absolute; inset: 0;
    background-image: url('/wp-content/uploads/2026/08/photo-1767491629923-009ffdc395d8-w1080.jpg');
    background-size: cover; background-position: center;
    opacity: 0.05;
}
.home-hero-pattern {
    position: absolute; inset: 0;
    opacity: 0.05;
    background-image: radial-gradient(circle at 2px 2px, #111827 1px, transparent 0);
    background-size: 40px 40px;
}
.home-hero-blur {
    position: absolute;
    width: 320px; height: 320px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.12;
}
.home-hero-blur.top-right { top: -80px; right: -80px; background: var(--color-primary); }
.home-hero-blur.bottom-left { bottom: -80px; left: -80px; background: #2563eb; }
.home-hero-inner {
    position: relative; z-index: 2;
    max-width: 1280px; margin: 0 auto;
    padding: 0 24px;
}
.home-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.home-hero-content { max-width: 600px; }
.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(227,6,19,0.1);
    border: 1px solid rgba(227,6,19,0.2);
    border-radius: 999px;
    margin-bottom: 24px;
}
.hero-badge span {
    color: var(--color-primary);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
}
.home-hero-title {
    font-family: var(--font-heading);
    font-size: 64px;
    font-weight: 800;
    color: #111827;
    line-height: 1.1;
    margin-bottom: 24px;
}
.home-hero-title-accent { color: var(--color-primary); }
.home-hero-desc {
    font-family: var(--font-body);
    font-size: 18px;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 32px;
}
.home-hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.home-hero-buttons .btn { gap: 8px; }
.home-hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.stat-card {
    background: #ffffff;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
    transition: background 0.3s, box-shadow 0.3s;
}
.stat-card:hover { background: #f9fafb; box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.stat-icon {
    width: 40px; height: 40px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 12px;
}
.stat-icon-blue { background: #eff6ff; color: #2563eb; }
.stat-icon-red { background: #fef2f2; color: var(--color-primary); }
.stat-icon-green { background: #f0fdf4; color: #16a34a; }
.stat-icon-purple { background: #f5f3ff; color: #7c3aed; }
.stat-value {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 4px;
}
.stat-label {
    font-family: var(--font-body);
    font-size: 14px;
    color: #6b7280;
}

/* ---------- Home Page Services ---------- */
.home-services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}
.home-service-card {
    background: #fff;
    border: 1px solid var(--color-gray-200);
    border-radius: 16px;
    padding: 32px;
    cursor: pointer;
    transition: all 0.3s;
}
.home-service-card:hover {
    border-color: rgba(227,6,19,0.3);
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}
.home-service-icon {
    width: 64px; height: 64px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 24px;
    transition: transform 0.3s;
}
.home-service-card:hover .home-service-icon { transform: scale(1.1); }
.home-service-icon-blue { background: #eff6ff; color: #2563eb; }
.home-service-icon-red { background: #fef2f2; color: var(--color-primary); }
.home-service-icon-purple { background: #f5f3ff; color: #7c3aed; }
.home-service-icon-green { background: #f0fdf4; color: #16a34a; }
.home-service-title {
    font-family: var(--font-body);
    font-size: 22px;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 12px;
}
.home-service-desc {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--color-gray-600);
    line-height: 1.6;
    margin-bottom: 16px;
}
.home-service-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--color-primary);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    transition: gap 0.3s;
}
.home-service-card:hover .home-service-link { gap: 10px; }

/* ---------- CTA Primary (Home page CTA) ---------- */
.section-cta-primary {
    background: linear-gradient(135deg, var(--color-primary), #c20511);
    position: relative;
    overflow: hidden;
}
.section-cta-pattern {
    position: absolute; inset: 0;
    opacity: 0.08;
    background-image: radial-gradient(circle at 2px 2px, #fff 1px, transparent 0);
    background-size: 40px 40px;
}
.section-cta-primary .cta-content {
    position: relative; z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}
.section-cta-primary .cta-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
}
.section-cta-primary .cta-desc {
    font-family: var(--font-body);
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 32px;
}
.section-cta-primary .cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.btn-cta-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--color-primary);
    color: #fff;
    border: none;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(227,6,19,0.3);
    transition: background 0.3s;
}
.btn-cta-phone:hover { background: var(--color-primary-dark); }

.section-cta-btn {
    text-align: center;
    margin-top: 48px;
}
.section-cta-btn .btn { display: inline-flex; gap: 8px; }

/* --- Address Field --- */
.venforms-address-fieldset {
    border: none;
    padding: 0;
    margin: 0;
}
.venforms-address-legend {
    font-weight: 600;
    font-size: 16px;
    color: var(--color-dark);
    margin-bottom: 16px;
    padding: 0;
}
.venforms-address-row {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
}
.venforms-address-row-half {
    display: flex;
    gap: 16px;
}
.venforms-address-full {
    flex: 1;
}
.venforms-address-half {
    flex: 1;
}
.venforms-address-sublabel {
    display: block;
    font-size: 12px;
    color: var(--color-gray-500);
    margin-top: 2px;
}
.venforms-address-fieldset .venforms-input,
.venforms-address-fieldset .venforms-select {
    width: 100%;
}

/* --- Content Field --- */
.venforms-content-field {
    margin-bottom: 24px;
}
.venforms-content-html h3,
.venforms-content-html h4,
.venforms-content-html h5 {
    margin: 16px 0 8px;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--color-dark);
}
.venforms-content-html h5 { font-size: 16px; }
.venforms-content-html ul,
.venforms-content-html ol {
    padding-left: 20px;
    margin: 8px 0;
    color: var(--color-body);
    font-size: 14px;
    line-height: 1.6;
}
.venforms-content-html ul { list-style: disc; }
.venforms-content-html li { margin-bottom: 4px; }
.venforms-content-html p { font-size: 15px; color: var(--color-body); line-height: 1.7; margin-bottom: 12px; }

/* --- Divider Field --- */
.venforms-divider-field {
    margin: 32px 0 24px;
}
.venforms-divider-line {
    border: none;
    border-top: 2px solid var(--color-gray-200);
    margin: 0 0 16px;
}
.venforms-divider-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    color: var(--color-dark);
    margin: 0;
}
.venforms-divider-desc {
    font-size: 14px;
    color: var(--color-body);
    margin: 4px 0 0;
}

/* ---------- Dark Mode Adjustments ---------- */
.bg-dark .section-title,
.bg-dark .section-desc { color: #fff; }
.bg-dark .section-desc { color: rgba(255,255,255,0.8); }
.bg-dark .section-label { color: var(--color-primary); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
    .page-form-section .container { max-width: 100%; }
    .page-form-section { padding: 32px 0 60px; }
    .venforms-container { padding: 16px !important; }
    .venforms-form { padding: 24px !important; }
    .venforms-field-group { padding: 20px !important; }
    .venforms-step-content.venforms-step-active.has-sidebar {
        grid-template-columns: 1fr !important;
    }
    .container { padding: 0 20px !important; }
    .section { padding: 48px 0; }
    .page-template-page-info .section > .container > div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
    }
    .page-template-page-info div[style*="padding:40px"][style*="border-radius:16px"]:not([style*="box-shadow"]) {
        padding: 24px !important;
    }
    .page-template-page-form .form-section.with-info {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
    }
    /* Detty December 900px */
    .dd-services-grid { grid-template-columns: repeat(2,1fr) !important; }
    .dd-plans-grid { grid-template-columns: repeat(2,1fr) !important; }
    .dd-features-grid { grid-template-columns: repeat(3,1fr) !important; }
    .dd-steps-grid { grid-template-columns: repeat(2,1fr) !important; gap: 24px !important; }
    .dd-steps-grid > div:last-child { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
    .hero { min-height: 60vh; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .booking-steps { flex-wrap: wrap; gap: 8px; justify-content: flex-start; }
    .booking-step:not(:last-child)::after { display: none; }
    .pricing-card.featured { transform: none; }
    .pricing-card.featured:hover { transform: translateY(-4px); }

    .home-hero { padding: 100px 0 60px; }
    .home-hero-grid { grid-template-columns: 1fr; gap: 32px; }
    .home-hero-title { font-size: 36px; }
    .home-hero-buttons { flex-direction: column; }
    .home-hero-buttons .btn { width: 100%; justify-content: center; }
    .home-hero-stats { grid-template-columns: 1fr 1fr; gap: 12px; }
    .stat-card { padding: 16px; }
    .stat-value { font-size: 24px; }
    .home-services-grid { grid-template-columns: 1fr; }
    .section-cta-primary .cta-title { font-size: 32px; }
    .section-cta-primary .cta-buttons { flex-direction: column; align-items: center; }
    .btn-cta-phone { width: 100%; justify-content: center; }

    .page-form-section { padding: 24px 0 48px; }
    .venforms-form { padding: 20px !important; }
    .venforms-container { padding: 12px !important; }
    .venforms-field-group { padding: 16px !important; border-radius: 12px; }
    .container { padding: 0 16px !important; }
    .section { padding: 40px 0; }
    .page-section { padding: 32px 0; }
    .hero { padding: 110px 0 40px; min-height: 50vh; }
    .hero-title { font-size: 28px; }
    .page-template-page-info section[style*="padding:64px"] { padding: 40px 0 !important; }
    .page-template-page-info div[style*="padding:20px"][style*="border-radius:16px"]:not([style*="box-shadow"]) { padding: 16px !important; }
    .page-template-page-form .form-section.with-info { gap: 24px !important; }

    /* Detty December */
    .page-template-page-detty-december .page-hero { padding: 110px 0 50px !important; }
    .page-template-page-detty-december .page-hero h1 { font-size: 36px !important; }
    .page-template-page-detty-december .page-hero p { font-size: 16px !important; }
    .dd-services-grid { grid-template-columns: repeat(2,1fr) !important; }
    .dd-plans-grid { grid-template-columns: 1fr !important; gap: 16px !important; }
    .dd-features-grid { grid-template-columns: repeat(3,1fr) !important; }
    .dd-steps-grid { grid-template-columns: repeat(2,1fr) !important; gap: 24px !important; }
    .dd-steps-grid > div:last-child { grid-column: 1 / -1; }
    .dd-plan-card { padding: 24px !important; }
    .dd-plan-price { font-size: 32px !important; }
    .dd-plan-features { line-height: 2 !important; }
    section.dd-section { padding: 48px 0 !important; }
    .section-header { margin-bottom: 32px !important; }
    .section-header h2 { font-size: 24px !important; }
    .page-template-page-detty-december h2[style*="font-size:32px"] { font-size: 24px !important; }

    /* Rx Delivery */
    .page-id-100 section[style*="padding:120px"] { padding: 80px 0 40px !important; }
    .page-id-100 h1 { font-size: 36px !important; }
    .page-id-100 section[style*="padding:80px"] { padding: 48px 0 !important; }
    .page-id-100 div[style*="grid-template-columns:repeat(5"] { grid-template-columns: repeat(3,1fr) !important; }
    .page-id-100 div[style*="grid-template-columns:repeat(4"] { grid-template-columns: repeat(2,1fr) !important; }
    .page-id-100 div[style*="grid-template-columns:1fr 1fr"][style*="gap:48px"] { grid-template-columns: 1fr !important; gap: 32px !important; }
    .page-id-100 div[style*="padding:40px"][style*="backdrop-filter"] { padding: 24px !important; }
    .page-id-100 h2[style*="font-size:36px"] { font-size: 28px !important; }
    .page-id-100 h2[style*="font-size:32px"] { font-size: 24px !important; }
    .page-id-100 h2[style*="font-size:28px"] { font-size: 22px !important; }
    .page-id-100 div[style*="font-size:36px"][style*="font-weight:800"] { font-size: 28px !important; }
    .page-id-100 a[style*="padding:20px 48px"] { padding: 16px 32px !important; font-size: 16px !important; }
}
@media (max-width: 480px) {
    .home-hero-stats { grid-template-columns: 1fr; }
    .page-form-section { padding: 16px 0 32px; }
    .venforms-form { padding: 16px !important; }
    .venforms-container { padding: 16px !important; border-radius: 10px; }
    .venforms-field-group { padding: 12px !important; border-radius: 8px; }
    .container { padding: 0 12px !important; }
    .section { padding: 32px 0; }
    .hero { padding: 90px 0 32px; min-height: 40vh; }
    .hero-title { font-size: 24px; }
    .page-template-page-info section[style*="padding:64px"] { padding: 24px 0 !important; }
    .page-template-page-info div[style*="padding:20px"][style*="border-radius:16px"]:not([style*="box-shadow"]) { padding: 12px !important; }
    .page-template-page-info div[style*="padding:16px"][style*="box-shadow"] { padding: 12px !important; }
    .page-template-page-form .form-section.with-info { gap: 16px !important; }
    .page-template-page-form div[style*="max-width:500px"] { padding: 0 8px !important; }
    .venforms-input, .venforms-textarea, .venforms-select { padding: 12px 14px !important; }

    /* Detty December 480px */
    .page-template-page-detty-december .page-hero { padding: 90px 0 32px !important; }
    .page-template-page-detty-december .page-hero h1 { font-size: 28px !important; }
    .page-template-page-detty-december .page-hero p { font-size: 15px !important; }
    .dd-services-grid { grid-template-columns: 1fr !important; }
    .dd-plans-grid { grid-template-columns: 1fr !important; gap: 12px !important; }
    .dd-features-grid { grid-template-columns: 1fr !important; }
    .dd-steps-grid { grid-template-columns: 1fr !important; gap: 20px !important; }
    .dd-steps-grid > div:last-child { grid-column: auto; }
    .dd-steps-grid div[style*="width:64px"] { width: 48px !important; height: 48px !important; font-size: 22px !important; }
    .dd-plan-card { padding: 20px !important; }
    .dd-plan-price { font-size: 28px !important; }
    section.dd-section { padding: 32px 0 !important; }
    .section-header { margin-bottom: 24px !important; }
    .section-header h2 { font-size: 20px !important; }
    .page-template-page-detty-december h2[style*="font-size:32px"] { font-size: 20px !important; }
    .page-template-page-detty-december a.btn { width: 100% !important; justify-content: center !important; }
    .page-template-page-detty-december div[style*="display:flex"][style*="gap:12px"][style*="justify-content:center"] {
        flex-direction: column !important;
        align-items: stretch !important;
    }
    .page-template-page-detty-december .home-service-card div[style*="display:flex"][style*="justify-content:space-between"] {
        flex-direction: column !important;
        gap: 8px !important;
        align-items: stretch !important;
    }
    .page-template-page-detty-december .home-service-card div[style*="display:flex"] a.btn {
        width: 100% !important;
        text-align: center !important;
    }
    /* Rx Delivery */
    .page-id-100 section[style*="padding:120px"] { padding: 90px 0 24px !important; }
    .page-id-100 h1 { font-size: 28px !important; }
    .page-id-100 section[style*="padding:80px"] { padding: 32px 0 !important; }
    .page-id-100 div[style*="grid-template-columns:repeat(5"] { grid-template-columns: 1fr !important; gap: 12px !important; }
    .page-id-100 div[style*="grid-template-columns:repeat(4"] { grid-template-columns: 1fr !important; gap: 12px !important; }
    .page-id-100 div[style*="grid-template-columns:1fr 1fr"][style*="gap:48px"] { gap: 20px !important; }
    .page-id-100 div[style*="padding:24px"][style*="border:2px"] { padding: 16px !important; }
    .page-id-100 div[style*="padding:32px"][style*="border:2px"] { padding: 20px !important; }
    .page-id-100 div[style*="padding:40px"][style*="backdrop-filter"] { padding: 20px !important; }
    .page-id-100 h2[style*="font-size:36px"] { font-size: 24px !important; }
    .page-id-100 h2[style*="font-size:32px"] { font-size: 20px !important; }
    .page-id-100 div[style*="font-size:36px"][style*="font-weight:800"] { font-size: 24px !important; }
    .page-id-100 a[style*="padding:20px 48px"] { padding: 14px 24px !important; font-size: 15px !important; width: 100% !important; justify-content: center !important; }
    .page-id-100 div[style*="width:56px"][style*="border-radius:12px"] { width: 44px !important; height: 44px !important; font-size: 20px !important; }
    .page-id-100 div[style*="width:64px"][style*="border-radius:12px"] { width: 48px !important; height: 48px !important; font-size: 22px !important; }
    .page-id-100 div[style*="grid-template-columns:1fr 1fr"][style*="gap:24px"] { grid-template-columns: 1fr !important; gap: 16px !important; }
    .page-id-100 div[style*="padding:40px"][style*="background:rgba"] { padding: 20px !important; }

    .venforms-card { min-height: 120px; padding: 12px !important; }
    .venforms-title { font-size: 22px; }
    .venforms-step-label-text { display: none; }
    .venforms-progress-step-label { font-size: 11px; }
    .venforms-price-total { font-size: 26px; }
    .venforms-nav-buttons { flex-direction: column; gap: 8px; }
    .venforms-nav-buttons .btn { width: 100%; }
    .venforms-payment-gateway { grid-template-columns: 1fr; }
    .affwp-stats-grid { grid-template-columns: 1fr; gap: 10px; }
    .affwp-mini-stats { grid-template-columns: 1fr; gap: 10px; }
    .affwp-payout-summary { grid-template-columns: 1fr; gap: 10px; }
    /* New pages responsive */
    .page-template-page-rccg-convention .hero,
    .page-template-page-vip-corporate-travel .hero { padding: 80px 0 40px; min-height: 40vh; }
    .page-template-page-rccg-convention .hero-title,
    .page-template-page-vip-corporate-travel .hero-title { font-size: 28px; }
    .page-template-page-rccg-convention .section > .container > div[style*="grid-template-columns"],
    .page-template-page-vip-corporate-travel .section > .container > div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important; gap: 20px !important;
    }
}

/* ===========================
   AffiliateWP Dashboard
   =========================== */
#affwp-affiliate-dashboard {
    font-family: 'Inter', sans-serif;
    padding: 0 0 40px;
}
#affwp-affiliate-dashboard a { color: var(--color-primary); text-decoration: none; }
#affwp-affiliate-dashboard a:hover { color: var(--color-primary-dark); }

/* Stats Grid */
.affwp-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}
.affwp-stat-card {
    background: #fff;
    border: 1px solid var(--color-gray-200);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: box-shadow 0.2s, transform 0.2s;
}
.affwp-stat-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    transform: translateY(-2px);
}
.affwp-stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--color-primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}
.affwp-stat-body { flex: 1; min-width: 0; }
.affwp-stat-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--color-gray-400);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}
.affwp-stat-value {
    font-size: 24px;
    font-weight: 800;
    color: var(--color-dark);
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.2;
}

/* Tab Navigation */
.affwp-tabs-nav { margin-bottom: 32px; }
.affwp-tabs {
    display: flex;
    gap: 4px;
    list-style: none;
    padding: 4px;
    margin: 0;
    background: var(--color-gray-100);
    border-radius: 12px;
    overflow-x: auto;
}
.affwp-tab-item { margin: 0; flex-shrink: 0; }
.affwp-tab-item a {
    display: block;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-gray-400);
    border-radius: 8px;
    transition: all 0.2s;
    white-space: nowrap;
}
.affwp-tab-item a:hover { color: var(--color-dark); background: rgba(0,0,0,0.04); }
.affwp-tab-item.active a {
    background: #fff;
    color: var(--color-primary);
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.affwp-tab-item-logout { margin-left: auto; }
.affwp-tab-item-logout a { color: var(--color-gray-300); font-weight: 500; }

/* Tab Content */
.affwp-tab-content-wrap { min-height: 200px; }
.affwp-tab-content { margin-bottom: 0; }

/* Tables - shared */
#affwp-affiliate-dashboard table.affwp-table,
#affwp-affiliate-dashboard table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    margin-bottom: 24px;
}
#affwp-affiliate-dashboard table th,
#affwp-affiliate-dashboard table thead th {
    background: var(--color-gray-50);
    padding: 14px 20px;
    font-size: 11px;
    font-weight: 700;
    color: var(--color-gray-400);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    text-align: left;
    border: none;
    border-bottom: 1px solid var(--color-gray-200);
}
#affwp-affiliate-dashboard table td {
    padding: 14px 20px;
    font-size: 14px;
    color: var(--color-dark);
    border: none;
    border-bottom: 1px solid var(--color-gray-100);
}
#affwp-affiliate-dashboard table tr:last-child td { border-bottom: none; }
#affwp-affiliate-dashboard table tr:hover td { background: var(--color-gray-50); }

/* Badge system */
.affwp-badge,
#affwp-affiliate-dashboard .affwp-referral-status {
    display: inline-block;
    padding: 3px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
}
.affwp-badge--paid,
#affwp-affiliate-dashboard .affwp-referral-status.paid { background: #d1fae5; color: #065f46; }
.affwp-badge--unpaid,
#affwp-affiliate-dashboard .affwp-referral-status.unpaid { background: #fef3c7; color: #92400e; }
.affwp-badge--rejected,
#affwp-affiliate-dashboard .affwp-referral-status.rejected { background: #fee2e2; color: #991b1b; }
.affwp-badge--pending,
#affwp-affiliate-dashboard .affwp-referral-status.pending { background: #dbeafe; color: #1e40af; }
.affwp-badge--processing { background: #e0e7ff; color: #3730a3; }

/* Payout Summary */
.affwp-payout-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}
.affwp-payout-summary__stat {
    background: #fff;
    border: 1px solid var(--color-gray-200);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}
.affwp-payout-summary__label {
    font-size: 12px;
    font-weight: 600;
    color: var(--color-gray-400);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}
.affwp-payout-summary__value {
    font-size: 22px;
    font-weight: 800;
    color: var(--color-dark);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Graph */
#affwp-affiliate-dashboard .affwp-graph {
    background: #fff;
    border: 1px solid var(--color-gray-200);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
}
#affwp-affiliate-dashboard .affwp-graph .tablenav { margin-bottom: 16px; }

/* "No data" rows */
.affwp-table-no-data {
    text-align: center;
    color: var(--color-gray-400) !important;
    font-style: italic;
    padding: 32px 20px !important;
}

/* Pagination */
.affwp-pagination,
#affwp-affiliate-dashboard .affwp-pagination {
    display: flex;
    gap: 4px;
    justify-content: center;
    margin: 24px 0;
    list-style: none;
    padding: 0;
}
.affwp-pagination a,
.affwp-pagination span,
#affwp-affiliate-dashboard .affwp-pagination a,
#affwp-affiliate-dashboard .affwp-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 12px;
    border: 1px solid var(--color-gray-200);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    color: var(--color-dark);
    transition: all 0.2s;
}
.affwp-pagination a:hover,
#affwp-affiliate-dashboard .affwp-pagination a:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}
.affwp-pagination span.current,
#affwp-affiliate-dashboard .affwp-pagination span.current {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
}

/* URL generator */
#affwp-affiliate-dashboard .affwp-affiliate-link {
    background: #fff;
    border: 1px solid var(--color-gray-200);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
}
#affwp-affiliate-dashboard .affwp-affiliate-link label {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 8px;
    display: block;
}
#affwp-affiliate-dashboard .affwp-affiliate-link input[type="text"],
#affwp-affiliate-dashboard .affwp-affiliate-link input[type="url"],
#affwp-affiliate-dashboard .affwp-affiliate-link select {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--color-gray-200);
    border-radius: 8px;
    font-size: 14px;
    color: var(--color-dark);
    margin-bottom: 12px;
}
#affwp-affiliate-dashboard .affwp-affiliate-link input:focus,
#affwp-affiliate-dashboard .affwp-affiliate-link select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(227,6,19,0.1);
}
#affwp-affiliate-dashboard .affwp-affiliate-link .affwp-copy-button {
    background: var(--color-primary);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
#affwp-affiliate-dashboard .affwp-affiliate-link .affwp-copy-button:hover {
    background: var(--color-primary-dark);
}

/* Forms within dashboard */
#affwp-affiliate-dashboard .affwp-form {
    background: #fff;
    border: 1px solid var(--color-gray-200);
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 24px;
}
#affwp-affiliate-dashboard .affwp-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 6px;
}
#affwp-affiliate-dashboard .affwp-form input[type="text"],
#affwp-affiliate-dashboard .affwp-form input[type="email"],
#affwp-affiliate-dashboard .affwp-form input[type="url"],
#affwp-affiliate-dashboard .affwp-form input[type="password"],
#affwp-affiliate-dashboard .affwp-form select,
#affwp-affiliate-dashboard .affwp-form textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--color-gray-200);
    border-radius: 8px;
    font-size: 14px;
    color: var(--color-dark);
    background: #fff;
    transition: border-color 0.2s;
    margin-bottom: 16px;
}
#affwp-affiliate-dashboard .affwp-form input:focus,
#affwp-affiliate-dashboard .affwp-form select:focus,
#affwp-affiliate-dashboard .affwp-form textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(227,6,19,0.1);
}
#affwp-affiliate-dashboard .affwp-form input[type="submit"],
#affwp-affiliate-dashboard .affwp-form button[type="submit"] {
    background: var(--color-primary);
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
#affwp-affiliate-dashboard .affwp-form input[type="submit"]:hover,
#affwp-affiliate-dashboard .affwp-form button[type="submit"]:hover {
    background: var(--color-primary-dark);
}

/* Notices within dashboard */
#affwp-affiliate-dashboard .affwp-notice {
    padding: 16px 20px;
    border-radius: 12px;
    font-size: 14px;
    margin-bottom: 24px;
    border: 1px solid;
}
#affwp-affiliate-dashboard .affwp-notice-success { background: #d1fae5; color: #065f46; border-color: #a7f3d0; }
#affwp-affiliate-dashboard .affwp-notice-info { background: #dbeafe; color: #1e40af; border-color: #bfdbfe; }
#affwp-affiliate-dashboard .affwp-notice-warning { background: #fef3c7; color: #92400e; border-color: #fde68a; }
#affwp-affiliate-dashboard .affwp-notice-error { background: #fee2e2; color: #991b1b; border-color: #fecaca; }

/* Affiliate registration / login forms (standalone) */
.affwp-form {
    max-width: 480px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid var(--color-gray-200);
    border-radius: 12px;
    padding: 32px;
}
.affwp-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 6px;
}
.affwp-form input[type="text"],
.affwp-form input[type="email"],
.affwp-form input[type="url"],
.affwp-form input[type="password"],
.affwp-form select,
.affwp-form textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--color-gray-200);
    border-radius: 8px;
    font-size: 14px;
    color: var(--color-dark);
    transition: border-color 0.2s;
    margin-bottom: 16px;
}
.affwp-form input:focus,
.affwp-form select:focus,
.affwp-form textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(227,6,19,0.1);
}
.affwp-form input[type="submit"],
.affwp-form button[type="submit"] {
    background: var(--color-primary);
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    width: 100%;
}
.affwp-form input[type="submit"]:hover,
.affwp-form button[type="submit"]:hover {
    background: var(--color-primary-dark);
}
.affwp-form .affwp-errors { color: var(--color-primary); font-size: 13px; margin-bottom: 12px; }
.affwp-form .affwp-notice { color: #065f46; background: #d1fae5; padding: 12px; border-radius: 8px; font-size: 13px; margin-bottom: 12px; }
.affwp-form .affwp-send-to-customer { display: none; }
.affwp-form fieldset { border: none; padding: 0; margin: 0; }
.affwp-form legend {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 20px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Unauthorized message (standalone pages) */
.affwp-notice {
    text-align: center;
    padding: 40px;
    background: #fff;
    border: 1px solid var(--color-gray-200);
    border-radius: 12px;
    font-size: 15px;
    color: var(--color-body);
    max-width: 480px;
    margin: 0 auto;
}

/* AffiliateWP Card component */
.affwp-card {
    background: #fff;
    border: 1px solid var(--color-gray-200);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 24px;
}
.affwp-card__header {
    padding: 24px 28px 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}
.affwp-card__header h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-dark);
    font-family: 'Plus Jakarta Sans', sans-serif;
    margin: 0 0 6px;
}
.affwp-card__header p {
    font-size: 14px;
    color: var(--color-gray-400);
    margin: 0;
    line-height: 1.5;
}
.affwp-card__content {
    padding: 20px 28px;
}
.affwp-card__content--form > div {
    margin-bottom: 16px;
}
.affwp-card__content label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 6px;
}
.affwp-card__content input[type="url"],
.affwp-card__content input[type="text"] {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--color-gray-200);
    border-radius: 10px;
    font-size: 14px;
    color: var(--color-dark);
    background: var(--color-gray-50);
    transition: all 0.2s;
}
.affwp-card__content input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(227,6,19,0.1);
    background: #fff;
}
.affwp-card__footer {
    padding: 0 28px 24px;
}

/* Custom Link Generator */
#affwp-custom-link-generator .affwp-generator-campaign-text-link-wrap {
    margin-bottom: 0;
}
#affwp-generator-toggle-campaign {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: none;
}
#affwp-generator-toggle-campaign:hover { color: var(--color-primary-dark); }
#affwp-generator-submit-btn {
    background: var(--color-primary);
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
#affwp-generator-submit-btn:hover { background: var(--color-primary-dark); }

/* Custom Links Table */
#affwp-custom-links-table { margin-top: 8px; }
#affwp-custom-links-table th[data-custom-link],
#affwp-custom-links-table th[data-date-created] {
    font-size: 11px;
    font-weight: 700;
    color: var(--color-gray-400);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 14px 20px;
    background: var(--color-gray-50);
    border-bottom: 1px solid var(--color-gray-200);
    text-align: left;
}
#affwp-custom-links-table td[data-field="link"],
#affwp-custom-links-table td[data-field="date_created"] {
    padding: 14px 20px;
    font-size: 14px;
    color: var(--color-dark);
    border-bottom: 1px solid var(--color-gray-100);
}
#affwp-custom-links-table tr:last-child td { border-bottom: none; }
#affwp-custom-links-table tr:hover td { background: var(--color-gray-50); }

.affwp-custom-link-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.affwp-custom-link {
    font-family: 'Inter', monospace;
    font-size: 13px;
    color: var(--color-primary);
    word-break: break-all;
    flex: 1;
    min-width: 0;
}
.affwp-custom-link-actions {
    display: flex;
    gap: 4px;
    flex-shrink: 0;
}
.affwp-custom-link-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid var(--color-gray-200);
    background: #fff;
    cursor: pointer;
    transition: all 0.2s;
    color: var(--color-gray-400);
}
.affwp-custom-link-action:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background: var(--color-primary-light);
}
.affwp-custom-link-action svg { display: block; }
.affwp-card__tooltip {
    color: var(--color-gray-300);
    cursor: help;
    flex-shrink: 0;
}
.affwp-card__tooltip svg { width: 20px; height: 20px; }
.affwp-card__tooltip:hover { color: var(--color-gray-400); }
.affwp-affiliate-link__info { color: var(--color-primary); font-weight: 600; }

/* Affiliate Link display */
.affwp-affiliate-link__display {
    display: flex;
    gap: 10px;
    align-items: stretch;
}
.affwp-affiliate-link__input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--color-gray-200);
    border-radius: 10px;
    font-size: 14px;
    color: var(--color-dark);
    background: var(--color-gray-50);
    font-family: 'Inter', monospace;
    min-width: 0;
}
.affwp-affiliate-link__input:focus {
    outline: none;
    border-color: var(--color-primary);
    background: #fff;
}
.affwp-affiliate-link-copy-link {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--color-primary);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
    text-decoration: none;
    line-height: 1.4;
    box-shadow: 0 2px 8px rgba(227,6,19,0.15);
}
.affwp-affiliate-link-copy-link:hover {
    background: var(--color-primary-dark);
    color: #fff;
    box-shadow: 0 4px 16px rgba(227,6,19,0.25);
    transform: translateY(-1px);
}
.affwp-affiliate-link-copy-link:active {
    transform: translateY(0);
    box-shadow: 0 1px 4px rgba(227,6,19,0.15);
}

/* Link Sharing */
.affwp-link-sharing {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--color-gray-100);
}
.affwp-link-sharing__text {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-gray-400);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}
.affwp-link-sharing__options {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}
.affwp-link-sharing__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid var(--color-gray-200);
    background: #fff;
    transition: all 0.2s;
    cursor: pointer;
}
.affwp-link-sharing__icon:hover {
    border-color: var(--color-gray-300);
    background: var(--color-gray-50);
    transform: translateY(-1px);
}
.affwp-link-sharing__icon svg {
    width: 18px;
    height: 18px;
    display: block;
}
.affwp-link-sharing__icon path { transition: fill 0.2s; }
.affwp-link-sharing__x:hover { border-color: #000; }
.affwp-link-sharing__facebook:hover { border-color: #0866FF; }
.affwp-link-sharing__linkedin:hover { border-color: #0077B5; }
.affwp-link-sharing__email:hover { border-color: var(--color-primary); }

/* "Use link with custom slug" */
.affwp-affiliate-link__toggle {
    display: inline-block;
    margin-top: 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: none;
}
.affwp-affiliate-link__toggle:hover {
    color: var(--color-primary-dark);
    text-decoration: underline;
}

/* Mini Stats (Statistics tab) */
.affwp-mini-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin-bottom: 32px;
}
.affwp-mini-stat {
    background: #fff;
    border: 1px solid var(--color-gray-200);
    border-radius: 14px;
    padding: 20px;
    text-align: center;
}
.affwp-mini-stat-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--color-gray-400);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}
.affwp-mini-stat-value {
    font-size: 22px;
    font-weight: 800;
    color: var(--color-dark);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* H4 headings in tab content */
#affwp-affiliate-dashboard h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-dark);
    font-family: 'Plus Jakarta Sans', sans-serif;
    margin: 0 0 24px;
}

/* Graph Tab */
.affwp-graph {
    background: #fff;
    border: 1px solid var(--color-gray-200);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
    position: relative;
}
.affwp-graph .tablenav.top {
    margin-bottom: 16px;
}
.affwp-graph .tablenav {
    background: var(--color-gray-50);
    border: 1px solid var(--color-gray-200);
    border-radius: 10px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.affwp-graph .tablenav select {
    padding: 8px 12px;
    border: 1px solid var(--color-gray-200);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--color-dark);
    background: #fff;
}
.affwp-graph .tablenav .button {
    background: var(--color-primary);
    color: #fff;
    border: none;
    padding: 8px 20px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}
.affwp-graph .tablenav .button:hover {
    background: var(--color-primary-dark);
}
.affwp-graph .tablenav input[type="text"] {
    padding: 8px 12px;
    border: 1px solid var(--color-gray-200);
    border-radius: 8px;
    font-size: 13px;
    width: 140px;
}
.affwp-graph .tablenav input[type="text"]:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(227,6,19,0.1);
}
#affwp-date-range-options { display: none; }

/* Booking form top spacing */
.page-id-259 .venforms-form { margin-top: 24px; }

/* Hidden utility */
.affwp-hidden { display: none; }

/* Responsive */
@media (max-width: 768px) {
    .affwp-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .affwp-stat-card { padding: 16px; }
    .affwp-stat-value { font-size: 20px; }
    .affwp-tabs { flex-wrap: nowrap; }
    #affwp-affiliate-dashboard table th,
    #affwp-affiliate-dashboard table td { padding: 10px 14px; }
}
@media (max-width: 480px) {
    .affwp-stats-grid { grid-template-columns: 1fr; }
}
