/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Hero Section */
.contact .hero {
    position: relative;
    height: 200px;
    min-height: 200px;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.85) 0%, rgba(26, 37, 47, 0.9) 100%), 
                url('images/about-facility.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.breadcrumb {
    font-size: 0.9rem;
}

.breadcrumb a {
    color: #fff;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #81d4fa;
}

.breadcrumb span {
    margin: 0 0.5rem;
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb .current {
    color: #D70203;
}

/* Contact Section */
.contact-section {
    padding: 60px 20px;
    background-color: #f0f0f0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

/* Contact Form */
.contact-form-container {
    padding: 50px;
}

.contact-form-container h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.contact-form-container .subtitle {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.accent-line {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #D70203, #D70203);
    margin-bottom: 30px;
    border-radius: 2px;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    background-color: #f9f9f9;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #000;
    background-color: #fff;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #999;
}

.contact-form textarea {
    resize: vertical;
    min-height: 180px;
    margin-bottom: 25px;
}

.submit-btn {
    padding: 15px 40px;
    background: #1a1a1a;
    color: #fff;
    border: 2px solid #1a1a1a;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: transparent;
    color: #1a1a1a;
}

/* Contact Info */
.contact-info {
    padding: 50px 40px;
    background: linear-gradient(180deg, #fafafa 0%, #f5f5f5 100%);
    position: relative;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(0,0,0,0.03)"/></svg>');
    background-size: 20px 20px;
}

.info-item {
    position: relative;
    text-align: center;
    padding: 25px 20px;
}

.info-item:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.icon-wrapper {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D70203;
}

.icon-wrapper svg {
    width: 28px;
    height: 28px;
}

.info-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.info-item p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.7;
}

/* Map Section */
.map-section {
    position: relative;
    height: 450px;
    display: flex;
}

.map-overlay {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 350px;
    background: rgba(40, 50, 60, 0.95);
    color: #fff;
    z-index: 10;
    padding: 40px 30px;
    overflow-y: auto;
}

.overlay-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
}

.info-list,
.hours-list {
    list-style: none;
    margin-bottom: 30px;
}

.info-list li,
.hours-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
}

.info-list li svg,
.hours-list li svg {
    flex-shrink: 0;
    margin-top: 3px;
    color: #05385c;
}

.hours-list li strong {
    color: #fff;
}

.hours-list li strong.closed {
    color: #f5a623;
}

.map-container {
    flex: 1;
    background: #e0e0e0;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(20%);
}

/* blog css */
.bdpp-post-grid.bdpp-col-3 {
    width: 30%;
    margin-right: 2%;
}
.bdpp-post-grid-inr-wrap.bdpp-post-data-inr-wrap.bdpp-clearfix
{
    display: flex;
}

article#post-15 .entry-title {
    display: none;
}
article#post-15 {
    width: 90%;
    margin: 0 auto;
    padding-top: 5%;
    padding-bottom: 5%;
}


/* Responsive Design */
@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .info-item:not(:last-child) {
        border-bottom: none;
    }
    
    .map-overlay {
        width: 300px;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .contact-form-container {
        padding: 30px 25px;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        padding: 30px 25px;
    }
    
    .map-section {
        flex-direction: column;
        height: auto;
    }
    
    .map-overlay {
        position: relative;
        width: 100%;
        padding: 30px 25px;
    }
    
    .map-container {
        height: 350px;
    }
}

@media (max-width: 767px) {
.contact .hero {
    min-height: 200px !important;
    height: 200px !important;
}
section.contact-section .container {
    padding: 0px !important;
}
.bdpp-post-grid.bdpp-col-3 {
    width: 100%;
    margin-right: 0%;
    margin-bottom: 60px;
}
.bdpp-post-grid-inr-wrap.bdpp-post-data-inr-wrap.bdpp-clearfix {
    display: inline-block;
}
h2.bdpp-post-title {
    line-height: 22px;
    margin-bottom: 10px;
    margin-top: 10px;
}
article#post-15 a {
    font-size: 19px !important;
    padding-top: 10px;
    margin-bottom: 10px !important;
}
.bdpp-post-content {
    width: 100%;
    float: left;
}
.bdpp-post-grid.bdpp-col-3.bdpp-columns.bdpp-post-32.bdpp-post-standard.bdpp-first.bdpp-has-thumb a {
}

a.bdpp-rdmr-btn {
    background-color: var(--secondary);
    color: var(--white);
    padding: 20px 10px 15px 10px;
    margin-top: 10px !important;
    width: 100%;
    float: left;
    text-align: center;
}
  
    
}

@media (max-width: 480px) {
    .hero {
        height: 160px;
    }
    
    .hero-content h1 {
        font-size: 1.6rem;
    }
    
    .contact-form-container h2 {
        font-size: 1.5rem;
    }
    
    .submit-btn {
        width: 100%;
    }
}
