/* ===== CSS Reset & Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Chick-fil-A inspired color palette */
    --primary-red: #E51636;
    --dark-red: #C91230;
    --light-red: #FF4D6D;
    --white: #FFFFFF;
    --off-white: #F9F9F9;
    --light-gray: #F5F5F5;
    --medium-gray: #E0E0E0;
    --dark-gray: #333333;
    --text-gray: #555555;

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;

    /* Border radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.1);
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
    overflow-x: hidden;
}

.price {
    text-decoration: underline;
    color: rgba(29, 131, 29, 0.747);
    font-weight: bold;
    font-size: 2.2rem;
    text-shadow: #333333 0px 0px 2px;
}

/* ===== Container ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

@media (min-width: 768px) {
    .container {
        padding: 0 var(--spacing-lg);
    }
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 15px 36px;
    font-size: 22px;
    font-weight: 900;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-primary {
    background-color: green;
    color: black;
    box-shadow: 1px 2px #333333;
    
}

.btn-primary:hover {
    background-color: var(--dark-red);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-primary:active {
    transform: translateY(0);
}

/* ===== Hero Section ===== */
.hero {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    padding: var(--spacing-3xl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: var(--spacing-md);
    text-shadow: #333333 3px 0px 2px;
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--spacing-xl);
    font-weight: 400;
    line-height: 1.7;
}

.hero .btn-primary {
    background-color: var(--white);
    color: var(--primary-red);
    font-weight: 700;
}

.hero .btn-primary:hover {
    background-color: var(--off-white);
    color: var(--dark-red);
}

@media (min-width: 768px) {
    .hero {
        padding: 120px 0;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }
}

/* ===== Info Section ===== */
.info-section {
    padding: var(--spacing-3xl) 0;
    background-color: var(--off-white);
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
}

@media (min-width: 768px) {
    .info-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-xl);
    }
}

.info-card {
    background-color: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.info-icon {
    color: var(--primary-red);
    margin-bottom: var(--spacing-md);
    display: flex;
    justify-content: center;
}

.info-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: var(--spacing-sm);
}

.info-description {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.7;
}

/* ===== Visual Section ===== */
.visual-section {
    padding: var(--spacing-3xl) 0;
    background-color: var(--white);
}

.visual-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
}

@media (min-width: 768px) {
    .visual-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-lg);
    }
}

.visual-item {
    text-align: center;
}

.visual-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: var(--spacing-md);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.visual-image-wrapper:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.visual-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.visual-caption {
    font-size: 1rem;
    color: var(--text-gray);
    font-weight: 400;
    line-height: 1.6;
}

/* ===== Trust Section ===== */
.trust-section {
    padding: var(--spacing-3xl) 0;
    background-color: var(--light-gray);
    text-align: center;
}

.trust-content {
    max-width: 900px;
    margin: 0 auto;
}

.trust-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: var(--spacing-xl);
}

.trust-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
}

@media (min-width: 768px) {
    .trust-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-xl);
    }
}

.trust-stat {
    background-color: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease;
}

.trust-stat:hover {
    transform: translateY(-2px);
}

.trust-stat-text {
    font-size: 1.125rem;
    color: var(--dark-gray);
    font-weight: 500;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .trust-title {
        font-size: 2.5rem;
    }
}

/* ===== CTA Section ===== */
.cta-section {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -40%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--spacing-md);
}

.cta-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--spacing-xl);
    line-height: 1.7;
}

.cta-section .btn-primary {
    background-color: var(--white);
    color: var(--primary-red);
}

.cta-section .btn-primary:hover {
    background-color: var(--off-white);
    color: var(--dark-red);
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 2.5rem;
    }

    .cta-subtitle {
        font-size: 1.25rem;
    }
}

/* ===== Footer ===== */
.footer {
    padding: var(--spacing-xl) 0;
    background-color: var(--dark-gray);
    text-align: center;
}

.footer-text {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ===== Smooth Animations ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.info-card,
.visual-item,
.trust-stat,
.cta-content {
    animation: fadeIn 0.6s ease-out;
}

.info-card:nth-child(2) {
    animation-delay: 0.1s;
}

.info-card:nth-child(3) {
    animation-delay: 0.2s;
}

.visual-item:nth-child(2) {
    animation-delay: 0.1s;
}

.visual-item:nth-child(3) {
    animation-delay: 0.2s;
}

/* ===== Accessibility ===== */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}