/* Core Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #fff;
    color: #000;
    line-height: 1.5;
}

/* Header */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 6%;
}

.brand-logo {
    width: 180px; /* Adjusted for a larger, prominent look */
    height: auto;
    display: block;
}

.btn-login {
    text-decoration: none;
    background: #000;
    color: #fff;
    padding: 10px 22px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Hero Section */
.hero-text {
    padding: 0 6% 40px 6%;
    font-size: 1.25rem;
    color: #666;
}

/* Contact Card */
.contact-section {
    padding: 0 6% 100px 6%;
}

.contact-card {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    overflow: hidden;
    min-height: 550px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}

.form-container {
    padding: 50px;
}

.form-container h2 {
    margin-bottom: 30px;
    font-size: 1.5rem;
    font-weight: 600;
}

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

.input-group {
    margin-bottom: 25px;
}

.input-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 8px;
}

input, textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
}

.submit-btn {
    width: 100%;
    background: #000;
    color: #fff;
    padding: 16px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
}

/* Architectural Background - Clean Geometric Style */
.card-visual {
    background-color: #f7f7f7;
    background-image: linear-gradient(135deg, #eee 25%, transparent 25%), 
                      linear-gradient(225deg, #eee 25%, transparent 25%), 
                      linear-gradient(45deg, #eee 25%, transparent 25%), 
                      linear-gradient(315deg, #eee 25%, transparent 25%);
    background-size: 60px 60px;
    background-position: 30px 0, 30px 0, 0 0, 0 0;
    opacity: 0.4;
}

/* Footer */
footer {
    border-top: 1px solid #eee;
    padding: 60px 6% 80px 6%;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.footer-address p {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 4px;
}

.brand-logo-small {
    width: 140px; /* Slightly smaller for the footer */
    height: auto;
}

/* Mobile Setup */
@media (max-width: 768px) {
    .contact-card {
        grid-template-columns: 1fr;
    }
    .card-visual {
        display: none;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
}