/* HEADER STYLES */
.page-header {
    position: relative;
    height: 400px;
    width: 100%;
    overflow: hidden;
    margin-bottom: 0;
    background-color: #f8f9fa;
}

.header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    /* Slightly zoomed for effect */
    transform: scale(1.05);
}

/* SHINE EFFECT */
.header-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    z-index: 2;
    animation: shineMove 6s infinite ease-in-out;
    pointer-events: none;
}

@keyframes shineMove {
    0% { left: -100%; opacity: 0; }
    20% { opacity: 0.5; }
    40% { left: 200%; opacity: 0; }
    100% { left: 200%; opacity: 0; }
}

/* GRADIENT OVERLAY: More transparent at top to show image */
.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Reduced opacity at top (0.4) to show more background */
    background: linear-gradient(to bottom, rgba(240, 240, 240, 0.4) 0%, rgba(255, 255, 255, 0.85) 60%, #ffffff 100%);
    z-index: 3;
}

.header-content {
    position: relative;
    z-index: 4;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 40px;
}

.header-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 4rem;
    margin-bottom: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    /* Gradient Text */
    background: linear-gradient(to right, #143450 0%, #00a8cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 500;
    color: #143450;
    margin-bottom: 20px;
    opacity: 0.9;
    letter-spacing: 1px;
}

.breadcrumb-item a, .breadcrumb-item.active {
    color: #143450;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* CONTACT SECTION */
.contact-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    position: relative;
    margin-top: -100px; /* Pull up over header */
    z-index: 10;
}

.contact-wrapper {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

/* Left Side - Info */
.contact-info-box {
    background: #143450;
    padding: 60px;
    height: 100%;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.circle-decoration {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    z-index: 1;
}

.info-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.info-desc {
    color: rgba(255,255,255,0.7);
    margin-bottom: 40px;
    font-size: 0.95rem;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 35px;
    position: relative;
    z-index: 2;
}

.info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.icon-box {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.info-item:hover .icon-box {
    background: #00a8cc;
    transform: translateY(-3px);
}

.icon-box i {
    font-size: 1.5rem;
    color: #fff;
}

.item-content h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #fff;
}

.item-content p {
    color: rgba(255,255,255,0.7);
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.item-content a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.item-content a:hover {
    color: #00a8cc;
}

.map-directions-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #143450;
    color: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 5;
    transition: all 0.3s ease;
}

.map-directions-btn:hover {
    background: #00a8cc;
    transform: translateY(-2px);
    color: #fff;
}

.map-directions-btn i {
    font-size: 1.1rem;
}

.social-links {
    margin-top: 60px;
    display: flex;
    gap: 15px;
    position: relative;
    z-index: 2;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #fff;
    color: #143450;
    transform: translateY(-3px);
}

/* Right Side - Form */
.contact-form-box {
    padding: 60px;
    background: #fff;
}

.form-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #143450;
    margin-bottom: 40px;
}

.form-group {
    position: relative;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #143450;
    margin-bottom: 8px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-control {
    border: none;
    border-bottom: 2px solid #eee;
    border-radius: 0;
    padding: 10px 0;
    font-size: 1rem;
    color: #333;
    background: transparent;
    transition: all 0.3s ease;
}

.form-control:focus {
    box-shadow: none;
    border-color: #00a8cc;
    background: transparent;
}

.submit-btn {
    margin-top: 20px;
    background: #143450;
    color: #fff;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #00a8cc;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 168, 204, 0.2);
}

.submit-btn i {
    transition: transform 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(5px);
}

/* MAP SECTION */
.map-section {
    height: 450px;
    width: 100%;
    filter: grayscale(100%);
    transition: filter 0.5s ease;
    position: relative;
}

.map-section:hover {
    filter: grayscale(0%);
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .contact-section {
        margin-top: 0;
        padding: 50px 0;
    }
    
    .contact-info-box, .contact-form-box {
        padding: 40px 30px;
    }
    
    .header-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .header-title {
        font-size: 2.5rem;
    }
    
    .submit-btn {
        width: 100%;
        justify-content: center;
    }
}
