﻿

.c1-contact-page {
    padding: 5%;
    padding-top: 0;
    font-family: YouTube Sans;
}

.c1-container {
    width: min(1120px,100%);
    margin-inline: auto;
    margin: 100px auto;
    margin-bottom: 0;
}

.c1-shell {
    padding-block: 28px;
}

/* card: no border/no shadow */
.c1-card {
    background: #fff;
    border-radius: 20px;
}

/* header */
.c1-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    padding-bottom: 16px;
}

.c1-head-text {
    display: grid;
    gap: 6px;
}

.c1-title {
    margin: 0;
    font-size: 35px;
    line-height: 1.4;color:#333
}

.c1-subtitle {
    margin: 0;
    color: #64748b;
    font-size: 17px;
}

.c1-hours {
    white-space: nowrap;
    font-size: 13px;
    background: #f1f5f9;
    border-radius: 999px;
    padding: 8px 12px;
}

/* two-column layout with map on right */
.c1-grid {
    display: grid;
    grid-template-columns: 1fr 360px; /* left details | right map */
    gap: 20px;
    align-items: start;margin:70px auto;
}

.c1-map-side {
    display: flex;
    justify-content: flex-end;
}

/* embedded map (reliable display) */
.c1-mapembed {
    width: 100%;
    height: 300px;
    border-radius: 16px;
    overflow: hidden;
    background: #f8fafc;
}

    .c1-mapembed iframe {
        width: 100%;
        height: 100%;
        border: 0;
    }


/* contact list */
.c1-col {
    display: grid;
    gap: 12px;
}

.c1-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    border-radius: 14px;
    background: #fff;
    text-decoration: none;
   /* border: 1px solid #eef2f7;*/
    transition: border-color .15s ease;
}

    .c1-row:hover {
        border-color: #e5e7eb;
    }

.c1-ico {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: whitesmoke;
    border: 1px solid #eef2f7;
}

    .c1-ico svg {
        width: 22px;
        height: 22px;
        fill: #333;
    }
/* icons color */
.c1-text {
    display: grid;
    gap: 2px;
}

.c1-label {
    font-size: 12px;
    color: #64748b;
}

.c1-value {
    font-size: 16px;
    color: #0f172a;
}

/* buttons */
.c1-cta {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}

.c1-btn {
    padding: 11px 16px;
    border-radius: 12px;
    background: rgb(26,115,232);
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    border: 1px solid transparent;
}

    .c1-btn:hover {
        filter: brightness(.95);
    }

.c1-outline {
    background: #fff;
    color: rgb(26,115,232);
    border: 1px solid #d2e3fc;
}

/* responsive */
@media (max-width: 768px) {
    .c1-grid {
        grid-template-columns: 1fr;
    }

    .c1-mapembed {
        height: 240px;
    }
}



/* ---------------------------------------------------- office list ------------------------------------------*/


.c2-app-container {
    width: min(1120px,100%);
    margin-inline: auto;
    margin: 0 auto;
    font-family: YouTube Sans;
    margin-bottom: 120px;
}

/* Header styling */
.c2-app-header {
    background-color: #fff;
    padding: 24px 0;
  /*  border-bottom: 1px solid #e0e0e0;*/
    text-align: left;
}

.c2-header-title {
    margin: 0;
   
    font-size: 35px;
    line-height: 1.4;
    color: #333
}

/* Main content and list styling */
.c2-app-main {
    padding: 0;
}

.c2-location-list {
    list-style-type: none;
    padding: 16px 0;
    margin: 0;
}

.c2-location-item {
    display: flex;
    align-items: center;
    padding: 20px; /* Increased padding */
    margin: 16px 0; /* Updated: Spacing between items */
    border-radius: 12px; /* Increased border radius for a softer look */
    /*cursor: pointer;*/
    background-color: #fff;
    transition: box-shadow 0.3s cubic-bezier(.25,.8,.25,1);
}

    /*.c2-location-item:hover {*/
        /* More pronounced shadow on hover to simulate lifting */
        /*box-shadow: 0 10px 20px rgba(0,0,0,0.15), 0 6px 6px rgba(0,0,0,0.1);
    }*/

/* Icons styling */
.c2-material-icons {
    color: #555;
    font-size: 24px;
}

.c2-location-icon {
    margin-right: 20px;
    color: #007BFF;
}

.c2-arrow-icon {
    margin-left: auto;
    color: #ccc;
}

/* Location details */
.c2-location-info {
    flex-grow: 1;
}

.c2-location-title {
    font-size: 1.2rem;
    font-weight: 500;
    margin: 0 0 4px 0;
}

.c2-location-address {
    font-size: 1rem;
    color: #666;
    margin: 0;
}
.c2-arrow-icon {
    font-size: 48px; /* Your custom styling */
}

.c2-location-item span{
    padding-right:.5rem
}