/* ============================================
   PUPS BE HAVEN - FIXED MASTER CSS
   Version: 2.0 - Mobile Scroll Fix
   
   INSTRUCTIONS FOR WORDPRESS/ELEMENTOR:
   1. Go to WordPress Admin > Appearance > Customize > Additional CSS
   2. Delete your old CSS and paste this entire file
   OR
   1. Upload this file to your theme folder
   2. Link it in your header
   ============================================ */

/* ============================================
   GOOGLE FONTS
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Alfa+Slab+One&family=Poppins:wght@400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Alfa+Slab+One&family=Poppins:wght@400;500;600;700;800;900&display=swap');
.alfa-slab-one-regular {
  font-family: "Alfa Slab One", serif;
  font-weight: 400;
  font-style: normal;
}


/* ============================================
   CSS VARIABLES - BRAND COLORS
   ============================================ */
:root {
    /* Brand Colors */
    --brand-red: #C41E3A;
    --brand-red-dark: #A01730;
    --brand-red-bright: #E6004C;
    --cream: #E8D5C6;
    --brand-black: #050509;
    --brand-charcoal: #101018;
    --dark-burgundy: #261319;
    
    /* Spacing System */
    --spacing-xs: 8px;
    --spacing-sm: 12px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
    --spacing-2xl: 48px;
    --spacing-3xl: 64px;
    --spacing-4xl: 80px;
    
    /* Shadows */
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.6);
    --shadow-lg: 0 18px 38px rgba(0, 0, 0, 0.85);
    --shadow-xl: 0 25px 60px rgba(0, 0, 0, 0.95), 0 0 50px rgba(196, 30, 58, 0.7);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-full: 9999px;
}

/* ============================================
   CRITICAL FIX: MOBILE SCROLL & OVERFLOW
   This was the ROOT CAUSE of your issues
   ============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    overflow-y: auto;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--brand-black);
    color: var(--cream)!important;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch; /* CRITICAL for iOS scroll */
    position: relative;
    width: 100%;
    max-width: 100vw;
}

/* Radial Gradient Background - Fixed Position */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    background: 
        radial-gradient(circle at top left, rgba(196, 30, 58, 0.15), transparent 60%),
        radial-gradient(circle at bottom right, rgba(196, 30, 58, 0.10), transparent 55%);
    z-index: 0;
}

/* Ensure content stays above background */
body > * {
    position: relative;
    z-index: 1;
}

/* ============================================
   PREVENT HORIZONTAL OVERFLOW ON ALL ELEMENTS
   ============================================ */
section,
div,
article,
main,
aside,
header,
footer,
nav {
    max-width: 100%;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

/* ============================================
   TYPOGRAPHY SYSTEM
   ============================================ */

/* Display Heading - Alfa Slab One */
.heading-display {
    font-family: 'Alfa Slab One', serif;
    font-weight: 400;
    color: var(--cream)!important;
    line-height: 1.1;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

/* Section Heading */
.heading-section {
    font-family: 'Alfa Slab One', serif;
    font-weight: 400;
    color: var(--cream)!important;
    line-height: 1.2;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

/* Subsection Heading */
.heading-sub {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--cream)!important;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Text Sizes */
.text-large {
    font-size: 1.25rem;
    line-height: 1.6;
}

.text-body {
    font-size: 1rem;
    line-height: 1.6;
}

.text-small {
    font-size: 0.875rem;
    line-height: 1.5;
}

.text-cream { color: var(--cream) !important;}
.text-red { color: var(--brand-red) !important;}
.text-center { text-align: center; }

/* ============================================
   LAYOUT CONTAINERS
   ============================================ */
.container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;
    width: 100%;
    overflow-x: hidden;
}

.container-narrow {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;
    width: 100%;
    overflow-x: hidden;
}

/* Spacing Utilities */
.px-sm { padding-left: var(--spacing-sm); padding-right: var(--spacing-sm); }
.px-md { padding-left: var(--spacing-md); padding-right: var(--spacing-md); }
.px-lg { padding-left: var(--spacing-lg); padding-right: var(--spacing-lg); }

.py-sm { padding-top: var(--spacing-sm); padding-bottom: var(--spacing-sm); }
.py-md { padding-top: var(--spacing-md); padding-bottom: var(--spacing-md); }
.py-lg { padding-top: var(--spacing-lg); padding-bottom: var(--spacing-lg); }
.py-xl { padding-top: var(--spacing-xl); padding-bottom: var(--spacing-xl); }
.py-2xl { padding-top: var(--spacing-2xl); padding-bottom: var(--spacing-2xl); }
.py-3xl { padding-top: var(--spacing-3xl); padding-bottom: var(--spacing-3xl); }

.mb-sm { margin-bottom: var(--spacing-sm); }
.mb-md { margin-bottom: var(--spacing-md); }
.mb-lg { margin-bottom: var(--spacing-lg); }
.mb-xl { margin-bottom: var(--spacing-xl); }
.mb-2xl { margin-bottom: var(--spacing-2xl); }

.mt-sm { margin-top: var(--spacing-sm); }
.mt-md { margin-top: var(--spacing-md); }
.mt-lg { margin-top: var(--spacing-lg); }
.mt-xl { margin-top: var(--spacing-xl); }

/* ============================================
   GRID SYSTEM - FIXED FOR MOBILE
   ============================================ */
.grid {
    display: grid;
    gap: 24px;
    width: 100%;
}

.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
.grid-cols-5 { grid-template-columns: repeat(5, 1fr); }

.gap-sm { gap: var(--spacing-sm); }
.gap-md { gap: var(--spacing-md); }
.gap-lg { gap: var(--spacing-lg); }
.gap-xl { gap: var(--spacing-xl); }

/* ============================================
   BUTTONS - CLICKABLE & INTERACTIVE
   ============================================ */
.btn-primary {
    display: inline-block;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--brand-red) 0%, var(--brand-red-dark) 100%);
    color: white;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    box-shadow: 0 8px 24px rgba(196, 30, 58, 0.4);
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.btn-primary:hover,
.btn-primary:active {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(196, 30, 58, 0.6);
}

.btn-secondary {
    display: inline-block;
    padding: 16px 32px;
    background: transparent;
    color: var(--cream)!important;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 2px solid var(--cream);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.btn-secondary:hover,
.btn-secondary:active {
    background: var(--cream);
    color: var(--brand-black);
    transform: translateY(-2px);
}

/* ============================================
   CARD COMPONENTS
   ============================================ */
.card-dark {
    background: linear-gradient(135deg, rgba(16, 16, 24, 0.8) 0%, rgba(5, 5, 9, 0.9) 100%);
    border: 1px solid rgba(196, 30, 58, 0.3);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(10px);
    width: 100%;
    max-width: 100%;
}

.card-cream {
    background: var(--cream);
    border: 3px solid var(--brand-red-dark);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-md);
    width: 100%;
    max-width: 100%;
}

.card-gradient {
    background: linear-gradient(135deg, var(--brand-red) 0%, var(--brand-red-dark) 100%);
    border: 4px solid var(--cream);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9), 0 0 40px rgba(196, 30, 58, 0.5);
    width: 100%;
    max-width: 100%;
}

/* Card Heading Overrides - NO text-stroke inside cards */
.card-cream h3,
.card-cream h4 {
    color: var(--brand-red) !important;
    -webkit-text-fill-color: var(--brand-red) !important;
    -webkit-text-stroke: 0 !important;
    text-shadow: none !important;
    font-family: 'Alfa Slab One', serif;
    font-weight: 700;
    text-transform: uppercase;
}

.card-gradient h3,
.card-gradient h4 {
    color: var(--cream) !important;
    -webkit-text-fill-color: var(--cream) !important;
    -webkit-text-stroke: 0 !important;
    text-shadow: none !important;
    font-family: 'Alfa Slab One', serif;
    font-weight: 700;
    text-transform: uppercase;
}

/* ============================================
   TRUST BADGES
   ============================================ */
.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.trust-badge-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--brand-red) 0%, var(--brand-red-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(196, 30, 58, 0.4);
}

/* ============================================
   TESTIMONIAL CARDS
   ============================================ */
.testimonial-card {
    background: linear-gradient(135deg, rgba(16, 16, 24, 0.8) 0%, rgba(5, 5, 9, 0.9) 100%);
    border: 1px solid rgba(196, 30, 58, 0.3);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(10px);
}

.testimonial-quote {
    color: var(--cream);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.testimonial-author {
    border-top: 2px solid rgba(196, 30, 58, 0.3);
    padding-top: 16px;
    margin-top: 16px;
}

.testimonial-name {
    color: var(--brand-red);
    font-weight: 700;
    margin-bottom: 4px;
}

.testimonial-title {
    color: rgba(232, 213, 198, 0.7);
    font-size: 0.875rem;
}

/* ============================================
   STEP CARDS
   ============================================ */
.step-card {
    background: linear-gradient(135deg, rgba(16, 16, 24, 0.8) 0%, rgba(5, 5, 9, 0.9) 100%);
    border: 1px solid rgba(196, 30, 58, 0.3);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(10px);
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--brand-red) 0%, var(--brand-red-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Alfa Slab One', serif;
    font-size: 2rem;
    color: var(--cream)!important; 
}

    

.step-card .step-title,
.step-card h3.step-title,
h3.step-title {
    font-family: 'Alfa Slab One', serif !important;
    font-weight: 400 !important;
    font-size: 1.25rem !important;
    color: var(--cream) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    margin-bottom: 12px !important;
    -webkit-text-stroke: 0 !important;
    text-shadow: 0 2px 6px rgba(0,0,0,0.85), 0 0 20px rgba(160,23,48,0.4) !important;
    font-style: normal !important;
    text-decoration: none !important;
}
.step-description {
    color: rgba(232, 213, 198, 0.9);
    line-height: 1.6;
}
.step-title {
    font-family: 'Alfa Slab One', serif;
    font-weight: 400;
    font-size: 1.25rem;
    color: var(--cream) !important;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
    -webkit-text-stroke: 0 !important;
    text-shadow: 0 2px 6px rgba(0,0,0,0.85), 0 0 20px rgba(160,23,48,0.4);
    font-style: normal !important;
    text-decoration: none !important;
}

/* ============================================
   FAQ ACCORDION - CLICKABLE FIX
   ============================================ */
.pb-faq-item {
    margin-bottom: 16px;
    border-radius: 12px;
    overflow: hidden;
}

.pb-faq-question {
    width: 100%;
    background: linear-gradient(135deg, #1a0e12 0%, #2d1319 100%);
    border: 2px solid var(--brand-red);
    padding: 24px 28px;
    cursor: pointer;
    font-family: 'Alfa Slab One', serif;
    font-size: 1.125rem;
    color: var(--cream)!important;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    list-style: none;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.pb-faq-question::-webkit-details-marker {
    display: none;
}

.pb-faq-question:hover {
    background: linear-gradient(135deg, #2d1319 0%, #3d1a22 100%);
}

.pb-faq-answer {
    padding: 0 28px 24px 28px;
    color: var(--cream)!important;
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 600;
    background: linear-gradient(135deg, #1a0e12 0%, #2d1319 100%);
}

/* ============================================
   FORMS - VISIBLE & FUNCTIONAL
   ============================================ */
.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    color: var(--cream);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.8;
}

.form-label-required::after {
    content: ' *';
    color: var(--brand-red);
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 18px 20px;
    background: rgba(5, 5, 9, 0.9);
    border: 2px solid rgba(196, 30, 58, 0.5);
    border-radius: var(--radius-sm);
    color: var(--cream)!important;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    min-height: 55px;
    -webkit-appearance: none;
    appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--brand-red);
    background: rgba(5, 5, 9, 1);
    box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.2);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(232, 213, 198, 0.4);
}

.form-textarea {
    resize: vertical;
    min-height: 150px;
    line-height: 1.6;
}

.form-submit {
    width: 100%;
    padding: 18px 32px;
    background: linear-gradient(135deg, var(--brand-red) 0%, var(--brand-red-dark) 100%);
    color: white;
    font-weight: 700;
    font-size: 1.125rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 3px solid var(--cream);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(196, 30, 58, 0.4);
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.form-submit:hover,
.form-submit:active {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(196, 30, 58, 0.6);
}
.form-label {
    color: var(--cream) !important;
}
label.form-label,
.card-dark label,
.card-dark .form-label,
form label {
    color: var(--cream) !important;
    font-style: normal !important;
    text-decoration: none !important;
    opacity: 1 !important;
}
/* ============================================
   HEADER / NAVIGATION - CLICKABLE LINKS FIX
   ============================================ */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(5, 5, 9, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(232, 213, 198, 0.1);
    width: 100%;
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 16px;
    padding-right: 16px;
}

.logo {
    font-family: 'Alfa Slab One', serif;
    font-size: 1.5rem;
    color: var(--cream);
    text-decoration: none;
    z-index: 1001;
    position: relative;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.logo span {
    color: var(--brand-red);
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.nav-links li {
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: var(--cream);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 10px 15px;
    display: inline-block;
    transition: color 0.3s ease;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    position: relative;
    z-index: 1002;
}

.nav-links a:hover,
.nav-links a:active {
    color: var(--brand-red);
}

/* ============================================
   FOOTER - CLICKABLE LINKS
   ============================================ */
footer {
    background: #020204;
    padding: 60px 0 32px;
    border-top: 1px solid rgba(232, 213, 198, 0.1);
    width: 100%;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 16px;
}

.footer-brand p {
    opacity: 0.7;
    margin-top: 16px;
    font-size: 0.95rem;
}

.footer-links h4 {
    color: var(--cream);
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-family: 'Alfa Slab One', serif;
    font-weight: 400;
}

.footer-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--cream);
    text-decoration: none;
    opacity: 0.7;
    transition: all 0.3s ease;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    display: inline-block;
    padding: 5px 0;
}

.footer-links a:hover,
.footer-links a:active {
    opacity: 1;
    color: var(--brand-red);
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(232, 213, 198, 0.1);
    opacity: 0.6;
    font-size: 0.875rem;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 16px;
    padding-right: 16px;
}

/* ============================================
   DIVIDER
   ============================================ */
.pb-divider {
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--brand-red) 20%, var(--brand-red) 80%, transparent 100%);
    margin: 60px 0;
    border: none;
    box-shadow: 0 0 15px rgba(196, 30, 58, 0.4);
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
:focus-visible {
    outline: 2px solid var(--brand-red);
    outline-offset: 2px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

/* ============================================
   TABLET RESPONSIVE - 1024px and below
   ============================================ */
@media (max-width: 1024px) {
    .grid-cols-4,
    .grid-cols-5 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .container,
    .container-narrow {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ============================================
   MOBILE RESPONSIVE - 768px and below
   THIS IS THE CRITICAL FIX FOR YOUR ISSUES
   ============================================ */
@media (max-width: 768px) {
    /* FORCE ALL GRIDS TO SINGLE COLUMN */
    .grid,
    .grid-cols-2,
    .grid-cols-3,
    .grid-cols-4,
    .grid-cols-5,
    [class*="grid-cols-"] {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    /* HEADINGS - Scale down for mobile */
    h1, .heading-display {
        font-size: 1.75rem !important;
        line-height: 1.2 !important;
        -webkit-text-stroke: 1px var(--brand-red) !important;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    h2, .heading-section {
        font-size: 1.5rem !important;
        line-height: 1.3 !important;
        -webkit-text-stroke: 1px var(--brand-red) !important;
    }
    
    h3, .heading-sub {
        font-size: 1.25rem !important;
        line-height: 1.4 !important;
        -webkit-text-stroke: 0.5px var(--brand-red) !important;
    }
    
    /* CONTAINERS - Proper mobile padding */
    .container,
    .container-narrow {
        padding-left: 16px !important;
        padding-right: 16px !important;
        max-width: 100% !important;
        width: 100% !important;
    }
    
    /* SECTIONS - Reduce padding */
    .py-3xl {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }
    
    .py-2xl {
        padding-top: 32px !important;
        padding-bottom: 32px !important;
    }
    
    /* CARDS - Full width, no transforms */
    .card-dark,
    .card-cream,
    .card-gradient,
    .testimonial-card,
    .step-card {
        width: 100% !important;
        max-width: 100% !important;
        padding: 24px 16px !important;
        margin-bottom: 20px !important;
        transform: none !important;
    }
    
    /* BUTTONS - Full width for easy tapping */
    .btn-primary,
    .btn-secondary,
    .form-submit {
        width: 100% !important;
        display: block !important;
        text-align: center;
        padding: 16px 20px !important;
        font-size: 1rem !important;
        min-height: 50px;
    }
    
    /* NAVIGATION - Hide links, show hamburger */
    .nav-links {
        display: none !important;
    }
    
    /* FOOTER - Single column */
    .footer-grid {
        grid-template-columns: 1fr !important;
        text-align: center;
        gap: 32px !important;
    }
    
    /* TRUST BADGES - 2 columns on mobile */
    section[style*="background: #E8D5C6"] .grid-cols-5 {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    /* STEP NUMBER - Smaller on mobile */
    .step-number {
        width: 60px !important;
        height: 60px !important;
        font-size: 1.5rem !important;
    }
    
    /* IMAGES - Constrain properly */
    img {
        max-width: 100% !important;
        height: auto !important;
    }
    
    /* FORM INPUTS - Larger for touch */
    .form-input,
    .form-select,
    .form-textarea {
        font-size: 16px !important; /* Prevents iOS zoom */
        padding: 16px !important;
        min-height: 50px !important;
    }
    
    /* FAQ - Touch friendly */
    .pb-faq-question {
        padding: 18px 16px !important;
        font-size: 1rem !important;
    }
    
    /* TEXT - Readable sizes */
    .text-large {
        font-size: 1.1rem !important;
    }
    
    p {
        font-size: 1rem !important;
        line-height: 1.7 !important;
    }
    
    /* DIVIDER - Less height on mobile */
    .pb-divider {
        height: 2px !important;
        margin: 40px 0 !important;
    }
    
    /* Process images (circular) on contact page */
    img[style*="border-radius: 50%"] {
        width: 150px !important;
        height: 150px !important;
    }
}

/* ============================================
   SMALL MOBILE - 480px and below
   ============================================ */
@media (max-width: 480px) {
    h1, .heading-display {
        font-size: 1.5rem !important;
    }
    
    h2, .heading-section {
        font-size: 1.3rem !important;
    }
    
    h3 {
        font-size: 1.1rem !important;
    }
    
    .card-dark,
    .card-cream,
    .card-gradient {
        padding: 16px !important;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 14px 16px !important;
        font-size: 0.9rem !important;
    }
    
    .trust-badge-icon {
        width: 48px !important;
        height: 48px !important;
    }
    
    .step-number {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.25rem !important;
    }
}

/* ============================================
   MOBILE HAMBURGER MENU
   ============================================ */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 2px solid var(--cream);
    border-radius: 8px;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    -webkit-tap-highlight-color: transparent;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--cream);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-btn span:nth-child(1) {
    margin-bottom: 5px;
}

.mobile-menu-btn span:nth-child(3) {
    margin-top: 5px;
}

/* Hamburger animation when open */
.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile menu overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(5, 5, 9, 0.95);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
}

/* Mobile nav links */
.nav-links-mobile {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #050509;
    z-index: 9998;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    list-style: none;
    margin: 0;
    display: none;
}

.nav-links-mobile.active {
    display: flex !important;
}

.nav-links-mobile li {
    margin: 0;
    padding: 0;
    width: 100%;
    text-align: center;
}

.nav-links-mobile a {
    display: block;
    color: var(--cream);
    text-decoration: none;
    font-family: 'Alfa Slab One', serif;
    font-size: 1.5rem;
    padding: 20px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(196, 30, 58, 0.3);
}

.nav-links-mobile a:hover,
.nav-links-mobile a:active {
    color: var(--brand-red);
    background: rgba(196, 30, 58, 0.1);
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex !important;
        z-index: 9999;
    }
    
    .nav-links-mobile.active {
        display: flex !important;
    }
}

/* ============================================
   ENSURE LINKS ARE CLICKABLE (CRITICAL FIX)
   ============================================ */
a, button, [role="button"], input[type="submit"], summary {
    cursor: pointer !important;
    -webkit-tap-highlight-color: rgba(196, 30, 58, 0.3);
    touch-action: manipulation;
    position: relative;
    z-index: 1;
}

/* Remove any overlays blocking clicks */
header::before,
header::after,
nav::before,
nav::after,
footer::before,
footer::after {
    pointer-events: none !important;
}

/* Ensure nothing blocks the navigation */
header * {
    pointer-events: auto;
}
/* EMERGENCY CHROME MOBILE FIX */
html, body {
    overflow-y: auto !important;
    overflow-x: hidden !important;
    height: auto !important;
    min-height: 100% !important;
    -webkit-overflow-scrolling: touch !important;
    overscroll-behavior: auto !important;
}
h1.heading-section,
h2.heading-section,
.heading-section {
    font-family: 'Alfa Slab One', serif !important;
    -webkit-text-stroke: 0.8px #C41E3A !important;
    text-shadow: none !important;
}

*, *::before, *::after {
    overflow-anchor: none !important;
}

.elementor-section-wrap,
.elementor-inner,
.elementor-section,
.elementor-container,
.elementor-column,
.elementor-widget-wrap {
    overflow: visible !important;
}
/* FORCE ALL MAIN PAGE HEADINGS TO MATCH */
.pb-home h1,
.pb-home h2,
.pb-home .heading-display,
.pb-home .heading-section,
.pb-home .section-title,
.pb-home .pb-section-title {
  font-family: 'Alfa Slab One', serif !important;
  font-weight: 400 !important;
  font-style: normal !important;
  text-transform: uppercase !important;
  letter-spacing: 0.02em !important;
  line-height: 1.1 !important;
  color: var(--cream) !important;
  -webkit-text-fill-color: var(--cream) !important;
  -webkit-text-stroke: 1px var(--brand-red) !important;
  text-shadow: 2px 2px 0 var(--brand-red) !important;
  text-decoration: none !important;
}

/* STOP RANDOM ITALIC / UNDERLINE HEADING LOOK */
.pb-home h1 em,
.pb-home h2 em,
.pb-home h1 i,
.pb-home h2 i,
.pb-home .heading-section em,
.pb-home .heading-section i {
  font-family: 'Alfa Slab One', serif !important;
  font-style: normal !important;
  text-decoration: none !important;
}
.step-card h3 {
    font-style: normal !important;
    text-decoration: none !important;
}
.card-dark .heading-sub,
.card-dark h3.heading-sub,
h3.heading-sub 
{
    font-family: 'Poppins', sans-serif !important;
    font-style: normal !important;
    text-decoration: none !important;
    color: var(--cream) !important;
}
.form-label {
    color: var(--cream) !important;
}.forminator-ui .forminator-field {
    margin-bottom: 26px !important;
}

.forminator-ui .forminator-label {
    display: block !important;
    margin-bottom: 12px !important;
    padding-top: 10px !important;
    color: #E8D5C6 !important;
    line-height: 1.4 !important;
    position: relative !important;
    z-index: 2 !important;
}

.forminator-ui .forminator-input,
.forminator-ui .forminator-textarea  
{
    margin-top: 10x !important;
}
.forminator-ui {
    background: transparent !important;
}

.forminator-ui .forminator-label {
    color: #E8D5C6 !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
}

.forminator-ui .forminator-input,
.forminator-ui .forminator-textarea {
    background: #050509 !important;
    color: #fff !important;
    border: 1px solid #C41E3A !important;
    border-radius: 8px !important;
    padding: 25px !important;
}

.forminator-ui .forminator-button-submit {
    background: #C41E3A !important;
    color: #fff !important;
    border-radius: 8px !important;
    padding: 30px 28px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
}