:root {
    --color-red: #bf1e2e;
    --color-red-dark: #9a1824;
    --color-red-glow: rgba(191, 30, 46, 0.35);
    --color-gold: #fdb813;
    --color-gold-dark: #e5a611;
    --color-gold-light: #ffe082;
    --color-gold-glow: rgba(253, 184, 19, 0.3);
    --color-black: #000;
    --color-dark: #0f0f0f;
    --color-dark-2: #1a1a1a;
    --color-gray-dark: #2d2d2d;
    --color-gray: #666;
    --color-gray-medium: #999;
    --color-gray-light: #f7f8fa;
    --color-white: #fff;
    --color-border: #e2e4e8;
    --color-cream: #fafaf8;

    --font-primary: 'RobotoRegular', sans-serif;
    --font-heading: 'Roboto_CondensedBold', sans-serif;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.14);
    --shadow-xl: 0 20px 48px rgba(0, 0, 0, 0.18);
    --shadow-glow-red: 0 4px 20px var(--color-red-glow);
    --shadow-glow-gold: 0 4px 20px var(--color-gold-glow);

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --header-height: 80px;

    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.2);
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-gray-dark);
    background: var(--color-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition);
}

ul li {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    font-family: 'Roboto_CondensedBold';
}

h1 {
    font-size: 58px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
    line-height: 1.05;
}

h2 {
    font-size: 38px;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding-bottom: 16px;
}

h3 {
    font-size: 28px;
    color: var(--color-dark);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;

}

h4 {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-dark);
    margin-bottom: 10px;
}

h5 {
    font-size: 19px;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

p {
    font-size: 16px;
    color: var(--color-gray);
}

.section-padding {
    padding: 80px 0;
}

.section-title p {
    color: var(--color-gray);
    margin-top: 12px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-title.animated .title-border::after {
    width: 80px;
}

.section-title {

    text-align: center;
    margin-bottom: 50px;
}

.section-title .title-border {
    position: relative;
}

.section-title .title-border::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-red), var(--color-gold));
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.highlighted {
    color: var(--color-gold);
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.btn:hover::before {
    transform: translateX(100%);
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.btn--primary {
    background: linear-gradient(135deg, var(--color-red), var(--color-red-dark));
    color: var(--color-white);
}

.btn--outline-dark {
    background: transparent;
    color: var(--color-dark);
    border: 2px solid var(--color-dark);
}

.btn--outline-dark:hover {
    background: var(--color-dark);
    color: var(--color-white);
}

.btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow-red);
}

/* ============================================
   UPLOAD PHOTO MODAL
   ============================================ */

button.quick-action-card {
    cursor: pointer;
    font-family: inherit;
    border: 1px solid var(--color-border);
    width: 100%;
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    max-width: 440px;
    width: 100%;
    position: relative;
    transform: translateY(20px) scale(0.97);
    transition: transform 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-overlay.active .modal {
    transform: translateY(0) scale(1);
}

.modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: none;
    border: none;
    font-size: 1.25rem;
    color: var(--color-text-light);
    cursor: pointer;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
}

.modal__close:hover {
    background: var(--color-bg);
    color: var(--color-text);
}

.modal__icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c8963e, #d4a84b);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin: 0 auto 16px;
}

.modal__title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 6px;
    color: var(--color-text);
}

.modal__desc {
    text-align: center;
    color: var(--color-text-light);
    font-size: 0.9rem;
    margin-bottom: 24px;
    line-height: 1.5;
}

.modal__field {
    margin-bottom: 18px;
}

.modal__field label {
    display: block;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-text);
    margin-bottom: 6px;
}

.modal__field input[type="text"],
.modal__field input[type="tel"] {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.modal__field input[type="text"]:focus,
.modal__field input[type="tel"]:focus {
    outline: none;
    border-color: var(--color-red);
}

.modal__dropzone {
    border: 2px dashed var(--color-border);
    border-radius: var(--radius-md);
    padding: 28px 16px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    position: relative;
}

.modal__dropzone:hover {
    border-color: var(--color-red);
    background: rgba(168, 29, 29, 0.03);
}

.modal__dropzone i {
    font-size: 1.8rem;
    color: var(--color-text-light);
    display: block;
    margin-bottom: 8px;
}

.modal__dropzone-text {
    color: var(--color-text-light);
    font-size: 0.9rem;
}

.modal__file-input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.modal__preview {
    position: relative;
    margin-top: 12px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 2px solid var(--color-border);
}

.modal__preview img {
    width: 100%;
    display: block;
    max-height: 200px;
    object-fit: cover;
}

.modal__preview-remove {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: background 0.2s;
}

.modal__preview-remove:hover {
    background: var(--color-red);
}

.modal__submit {
    width: 100%;
    margin-top: 6px;
    padding: 14px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.modal__success {
    display: none;
    text-align: center;
    padding: 20px 0;
}

.modal__success.visible {
    display: block;
}

.modal__success i {
    font-size: 3rem;
    color: #2ecc71;
    margin-bottom: 12px;
}

.modal__success p {
    font-size: 1.1rem;
    color: var(--color-text);
    font-weight: 500;
}

/* ============================================
   TRUST STRIP (V6)
   ============================================ */
.trust-strip {
    padding: 20px 0;
    background: var(--color-dark);
    border-bottom: 3px solid var(--color-red);
}

.trust-strip__track {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.trust-strip__track>.trust-strip__item:nth-child(n+5) {
    display: none;
}

.trust-strip__item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.85);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.trust-strip__item i {
    color: var(--color-gold);
    font-size: 1.1rem;
}

@keyframes trust-ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}


@media (max-width:768px) {
    p {
        font-size: 14px;
    }

    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 24px;
    }
    h3{
        font-size: 20px;
    }

    h5 {
        font-size: 19px;
    }

    .section-padding {
        padding: 50px 0;
    }
}