/**
 * Design System - Root Variables, Typography, and Buttons
 */

:root {
    --primary-hover: #b01e29;
    --text-light: #666666;
    --bg-light: #f9f9f9;

    /* System Colors */
    --primary-color: #CB232F;
    --secondary-color: #2D2D2D;
    --text-color: #727272;
    --accent-color: #2D2D2DB2;

    /* Custom Colors */
    --white: #FFFFFF;
    --input-border: #CBCBCB;
    --red-border: #CB232F33;
    --light-red: #CB232F1A;
    --border-gray: #C8C8C880;
    --gray-color: #4A5565;
    --light-section-bg: #F5F5F599;
    --light-gray2: #CBCBCB66;
    --border-gray2: #0000001A;
    --section-bg-light-red: #FFEDEF;
    --transparent: #00000000;

    /* Typography */
    --font-main: 'Sk-Modernist', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-mono: 'Sk-Modernist Mono', monospace;

    /* Spacing & Borders */
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

/* Base Typography */
body {
    font-family: var(--font-main);
    color: var(--text-color);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    margin: 0 !important;
}

.page {
    margin: 0 !important;
}

/* h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-main);
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1.1rem;
} */

p {
    margin-bottom: 1.5rem;
}

/* Buttons */
.btn,
button,
input[type="submit"],
input[type="button"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-decoration: none;
}

/* Primary Button */
.btn-primary,
input[type="submit"] {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover,
input[type="submit"]:hover {
    filter: brightness(90%);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(203, 35, 47, 0.2);
}

/* Secondary Button */
.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 1.5rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

/* buttons style */
.white-filled-btn .ekit-wid-con .ekit-btn-wraper a:hover {
    background-color: var(--secondary-color) !important;
    color: #ffffff !important;
    transform: scale(1.08) !important;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4) !important;
}

.outline-btn .ekit-wid-con .ekit-btn-wraper a:hover {
    background: rgba(255, 255, 255, 0.1);
    /* Very faint white tint */
    animation: ripple-effect 0.6s linear;
}


.red-filled-btn .ekit-wid-con .ekit-btn-wraper a::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: rgba(255, 255, 255, 0.4);
    transform: rotate(30deg);
    transition: none;
}

.red-filled-btn .ekit-wid-con .ekit-btn-wraper a:hover::after {
    left: 120%;
    transition: all 0.6s ease-in-out;
}

.red-filled-btn .ekit-wid-con .ekit-btn-wraper a:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(198, 40, 40, 0.4);
}

@keyframes ripple-effect {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }

    100% {
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    }
}