﻿html {
    scroll-behavior: smooth;
}

.content-wrapper{
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-hero {
    background: linear-gradient(135deg, #16a085 0%, #138d75 100%);
    color: #fff;
    padding: 80px 20px;
    text-align: center;
    margin-top: 0;
}

.contact-hero h1 {       color: #fff;
    font-size: 2.8em;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.contact-hero .tagline {     color: #fff;
    font-size: 1.3em;
    margin-bottom: 30px;
    opacity: .95;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0 20px;
}

.contact-card {
    background: white;
    padding: 30px;
    border-top: 1px solid #eee;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,.1);
    text-align: center;
    border-top: 4px solid #16a085;
    transition: transform .3s, box-shadow .3s;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,.15);
}

.contact-icon {
    font-size: 3em;
    margin-bottom: 20px;
    color: #16a085;
}

.contact-card h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.4em;
}

.contact-card p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.contact-card a {
    color: #16a085;
    text-decoration: none;
    font-weight: 600;
}

.contact-card a:hover {
    text-decoration: underline;
}

.info-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    border-top: 1px solid #eee;
    box-shadow: 0 2px 4px rgba(0,0,0,.1);
    margin-bottom: 30px;
}

.info-card h2 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 24px;
    border-left: 4px solid #16a085;
    padding-left: 15px;
}

.info-card p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.address-box {
    background: #f8f9fa;
    padding: 25px;
    margin-top: 10px;
}

.address-box h2 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 24px;
}

.address-box address {
    font-style: normal;
    color: #555;
    line-height: 1.8;
    font-size: 1.05em;
}

.info-box {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 20px;
    margin-top: 20px;
    border-radius: 4px;
}

.info-box p {
    color: #856404;
    margin: 0;
}

.live-chat-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    margin: 50px 0;
}

.live-chat-box h3 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.5em;
}

.live-chat-box p {     color: #fff;
    margin-bottom: 20px;
    font-size: 1.1em;
}

.chat-button {
    background: white;
    color: #667eea;
    padding: 15px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    display: inline-block;
    transition: all .3s;
}

.chat-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,.2);
}

.form-section {
    background: #fff;
    padding: 40px 20px;
    border-top: 1px solid #eee;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,.1);
    margin-top: 40px;
}

.form-section h2 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 2em;
}

.form-intro {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
    font-size: 1.1em;
}

.response-times {
    background: #e8f5e9;
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
}

.response-times h4 {
    color: #1b5e20;
    margin-bottom: 10px;
}

.response-times ul {
    margin: 10px 0 0 20px;
    color: #2e7d32;
}

@media (max-width: 968px) {
    .contact-methods {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .contact-hero h1 {
        font-size: 2em;
    }

    .contact-hero .tagline {
        font-size: 1.1em;
    }
}

h4{
    font-size: 22px;
}

#contact-form, #office-details{
    position: relative;  top: -100px;
}