/* Import Basics */
:root {
    --bg-pink: #FFC0CB;
    --btn-pink: #FF69B4;
    --dark-pink: #db4f93;
    --text-brown: #5D4037;
    --soft-bg: #FFF5F7;
    --white: #ffffff;
}

body {
    background-color: var(--soft-bg);
}

/* --- HERO SECTION --- */
.contact-hero {
    /* Cute dog background */
    background-image: url('https://placedog.net/1000/600?id=3'); 
    background-size: cover;
    background-position: center;
    height: 350px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    background: rgba(255, 255, 255, 0.85); /* White see-through box */
    padding: 30px 50px;
    border-radius: 30px;
    border: 4px solid var(--bg-pink);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.hero-overlay h1 {
    color: var(--btn-pink);
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.hero-overlay p {
    color: var(--text-brown);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.btn-hero {
    background-color: var(--btn-pink);
    color: white;
    text-decoration: none;
    padding: 10px 25px;
    border-radius: 20px;
    font-weight: bold;
    display: inline-block;
    transition: 0.3s;
}

.btn-hero:hover {
    background-color: var(--dark-pink);
    transform: translateY(-2px);
}

/* --- MAIN CONTENT --- */
.contact-main {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Info Grid (Contact & Schedule) */
.info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 50px;
}

@media (min-width: 768px) {
    .info-grid {
        grid-template-columns: 1fr 1fr; /* 2 columns on desktop */
    }
}

.info-card {
    background: white;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-top: 5px solid var(--btn-pink);
}

.info-card h3 {
    color: var(--text-brown);
    margin-bottom: 20px;
    font-size: 1.4rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.contact-list {
    list-style: none;
}

.contact-list li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    color: var(--text-brown);
}

.contact-list .icon {
    font-size: 1.8rem;
    margin-right: 15px;
    background: var(--soft-bg);
    padding: 10px;
    border-radius: 50%;
}

/* --- BRANCHES SECTION --- */
.section-title {
    text-align: center;
    color: var(--btn-pink);
    font-size: 2rem;
    margin-bottom: 30px;
}

.branches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.branch-card {
    background: white;
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    border: 2px dashed var(--bg-pink);
    transition: 0.3s;
}

.branch-card:hover {
    transform: translateY(-5px);
    border-color: var(--btn-pink);
}

.branch-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 15px;
}

.branch-card h4 { color: var(--text-brown); font-size: 1.2rem; margin-bottom: 5px; }
.branch-card p { color: #666; font-size: 0.95rem; line-height: 1.4; }