html {
    height: 100%;
    width: 100%;
}

:where([class^="ri-"])::before {
    content: "\f3c2";
}

body {
    font-family: 'Inter', sans-serif;
}

.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-slider-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center top;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.85) 45%, rgba(255, 255, 255, 0.5) 70%, rgba(255, 255, 255, 0.15) 100%);
}

@media (max-width: 768px) {
    .hero-slide::after {
        background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.92) 55%, rgba(255, 255, 255, 0.65) 100%);
    }
}

input:focus,
textarea:focus {
    outline: none;
    border-color: #4C8C4A;
}

.custom-checkbox {
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    user-select: none;
}

.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #fff;
    border: 2px solid #4C8C4A;
    border-radius: 4px;
}

.custom-checkbox input:checked~.checkmark {
    background-color: #4C8C4A;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.custom-checkbox input:checked~.checkmark:after {
    display: block;
}

.custom-checkbox .checkmark:after {
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.custom-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.custom-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 24px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked+.slider {
    background-color: #4C8C4A;
}

input:checked+.slider:before {
    transform: translateX(26px);
}

/* ============================================== */
/* === GLOBAL STYLES & TRANSITIONS === */
/* ============================================== */

/* Base icon transition */
i[class^="ri-"],
i[class*=" ri-"] {
    transition: color 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}

/* ============================================== */
/* === ICON CIRCLE COMPONENT === */
/* ============================================== */

/*
  .icon-circle — a rounded container for any Remix icon.
  Normal state : light-green bg (#4C8C4A/10) + green icon.
  Hover state  : brand-red bg + white icon + subtle scale + glow.
  Usage: <div class="icon-circle"><i class="ri-..."></i></div>
*/
.icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    background-color: rgba(76, 140, 74, 0.12);
    /* primary/10 */
    color: #4C8C4A;
    /* primary */
    transition:
        background-color 0.30s cubic-bezier(0.25, 0.8, 0.25, 1),
        color 0.30s cubic-bezier(0.25, 0.8, 0.25, 1),
        transform 0.30s cubic-bezier(0.25, 0.8, 0.25, 1),
        box-shadow 0.30s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.icon-circle:hover,
a:hover>.icon-circle,
button:hover>.icon-circle {
    background-color: #D96B63 !important;
    /* brand red */
    color: #ffffff !important;
    /* white icon */
    transform: scale(1.10);
    box-shadow: 0 4px 14px rgba(217, 107, 99, 0.40);
}

/* Footer variant: dark bg → brand-red bg on hover */
.icon-circle-dark {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    background-color: rgba(255, 255, 255, 0.10);
    /* white/10 */
    color: #ffffff;
    transition:
        background-color 0.30s cubic-bezier(0.25, 0.8, 0.25, 1),
        color 0.30s cubic-bezier(0.25, 0.8, 0.25, 1),
        transform 0.30s cubic-bezier(0.25, 0.8, 0.25, 1),
        box-shadow 0.30s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.icon-circle-dark:hover,
a:hover>.icon-circle-dark {
    background-color: #D96B63 !important;
    color: #ffffff !important;
    transform: scale(1.10);
    box-shadow: 0 4px 14px rgba(217, 107, 99, 0.40);
}

/* Hero stat icons: white/80 bg → brand-red on hover */
.icon-circle-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    background-color: rgba(255, 255, 255, 0.80);
    color: #4C8C4A;
    transition:
        background-color 0.30s cubic-bezier(0.25, 0.8, 0.25, 1),
        color 0.30s cubic-bezier(0.25, 0.8, 0.25, 1),
        transform 0.30s cubic-bezier(0.25, 0.8, 0.25, 1),
        box-shadow 0.30s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.icon-circle-hero:hover {
    background-color: #D96B63 !important;
    color: #ffffff !important;
    transform: scale(1.10);
    box-shadow: 0 4px 14px rgba(217, 107, 99, 0.40);
}

/* Global premium card shadows */
.accent-card-shadow {
    box-shadow: 0 4px 14px rgba(217, 107, 99, 0.14) !important;
    transition: box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), background-color 0.3s ease !important;
}

.accent-card-shadow:hover {
    box-shadow: 0 10px 28px rgba(217, 107, 99, 0.30), 0 2px 8px rgba(217, 107, 99, 0.16) !important;
    transform: translateY(-3px) !important;
}

.accent-card-shadow-lg {
    box-shadow: 0 4px 16px rgba(217, 107, 99, 0.13) !important;
    transition: box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), background-color 0.3s ease !important;
}

.accent-card-shadow-lg:hover {
    box-shadow: 0 10px 32px rgba(217, 107, 99, 0.28) !important;
    transform: translateY(-3px) !important;
}

/* ============================================== */
/* === LAYOUT & UTILITIES === */
/* ============================================== */


/* ============================================== */
/* === COMPONENT STYLES === */
/* ============================================== */


/* ============================================== */
/* === RESPONSIVENESS (MEDIA QUERIES) === */
/* ============================================== */