/* CONTACT PAGE STYLES */

/* HERO SECTION */
.contact-hero {
    position: relative;
    padding: 80px 0 60px;
    background: linear-gradient(90deg, rgba(17,17,17,0.95) 0%, rgba(17,17,17,0.8) 40%, rgba(17,17,17,0.2) 100%), url('images/brands/contact/hero.webp');
    background-size: cover;
    background-position: center;
    color: white;
    min-height: 550px;
    display: flex;
    align-items: center;
}

.contact-hero-content {
    max-width: 600px;
}

.contact-breadcrumb {
    font-size: 13px;
    color: #bbb;
    margin-bottom: 20px;
    display: block;
    font-weight: 500;
}

.contact-breadcrumb a { color: white; }

.contact-hero h1 {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 15px;
}

.contact-hero h1 span {
    color: var(--primary);
}

.contact-hero p {
    font-size: 15px;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 40px;
}

.contact-features-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.contact-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-feature-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 90, 33, 0.1);
    border: 1px solid var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 18px;
    flex-shrink: 0;
}

.contact-feature-text {
    font-size: 12px;
    font-weight: 700;
    line-height: 1.3;
}

/* CONTACT MAIN SECTION */
.contact-main {
    padding: 60px 0;
    background: var(--bg-white);
    position: relative;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    overflow: hidden;
    margin-top: -80px;
    position: relative;
    z-index: 10;
    border: 1px solid #f0f0f0;
}

.contact-form-side {
    padding: 50px;
    border-right: 1px solid #f0f0f0;
}

.contact-form-side h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--secondary);
}

.contact-form-side p.form-desc {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.6;
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}

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

.form-control {
    width: 100%;
    padding: 14px 20px 14px 20px;
    background: white;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--text-dark);
    transition: var(--transition);
    outline: none;
}

.form-group.has-icon .form-control {
    padding-right: 40px;
}

.form-group.has-icon i {
    position: absolute;
    right: 15px;
    top: 15px;
    color: #bbb;
    font-size: 14px;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 90, 20, 0.1);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.contact-info-side {
    padding: 50px;
    background: #fafafa;
}

.contact-info-side h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 30px;
    color: var(--secondary);
}

.info-card-wrap {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-card-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,90,0,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 20px;
    flex-shrink: 0;
}

.info-card-text h4 {
    font-size: 13px;
    color: var(--secondary);
    margin-bottom: 5px;
    font-weight: 800;
}

.info-card-text p {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-light);
    line-height: 1.5;
}

/* OFFICE LOCATIONS */
.office-locations {
    padding: 40px 0 80px;
    background: white;
    text-align: center;
}

.office-locations .section-title {
    font-size: 32px;
    margin-bottom: 40px;
}

.offices-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.office-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
    border: 1px solid #f0f0f0;
    text-align: left;
}

.office-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: var(--primary);
}

.office-img-wrap {
    position: relative;
    height: 200px;
}

.office-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.office-pin {
    position: absolute;
    bottom: -20px;
    left: 25px;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    color: var(--primary);
    font-size: 18px;
    z-index: 2;
}

.office-content {
    padding: 35px 25px 25px;
}

.office-content h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--secondary);
}

.office-content p {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.5;
}

.office-content p.phone {
    font-weight: 700;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary);
}
.office-content p.phone i {
    color: var(--text-light);
}

/* MAP AND WHY CHOOSE SPLIT SECTION */
.map-why-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #111;
}

/* MAP SIDE */
.map-side {
    position: relative;
    min-height: 500px;
}

.map-embed {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) invert(90%) contrast(1.2); /* Dark map effect */
}

.map-marker-pin {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    gap: 10px;
}

.map-marker-pin i {
    color: var(--primary);
    font-size: 36px;
    filter: drop-shadow(0 5px 10px rgba(0,0,0,0.5));
}

.map-marker-text {
    background: rgba(17,17,17,0.9);
    padding: 8px 15px;
    border-radius: 8px;
    color: white;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
}

/* WHY SIDE */
.why-side {
    padding: 80px 60px;
    background: linear-gradient(rgba(17,17,17,0.9), rgba(17,17,17,0.95)), url('https://images.unsplash.com/photo-1581094288338-2314dddb7ece?q=80&w=1000&auto=format&fit=crop');
    background-size: cover;
    color: white;
}

.why-side h2 {
    font-size: 32px;
    margin-bottom: 40px;
}

.c-why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.c-why-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 25px;
    border-radius: 12px;
    transition: var(--transition);
}

.c-why-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,90,0,0.4);
}

.c-why-card i {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 15px;
}

.c-why-card h4 {
    font-size: 15px;
    margin-bottom: 8px;
}

.c-why-card p {
    font-size: 12px;
    color: #bbb;
    line-height: 1.5;
}

/* CTA BANNER */
.contact-cta {
    background: linear-gradient(135deg, var(--primary), #d94508);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('https://images.unsplash.com/photo-1541888086225-ee826b1c4b72?q=80&w=1920&auto=format&fit=crop');
    opacity: 0.1;
    background-size: cover;
}

.cta-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.cta-flex-text {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cta-icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 24px;
}

.cta-flex-text h2 {
    color: white;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 5px;
}

.cta-flex-text p {
    color: rgba(255,255,255,0.9);
    font-size: 14px;
}

@media (max-width: 1024px) {
    .contact-wrapper { grid-template-columns: 1fr; }
    .contact-form-side { border-right: none; border-bottom: 1px solid #f0f0f0; }
    .map-why-section { grid-template-columns: 1fr; }
    .why-side { padding: 60px 30px; }
    .offices-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .contact-hero h1 { font-size: 40px; }
    .contact-features-list { grid-template-columns: repeat(2, 1fr); }
    .form-row { grid-template-columns: 1fr; }
    .offices-grid { grid-template-columns: 1fr; }
    .c-why-grid { grid-template-columns: 1fr; }
    .cta-flex { flex-direction: column; text-align: center; gap: 20px; }
    .cta-flex-text { flex-direction: column; text-align: center; }
}
