.page-header {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    padding: 60px 20px;
    text-align: center;
    color: var(--text-light);
    border-radius: 0 0 30px 30px;
}

.page-header-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--text-light);
}

.page-header-divider {
    width: 80px;
    height: 4px;
    background: var(--gold);
    margin: 0 auto 35px;
}

.page-header p {
    color: rgba(255,255,255,0.95);
    font-size: 1.15rem;
    margin-top: 10px;
    font-weight: 500;
}

.about-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    border-radius: var(--radius-lg);
    margin: 60px auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 50px;
    align-items: start;
}

.about-content h2 {
    color: var(--gold);
    font-size: 2rem;
    margin-bottom: 25px;
}

.about-content p {
    color: rgba(255,255,255,0.85);
    font-size: var(--spacing-md);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-cta {
    margin-top: 30px;
}

.btn-primary {
    display: inline-block;
    background: var(--gold);
    color: var(--navy);
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: var(--gold-light);
    color: var(--navy);
    transform: translateY(-2px);
}

.btn-outline {
    display: inline-block;
    background: transparent;
    color: var(--gold);
    padding: 15px 35px;
    border: 2px solid var(--gold);
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--navy);
}

.about-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.team-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 25px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
}

.team-img-wrapper {
    width: 144px;
    height: 205px;
    margin: 0 auto 15px;
    border-radius: 72px / 102px;
    border: 5px solid var(--gold);
    box-shadow: 0 0 0 3px var(--gold), 0 4px 20px rgba(200,150,43,0.3);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy);
}

.team-card img {
    width: 164px;
    height: 230px;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.team-card h3 {
    color: var(--gold);
    margin-bottom: 5px;
}

.team-card p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 15px;
}

.team-email {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
}

.team-email:hover {
    color: var(--text-light);
}

.trust-section {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    padding: 60px 20px;
    text-align: center;
}

.trust-content {
    max-width: 800px;
    margin: 0 auto;
}

.trust-content h2 {
    color: var(--gold);
    font-size: 2rem;
    margin-bottom: 20px;
}

.trust-content p {
    color: rgba(255,255,255,0.85);
    font-size: var(--spacing-md);
    line-height: 1.8;
    margin-bottom: 30px;
}

.trust-content h2 i {
    color: var(--gold);
    margin-right: 10px;
}

.trust-badges-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.trust-badges-row img {
    max-width: 180px;
}

.contact-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    border-radius: var(--radius-lg);
    margin: 60px auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 50px;
}

.contact-form-wrapper {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.08);
    border: 1px solid var(--border-light);
}

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

.contact-form-modern .form-group {
    margin-bottom: 20px;
}

.contact-form-modern label {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
    color: var(--gold);
    font-weight: 500;
}

.contact-form-modern label i {
    color: var(--gold);
}

.contact-form-modern input,
.contact-form-modern textarea {
    width: 100%;
    padding: 14px var(--spacing-md);
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-sm);
    font-size: 15px;
    transition: border-color 0.3s;
    background: var(--bg-input);
    color: var(--text-light);
}

.contact-form-modern input:focus,
.contact-form-modern textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255,255,255,0.15);
}

.contact-form-modern textarea {
    min-height: 150px;
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--navy);
    border: none;
    border-radius: var(--radius-sm);
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit:hover {
    color: var(--navy);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-card {
    background: linear-gradient(135deg, rgba(200,150,43,0.15) 0%, rgba(200,150,43,0.05) 100%);
    border-radius: var(--radius-lg);
    padding: 20px 25px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    border: 1px solid rgba(200,150,43,0.3);
    transition: all 0.3s;
}

.contact-card:hover {
    border-color: var(--gold);
    transform: translateX(-5px);
}

.contact-card-icon {
    width: 50px;
    height: 50px;
    background: var(--gold);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--navy);
    flex-shrink: 0;
}

.contact-card h3 {
    color: var(--gold);
    font-size: 1.15rem;
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
}

.contact-card p {
    color: rgba(255,255,255,0.95);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
    font-weight: 500;
}

.contact-card a {
    color: var(--teal);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.contact-card a:hover {
    color: var(--gold);
}

.contact-card .emergency {
    color: #ff6b6b;
    font-weight: 700;
    margin-top: 5px;
    font-size: 13px;
}

.contact-card .emergency i {
    color: #ff6b6b;
    margin-right: 5px;
}

.contact-social {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 10px;
    padding: 15px;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-md);
}

.contact-social a {
    width: 50px;
    height: 50px;
    background: var(--navy);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.contact-social a:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-3px);
    border-color: var(--gold);
}

.map-section {
    height: 450px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.asectionzz {
    padding: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
}

.asectionzz .heading h1 {
    font-size: 3.5em;
    color: var(--teal-light);
    font-weight: 700;
}

.asectionzz .underline {
    width: 180px;
    height: 4px;
    background-color: var(--teal-light);
    margin: 10px auto;
}

.asectionzz .sidebar {
    width: 30%;
    float: right;
    text-align: center;
}

.asectionzz .sidebar img {
    width: 100%;
}

.asectionzz .sidebar img:first-child {
    margin-bottom: 20px;
}

.asectionzz .content {
    width: 65%;
    float: left;
    text-align: left;
}

.asectionzz .content-text {
    font-size: 18px;
    line-height: 1.6;
    margin-top: 40px;
}

.worksection {
    width: 70%;
    margin-top: -550px;
    margin-left: 15%;
    z-index: 4;
    color: var(--text-light);
    text-align: left;
    font-family: helvetica-w01-roman;
}

.worksectionp1 {
    background-color: var(--navy);
    z-index: 9;
    height: 410px;
    width: 14%;
    float: left;
    margin-left: 4%;
    position: relative;
    border-radius: 70px;
    margin-right: 5%;
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    .about-sidebar {
        flex-direction: row;
        flex-wrap: wrap;
    }
    .team-card {
        flex: 1;
        min-width: 250px;
    }
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .contact-form-modern .form-row {
        grid-template-columns: 1fr;
    }
}
