/* Contact Page  */

/*  CONTACT HERO ── */
.contact-hero {
    position: relative;
    width: 100%;
    height: 480px;
    overflow: hidden;
    display: block;
}

.contact-hero img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.contact-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.45) 0%,
        rgba(0, 0, 0, 0.60) 100%
    );
}

.contact-hero-text {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.contact-hero-text h1 {
    font-size: clamp(2.4rem, 6vw, 4.2rem);
    font-weight: 700;
    color: #fff;
    letter-spacing: 3px;
    text-transform: uppercase;
    line-height: 1.1;
}

.contact-hero-text .hero-divider {
    margin-top: 16px;
    width: 60px;
    height: 4px;
    background: #4ca567;
    border-radius: 2px;
}

.contact-hero-text p {
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

/*  BREADCRUMB ─*/
.breadcrumb {
    background: #f5f9ff;
    border-bottom: 1px solid #e4edf8;
    padding: 10px 0;
    font-size: 0.85rem;
    color: #777;
}

.breadcrumb a {
    color: #297cc8;
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    margin: 0 6px;
    color: #bbb;
}

/*  CONTACT DETAILS SECTION  */
.contact-section {
    padding: 50px 0 40px;
    background: #fff;
}

.contact-section-title {
    text-align: center;
    margin-bottom: 36px;
}

.contact-section-title h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a2e;
}

.contact-section-title h2 span {
    color: #297cc8;
}

.contact-section-title p {
    margin-top: 10px;
    color: #666;
    font-size: 0.97rem;
}

/* Cards grid */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 28px;
    margin-bottom: 40px;
}

.contact-card {
    background: #f5f9ff;
    border: 1px solid #dce9f8;
    border-radius: 10px;
    padding: 32px 24px;
    text-align: center;
    transition: box-shadow 0.3s, transform 0.3s;
}

.contact-card:hover {
    box-shadow: 0 8px 28px rgba(41, 124, 200, 0.12);
    transform: translateY(-4px);
}

.contact-card .icon-wrap {
    width: 56px;
    height: 56px;
    background: #297cc8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}

.contact-card .icon-wrap i {
    color: #fff;
    font-size: 1.2rem;
}

.contact-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-card p,
.contact-card a {
    font-size: 0.9rem;
    color: #555;
    text-decoration: none;
    line-height: 1.7;
    display: block;
}

.contact-card a:hover {
    color: #297cc8;
}

/*  WORKING HOURS ─ */
.hours-section {
    background: #f5f9ff;
    padding: 50px 0;
    border-top: 1px solid #dce9f8;
    border-bottom: 1px solid #dce9f8;
}

.hours-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.hours-label {
    display: inline-block;
    background: #297cc8;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 14px;
}

.hours-left h2 {
    font-size: 1.9rem;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.3;
    margin-bottom: 14px;
}

.hours-left h2 span {
    color: #297cc8;
}

.hours-left p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.hours-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #fff;
    border: 1px solid #dce9f8;
    border-left: 4px solid #4ca567;
    border-radius: 6px;
    padding: 14px 18px;
    font-size: 0.88rem;
    color: #555;
}

.hours-note i {
    color: #4ca567;
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Hours table */
.hours-table {
    background: #fff;
    border: 1px solid #dce9f8;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(41, 124, 200, 0.06);
}

.hours-table-header {
    background: #297cc8;
    color: #fff;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 14px 24px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hours-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 14px 24px;
    border-bottom: 1px solid #eef3fa;
    align-items: center;
    transition: background 0.2s;
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-row:hover {
    background: #f0f7ff;
}

.hours-row.closed .time {
    color: #e05a5a;
    font-weight: 600;
}

.hours-row .day {
    font-weight: 600;
    color: #1a1a2e;
    font-size: 0.92rem;
}

.hours-row .time {
    font-size: 0.92rem;
    color: #297cc8;
    font-weight: 500;
}

.badge-open {
    display: inline-block;
    background: #e6f9ec;
    color: #2e8b57;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 10px;
    margin-left: 8px;
    vertical-align: middle;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-closed {
    display: inline-block;
    background: #fde8e8;
    color: #c0392b;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 10px;
    margin-left: 8px;
    vertical-align: middle;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/*  MAP SECTION */
.map-section {
    padding: 50px 0 60px;
    background: #fff;
}

.map-section-title {
    text-align: center;
    margin-bottom: 40px;
}

.map-section-title h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a2e;
}

.map-section-title h2 span {
    color: #297cc8;
}

.map-section-title p {
    margin-top: 10px;
    color: #666;
    font-size: 0.95rem;
}

.map-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(41, 124, 200, 0.12);
    border: 1px solid #dce9f8;
    height: 460px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.map-address-row {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    font-size: 0.9rem;
    color: #555;
}

.map-address-row .addr-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.map-address-row i {
    color: #297cc8;
}

/* RESPONSIVEness Starts Here */
@media (max-width: 768px) {
    .contact-hero  { height: 320px; }
    .hours-inner   { grid-template-columns: 1fr; gap: 30px; }
    .contact-section { padding: 36px 0 30px; }
    .hours-section   { padding: 36px 0; }
    .map-section     { padding: 36px 0 45px; }
    .map-wrapper     { height: 320px; }
}

@media (max-width: 480px) {
    .contact-hero { height: 240px; }
    .contact-hero-text h1 { font-size: 2rem; letter-spacing: 2px; }
}