/* =====================================================
   BRAND VARIABLES (STYLE PAD)
   ===================================================== */

:root {
    --primary: #213448;
    /* Deep Navy */
    --secondary: #547792;
    /* Slate Blue */
    --accent: #94B4C1;
    /* Soft Blue-Grey */
    --background: #EAE0CF;
    /* Warm Beige */
    --white: #ffffff;
    --text-dark: #1f2a33;
    --muted: #6b7280;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    --radius: 12px;
    --transition: 0.25s ease;
}

/* =====================================================
   GLOBAL BASE
   ===================================================== */

body {
    font-family: var(--font-body);
    background-color: var(--background);
    color: var(--text-dark);
    line-height: 1.65;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--primary);
    font-weight: 800;
}

p {
    color: var(--text-dark);
}

.small,
.text-muted {
    color: var(--muted) !important;
}

/* =====================================================
   HEADER
   ===================================================== */

header {
    background: var(--white);
}

.logo {
    width: 180px;
}

/* =====================================================
   HERO SECTION
   ===================================================== */

.hero-bg {
    background: linear-gradient(180deg,
            var(--white) 0%,
            var(--background) 100%);
}

.hero-bg h1 {
    font-weight: 700;
}

.hero-bg h4 {
    color: var(--secondary);
}

/* =====================================================
   CHECK LIST
   ===================================================== */

.check-list {
    padding-left: 0;
}

.check-list li {
    list-style: none;
    margin-bottom: 10px;
    font-weight: 500;
}

.check-list i {
    color: var(--secondary);
    margin-right: 8px;
}

/* =====================================================
   ICON CIRCLES (HOW IT WORKS)
   ===================================================== */

.icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

/* =====================================================
   FORM CARD
   ===================================================== */

.form-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px;
    border: 1px solid var(--accent);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.sticky-form {
    position: sticky;
    top: 24px;
}

@media (max-width: 991px) {
    .sticky-form {
        position: static;
    }
}

.form-card h4 {
    color: var(--primary);
    font-weight: 600;
}

/* Inputs */

.form-control,
.form-select,
textarea {
    border-radius: 8px;
    border: 1px solid var(--accent);
    padding: 12px 14px;
    font-size: 15px;
}

.form-control:focus,
.form-select:focus,
textarea:focus {
    border-color: var(--secondary);
    box-shadow: none;
}

/* Submit Button */

.btn-warning {
    background-color: var(--primary);
    border: none;
    color: var(--white);
    padding: 14px;
    font-weight: 600;
    transition: var(--transition);
    border: 1px solid white;
}

.btn-warning:hover {
    background-color: var(--secondary);
    color: var(--white);
    border: 1px solid white;

}

/* =====================================================
   CASES SECTION (CLEAN + PROFESSIONAL)
   ===================================================== */

.cases-section {
    background: var(--primary);
}

.cases-overlay {
    display: none;
}

.cases-section h2 {
    color: var(--white);
}

/* Case Cards */

.case-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px 20px;
    text-align: center;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: var(--transition);
}

.case-card p {
    margin-top: 12px;
    font-weight: 600;
    color: var(--primary);
}

/* Case Icons */

.case-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 24px;
    color: var(--primary);
}

/* Hover */

.case-card:hover {
    transform: translateY(-6px);
    border-color: var(--secondary);
}

/* =====================================================
   INFO CARDS
   ===================================================== */

.info-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 26px;
    height: 100%;
    border: 2px solid var(--primary);
}

.info-card i {
    color: var(--secondary) !important;
}

/* =====================================================
   FOOTER
   ===================================================== */

footer {
    background: var(--primary);
    color: var(--white);
}

footer p {
    color: var(--white);
}

/* =====================================================
   ACCESSIBILITY
   ===================================================== */

:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

.location-line {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: #1f2a33;
    margin-top: 6px;
}

.location-line .pin {
    font-size: 1rem;
}

.change-location-btn {
    background: none;
    border: none;
    color: #547792;
    font-size: 0.9rem;
    cursor: pointer;
    padding: 0;
    text-decoration: underline;
}

.change-location-btn:hover {
    color: #213448;
}