/* Modern Location Page Styles */

/* Standard Hero Override if needed */
.default-hero {
    /* Ensuring consistency with other pages */
    min-height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.default-hero h1 {
    font-size: 48px;
    font-family: "Playfair Display", sans-serif;
    font-weight: 400;
    position: relative;
    padding-bottom: 20px;
}

/* Typography & Layout */
.section-title {
    font-family: "Playfair Display", sans-serif;
    color: #0e3d4f;
    font-size: 36px;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: #29aae2;
}

.location-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 50px;
}

.location-intro h2 {
    font-size: 2rem;
    color: #0e3d4f;
    margin-top: 40px;
    margin-bottom: 25px;
    font-family: "Avenir Heavy", sans-serif;
    position: relative;
    padding-bottom: 12px;
}

.location-intro h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #29aae2;
}

.location-intro ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px 30px;
}

.location-intro li {
    position: relative;
    padding-left: 30px;
    font-size: 1.05rem;
    color: #444;
}

.location-intro li::before {
    content: '\f00c'; /* FontAwesome Check */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #29aae2;
    font-size: 0.9rem;
    top: 2px;
}

/* Modern Services Grid */
.modern-heading {
    border-bottom: 2px solid #29aae2; /* Pentas Light Blue */
    display: inline-block;
    padding-bottom: 10px;
    margin-bottom: 30px;
    font-family: "Avenir Heavy", sans-serif;
    color: #0e3d4f;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.service-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); /* Softer shadow */
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #29aae2;
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.icon-wrapper {
    color: #29aae2;
    font-size: 2rem;
    margin-bottom: 20px;
}

.service-card h4 {
    color: #0e3d4f;
    margin-bottom: 15px;
    font-weight: 600;
    font-family: "Avenir Heavy", sans-serif;
}

.service-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Modern Sidebar */
.modern-sidebar {
    background: #fff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

.modern-sidebar h3 {
    color: #0e3d4f;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    margin-bottom: 25px;
    font-family: "Avenir Heavy", sans-serif;
    font-size: 1.4rem;
}

.contact-item {
    margin-bottom: 25px;
    display: flex;
    align-items: flex-start;
}

.contact-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(41, 170, 226, 0.1); /* Light blue bg */
    color: #29aae2;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1.1rem;
}

.contact-details {
    font-size: 1rem;
    line-height: 1.5;
}

.contact-details strong {
    color: #0e3d4f;
    display: block;
    margin-bottom: 5px;
}

.contact-details a {
    color: #555;
    transition: color 0.2s;
}

.contact-details a:hover {
    color: #29aae2;
}

.map-button-wrapper {
    margin-top: 35px;
}

.btn-outline-primary {
    background: transparent;
    color: #29aae2;
    border: 2px solid #29aae2;
    padding: 12px 25px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    display: block;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: #29aae2;
    color: #fff;
}

/* Modern CTA */
.modern-cta {
    background: #0e3d4f; /* Darker blue */
    color: #fff;
    padding: 50px;
    border-radius: 8px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 60px;
}

.modern-cta::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 100%;
    background: rgba(255,255,255,0.05);
    transform: skewX(-20deg);
}

.modern-cta h4 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-family: "Playfair Display", sans-serif;
}

.modern-cta p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.modern-cta .btn {
    background: #29aae2;
    color: #fff;
    border: none;
    padding: 15px 35px;
    font-size: 1rem;
    letter-spacing: 1px;
}

.modern-cta .btn:hover {
    background: #fff;
    color: #0e3d4f;
    transform: translateY(-2px);
}
