/* Global Font Family */
* {
    font-family: 'Open Sans', 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
}

/* Global Color Variables */
:root {
    /* Primary Red Colors */
    --color-red-50: #fef2f2;
    --color-red-100: #fee2e2;
    --color-red-200: #fecaca;
    --color-red-300: #fca5a5;
    --color-red-400: #f87171;
    --color-red-500: #ef4444;
    --color-red-600: #dc2626;
    --color-red-700: #b91c1c;
    --color-red-800: #991b1b;
    --color-red-900: #7f1d1d;
    --color-red-950: #450a0a;

    /* Primary Brand Red (Main Brand Color) */
    --color-primary: #dc2626;
    --color-primary-light: #ef4444;
    --color-primary-dark: #b91c1c;
    --color-primary-darker: #991b1b;

    /* Gray Colors */
    --color-gray-50: #f9fafb;
    --color-gray-100: #f3f4f6;
    --color-gray-200: #e5e7eb;
    --color-gray-300: #d1d5db;
    --color-gray-400: #9ca3af;
    --color-gray-500: #6b7280;
    --color-gray-600: #4b5563;
    --color-gray-700: #374151;
    --color-gray-800: #1f2937;
    --color-gray-900: #111827;
    --color-gray-950: #030712;

    /* Text Colors */
    --color-text-primary: #111827;
    --color-text-secondary: #6b7280;
    --color-text-muted: #9ca3af;
    --color-text-light: #ffffff;

    /* Background Colors */
    --color-bg-white: #ffffff;
    --color-bg-gray: #f9fafb;
    --color-bg-dark: #1f2937;
    --color-bg-darker: #111827;

    /* Border Colors */
    --color-border-light: #e5e7eb;
    --color-border-medium: #d1d5db;
    --color-border-dark: #9ca3af;

    /* Status Colors */
    --color-success: #10b981;
    --color-success-light: #34d399;
    --color-success-dark: #059669;
    
    --color-warning: #f59e0b;
    --color-warning-light: #fbbf24;
    --color-warning-dark: #d97706;
    
    --color-error: #ef4444;
    --color-error-light: #f87171;
    --color-error-dark: #dc2626;
    
    --color-info: #3b82f6;
    --color-info-light: #60a5fa;
    --color-info-dark: #2563eb;

    /* Shadow Colors */
    --color-shadow-sm: rgba(0, 0, 0, 0.05);
    --color-shadow-md: rgba(0, 0, 0, 0.1);
    --color-shadow-lg: rgba(0, 0, 0, 0.15);
    --color-shadow-xl: rgba(0, 0, 0, 0.2);

    /* Gradient Colors */
    --gradient-primary: linear-gradient(to bottom, #dc2626, #b91c1c);
    --gradient-primary-hover: linear-gradient(to bottom, #b91c1c, #991b1b);

    /* Typography Sizes */
   
    
    /* Layout Width */
    --layout-width: 80%;
}

/* Layout Container Class - 90% Width */
.container-90 {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .container-90 {
        width: var(--layout-width);
        max-width: 100%;
    }
}

/* Utility Classes for Colors */
.text-primary {
    color: var(--color-primary);
}

.text-primary-light {
    color: var(--color-primary-light);
}

.text-primary-dark {
    color: var(--color-primary-dark);
}

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

.bg-primary-light {
    background-color: var(--color-primary-light);
}

.bg-primary-dark {
    background-color: var(--color-primary-dark);
}

.border-primary {
    border-color: var(--color-primary);
}

/* Gradient Classes */
.bg-gradient-primary {
    background: var(--gradient-primary);
}

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


/* Hide reCAPTCHA v3 Badge */
.grecaptcha-badge {
    visibility: hidden !important;
}


/* ============================================
   TYPOGRAPHY - Fixed Font Sizes
   ============================================ */

/* H1 Styles */
h1 {
    font-size: 2rem;
    line-height: 1.2;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }
}

@media (min-width: 1024px) {
    h1 {
        font-size: 3rem;
        line-height: 1.1;
    }
}



/* Paragraph Styles */
p {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--color-text-primary);
    margin-bottom: 1rem;
}

p:last-child {
    margin-bottom: 0;
}

/* Span Styles */
span {
    font-size: 1rem;
    line-height: 1.5;
    color: inherit;
}

/* ============================================
   BUTTON STYLES - Reusable Button Component
   ============================================ */

/* Base Button Style */
.btn,
button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    white-space: nowrap;
    user-select: none;
    outline: none;
    position: relative;
    overflow: hidden;
    height: 48px !important;
    /* min-height: 48px !important;
    min-width: 48px !important; */
}

.btn:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

/* Primary Button (Main Brand Button) */
.btn-primary {
    background: var(--gradient-primary);
    color: var(--color-text-light);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.btn-primary:hover {
    background: var(--gradient-primary-hover);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transform: translateY(-1px);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.1);
}

/* Button Sizes */
.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.btn-md {
    padding: 0.625rem 1.5rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.btn-lg {
    padding: 0.75rem 2rem;
    font-size: 1rem;
    line-height: 1.5rem;
}

.btn-xl {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    line-height: 1.75rem;
}


/* Full Width Button */
.btn-full {
    width: 100%;
}

/* Button with Icon */
.btn-icon {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-icon svg {
    width: 1.25rem;
    height: 1.25rem;
}


/* Reusable Card Classes */
.card {
    background-color: #ffffff !important;
    border-radius: 0.75rem; /* rounded-xl */
    padding: 1rem; /* p-4 */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 
                0 2px 4px -1px rgba(0, 0, 0, 0.06),
                0 10px 15px -3px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease;
}

.card:hover {
    box-shadow: 0 10px 20px -3px rgba(0, 0, 0, 0.15), 
                0 4px 6px -2px rgba(0, 0, 0, 0.1),
                0 20px 25px -5px rgba(0, 0, 0, 0.12);
}

@media (min-width: 768px) {
    .card {
        padding: 1.25rem; /* md:p-5 */
    }
}



/* ============================================
   FAQ STYLES - Reusable FAQ Components
   ============================================ */

/* FAQ Container */
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 0.375rem; /* space-y-1.5 - reduced spacing */
}

/* FAQ Item - White Background Style */
.faq-item-white {
    background-color: var(--color-bg-white); /* bg-white */
    border-radius: 0.5rem; /* rounded-lg */
    padding: 1rem 1.25rem; /* px-5 py-4 */
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); /* shadow-sm */
    transition: all 0.2s ease-in-out;
}

.faq-item-white:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); /* shadow-md */
}

.faq-question-white {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: var(--color-gray-900); /* text-gray-900 */
    font-weight: 500; /* font-medium */
    font-size: 0.875rem; /* text-sm */
    line-height: 1.25rem; /* leading-5 */
}

.faq-icon-white {
    width: 1.25rem; /* w-5 */
    height: 1.25rem; /* h-5 */
    color: var(--color-gray-900); /* text-black */
    flex-shrink: 0;
    transition: transform 0.2s ease-in-out;
}

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

.faq-answer-white {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out, margin-top 0.3s ease-in-out;
    color: var(--color-gray-700); /* text-gray-700 */
    font-size: 0.875rem; /* text-sm */
    line-height: 1.5rem; /* leading-6 */
}

.faq-item-white.active .faq-answer-white {
    max-height: 500px;
    margin-top: 0.75rem; /* mt-3 */
}


/* FAQ Item - Red Background Style with Expandable White Content */
.faq-item-red-expandable {
    border-radius: 0.5rem; /* rounded-lg */
    overflow: hidden;
    transition: all 0.2s ease-in-out;
    margin-bottom: 0.125rem; /* reduced spacing */
}

.faq-question-red-expandable {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #fff4f4; 
    padding: 0.875rem 1.25rem; /* px-5 py-3.5 */
    cursor: pointer;
    color: var(--color-text-light); /* text-white */
    font-weight: 500; /* font-medium */
    font-size: 0.875rem; /* text-sm */
    line-height: 1.5;
}

.faq-bullet {
    width: 0.5rem; /* w-2 */
    height: 0.5rem; /* h-2 */
    background-color: #000000;
    border-radius: 50%;
    flex-shrink: 0;
}

.faq-question-text {
    flex-grow: 1;
    color: #000000;
    font-weight: 500;
}

.faq-caret-red {
    width: 1.25rem; /* w-5 */
    height: 1.25rem; /* h-5 */
    color: #000000; /* text-white */
    flex-shrink: 0;
    transition: transform 0.3s ease-in-out;
}

.faq-item-red-expandable.active .faq-caret-red {
    transform: rotate(180deg);
}

.faq-answer-red-expandable {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
    background-color: white;
}

.faq-item-red-expandable.active .faq-answer-red-expandable {
    max-height: 1000px;
}

.faq-answer-list {
    list-style: none;
    padding: 1rem 1.25rem 1rem 2.5rem; /* px-5 py-4 pl-10 */
    margin: 0;
}

.faq-answer-list li {
    position: relative;
    padding-left: 1rem;
    margin-bottom: 0.5rem;
    color: var(--color-gray-900); /* text-gray-900 */
    font-size: 0.875rem; /* text-sm */
    line-height: 1.5;
}

.faq-answer-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--color-gray-900);
    font-weight: bold;
}

.faq-answer-list li:last-child {
    margin-bottom: 0;
}

/* Card Drop Shadow Class - Enhanced visibility */
.card-shadow {
    background-color: #ffffff !important;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14),
                0 6px 12px rgba(0, 0, 0, 0.10) !important;
    transition: box-shadow 0.3s ease;
}

.card-shadow:hover {
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18),
                0 8px 16px rgba(0, 0, 0, 0.12) !important;
}

/* Card Title - Standardized across all cards */
.card-title {
    color: black !important; /* text-gray-900 */
    font-weight: 700 !important; /* font-bold */
    font-size: 1.25rem !important; /* text-sm */
    line-height: 1.5;
    margin-bottom: 0.625rem; /* mb-2.5 */
}

.card-title span,
.card-title > span {
    font-size: inherit !important;
    color: inherit !important;
    font-weight: inherit !important;
}

@media (min-width: 768px) {
    .card-title {
        font-size: 1.25rem !important; /* md:text-base */
    }
    
    .card-title span,
    .card-title > span {
        font-size: inherit !important;
    }
}

/* Card Description - Standardized across all cards */
.card-description {
    color: #374151 !important; /* text-gray-700 */
    font-size: 0.875rem !important; /* 14px - text-sm */
    line-height: 1.75; /* leading-relaxed */
}

@media (min-width: 768px) {
    .card-description {
        font-size: 1rem !important; /* md:text-base */
    }
}


/* Statistics Component - Background and Text Colors */
.statistics-container {
    background-color: #fff4f4!important;
}

.stat-item {
    background-color: #fff4f4 !important;
    text-align: center !important;
}

.stat-number {
    color: #000000 !important;
    font-size: 2.25rem !important; /* mobile smaller */
    font-weight: 700 !important; /* text-3xl */
}

.stat-label {
    color: #000000 !important;
    font-weight: 500 !important; /* text-black */
    font-size: 1.25rem !important; /* text-lg */
}

@media (min-width: 768px) {
    .stat-item {
        background: none !important;
    }
    .stat-number {
        font-size: 3rem !important; /* desktop */
    }
}

/* Testimonial Dots - Perfect Circles */
.testimonial-dot-mobile,
.testimonial-dot-desktop {
    width: 0.5rem !important; /* w-2 = 0.5rem */
    height: 0.5rem !important; /* h-2 = 0.5rem */
    min-width: 0.5rem !important;
    min-height: 0.5rem !important;
    border-radius: 50% !important;
    display: inline-block;
}

/* Section Spacing (shared across all pages) */
.section-spacing {
    margin-top: 3rem; /* mb-10 */
   
}

@media (min-width: 768px) {
    .section-spacing {
        margin-top: 7rem ; /* md:mb-14 */
        
    }
}

@media (min-width: 1280px) {
    .section-spacing {
        margin-top: 7rem ; /* xl:mb-18 */
       
    }
}


/* H2 Styles - Fixed Size */
h2 {
    font-size: 24px !important;
    line-height: 1.3;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 2.25rem !important;
}

@media (min-width: 768px) {
    h2 {
        font-size: 1.75rem !important;
        line-height: 1.3;
        margin-bottom: 3.5rem !important;
    }
}

@media (min-width: 1024px) {
    h2 {
        font-size: 2rem !important;
        margin-bottom: 3.5rem !important;
    }
}

/* Contact Form Button Spacing */
form[id^="contact_form"] > div:last-child,
form[id^="post_faq_form"] > div:last-child,
form[id^="hero_form"] > div:last-child {
    margin-top: 3rem !important;
}


