:root {
    --brand: #FA5921;
    --dark: #111;
    --gray: #6b7280;
    --light: #f9fafb;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
    background: #fff;
    color: var(--dark);
}

.container {
    max-width: 1330px;
    margin: auto;
    padding: 0 20px;
}

/* HERO */
.contact-hero {
    position: relative;
    padding: 70px 0;
    background: linear-gradient(135deg,
            #FFF3ED 0%,
            /* very light peach */
            #FFD7C2 20%,
            /* soft peach */
            #FFB48A 40%,
            /* warm orange */
            #FA5921 65%,
            /* brand main */
            #E84C14 85%,
            /* deeper brand */
            #D8430F 100%
            /* darkest accent */
        );
    overflow: hidden;
    text-align: center;
    z-index: 1;

}

.contact-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.15);
    z-index: 0;
}

.contact-hero h1 {
    font-size: 38px;
    font-weight: 500;
    color: #111;
    margin-bottom: 10px;

}

.contact-hero p {
    font-size: 15px;
    max-width: 720px;
    margin: auto;
    color: #2b2b2b;
    font-weight: 600;
}


/* MAIN WRAPPER */
.contact-wrapper {
    max-width: 1330px;
    margin: auto;
    padding: 70px 20px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 18px;
}

/* LEFT */
.contact-left h1 {
    font-size: 34px;
    margin-bottom: 14px;
}

.intro {
    font-size: 15px;
    color: #444;
    margin-bottom: 14px;
}

.contact-highlight {
    background: #FFF3ED;
    padding: 8px 18px;
    border-radius: 10px;
    margin-bottom: 14px;
}

.contact-highlight span {
    font-size: 18px;
    font-weight: 700;
    color: var(--brand);
}

.support-hours {
    display: flex;
    gap: 12px;
    align-items: center;
    font-size: 14px;
}

/* RIGHT */
.contact-right {
    display: flex;
    flex-direction: column;
    /* 🔥 THIS IS THE KEY */
    gap: 16px;
}

/* CARD */
.contact-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 28px 22px;
    text-align: center;
    min-height: 360px;
    /* 🔥 equal height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Hover lift + glow */
.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(250, 89, 33, 0.18);
}

/* ICON */
.contact-card i {
    font-size: 32px;
    color: #FA5921;
    margin-bottom: 12px;
    transition: transform 0.25s ease;
}

/* Icon pop on hover */
.contact-card:hover i {
    transform: scale(1.12);
}

/* TITLE */
.contact-card h3 {
    font-size: 18px;
    margin-bottom: 6px;
}

/* TEXT */
.contact-card p {
    font-size: 14px;
    color: #555;
    margin-bottom: 8px;
}

.contact-card strong {
    display: block;
    margin-bottom: 16px;
    font-size: 14px;
}

/* BUTTON */
.btn-primary {
    align-self: center;
    background: #FA5921;
    color: #fff;
    padding: 12px 26px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(250, 89, 33, 0.4);
}

/* HELP */
.contact-help {
    background: var(--light);
    padding: 50px 20px;
}

.contact-help h2 {
    margin-bottom: 20px;
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
}

.help-grid div {
    background: #fff;
    border: 1px solid #e5e7eb;
    padding: 14px;
    border-radius: 10px;
    font-size: 14px;
}

/* WHO */
.contact-who {
    padding: 40px 20px;
    text-align: center;
}

.contact-who p {
    font-size: 14px;
    color: #444;
}

/* MOBILE */
@media (max-width: 900px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-left h1 {
        font-size: 26px;
    }
}

.why-contact-section {
    margin-top: 36px;
}

.why-contact-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 18px;
}

/* Grid */
.why-contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

/* Card */
.why-contact-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 12px 12px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;

}

/* Hover glow */
.why-contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(250, 89, 33, 0.18);
}

/* Icon */
.why-contact-card i {
    font-size: 26px;
    color: #FA5921;
    margin-bottom: 10px;
    display: inline-block;
}

/* Heading */
.why-contact-card h4 {
    font-size: 15px;

}

/* Text */
.why-contact-card p {
    font-size: 13px;
    color: #555;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .why-contact-grid {
        grid-template-columns: 1fr;
    }
}