/* ============================================================
   Contact Page Redesign - Premium Architect Theme
   Based on About/Media Redesign
   ============================================================ */

/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Inter:wght@300;400;500&display=swap');

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #d4af37;
    /* Gold */
    --text-color: #4a4a4a;
    --light-bg: #f9f9f9;
    --white: #ffffff;
    --border-color: #e5e5e5;
    --transition: all 0.4s ease;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--primary-color);
    font-weight: 600;
}

/* Page Wrapper */
.contact-page-wrapper {
    overflow-x: hidden;
}

/* Hero Section */
.contact-hero {
    padding: 20px 0 60px;
    background-color: #f8f9fa;
    border-bottom: 1px solid #eee;
}

.hero-content-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    margin-top: 100px;
}

.hero-logo-box {
    width: 300px;
    height: 300px;
    border: 10px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    flex-shrink: 0;
}

.hero-logo-box img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.hero-text-content {
    flex: 1;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 5px;
    line-height: 1;
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
}

.hero-breadcrumbs {
    display: flex;
    gap: 15px;
    color: #999;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Main Content Section */
.contact-content-section {
    padding: 80px 0;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.intro-block {
    margin-bottom: 60px;
}

.intro-title {
    font-size: 2rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.intro-subtitle {
    font-size: 0.9rem;
    color: #999;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.intro-desc {
    color: #666;
    max-width: 600px;
}

/* Contact Cards (Call, Write, Visit) */
.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.contact-card {
    background: #fcfcfc;
    padding: 40px 20px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid #f0f0f0;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    background: #fff;
    border-color: #eee;
}

.card-icon {
    font-size: 2rem;
    color: var(--secondary-color);
    /* Orange/Gold */
    margin-bottom: 20px;
}

.card-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: #333;
}

.card-info {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
}

/* Form and Map Grid */
.form-map-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    /* 1/3 form, 2/3 map to match visual */
    gap: 40px;
    background: #fff;
    border: 1px solid #eee;
    padding: 40px;
}

/* Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    margin-bottom: 0;
}

.form-control {
    width: 100%;
    padding: 15px;
    border: 1px solid #eee;
    background: #fbfbfb;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--secondary-color);
    background: #fff;
}

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

.form-label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.85rem;
    color: #666;
}

.submit-btn {
    background: #e0e0e0;
    color: #999;
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    cursor: pointer;
    align-self: flex-start;
    transition: var(--transition);
}

.submit-btn:hover {
    background: var(--secondary-color);
    color: #fff;
}

/* Map */
.map-container {
    background: #eee;
    width: 100%;
    height: 100%;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .form-map-grid {
        grid-template-columns: 1fr;
    }

    .hero-content-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .hero-logo-box {
        margin: 0 auto;
    }
}