/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow: hidden; /* Prevent scrolling */
}

/* Hero section */
.hero {
    height: 100vh;
    background-image: url('assets/2106West-2BW.png');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay for better text readability */
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero .content {
    position: relative;
    z-index: 1;
}

.contact-section {
    position: relative;
    z-index: 1;
}

.overlay {
    display: none !important;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 2;
}

/* Content section */
.hero .content {
    max-width: 600px;
    text-align: left;
    padding: 0;
    margin: 0;
    background: transparent;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero .subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

/* Contact section */
.contact-section {
    flex: 0 0 auto;
    width: 600px;
    margin: 0;
    padding: 0;
    background: none;
}

.contact-section h2 {
    text-align: left;
    margin-bottom: 25px;
    font-size: 2rem;
    color: white;
}

/* --- Modern Underline Form Styles --- */
.modern-form {
    background: #fff !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    border: none !important;
    padding: 32px;
    max-width: 600px;
    min-width: 600px;
    width: 600px;
    margin: 0;
    min-height: auto;
    z-index: 2;
    align-self: flex-end;
}

.form-title {
    font-size: 2.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: #111;
    text-align: center;
    margin-bottom: 0.5rem;
    margin-top: 0;
}

.form-phone {
    text-align: center;
    color: #222;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.form-row {
    display: flex;
    gap: 24px;
    margin-bottom: 0.5rem;
}

.form-row .form-group {
    flex: 1;
    margin-bottom: 0;
}

.form-group {
    margin-bottom: 1.1rem;
    display: flex;
    flex-direction: column;
}

label {
    font-size: 1rem;
    color: #111;
    margin-bottom: 0.2rem;
    font-weight: 400;
}

input,
select,
textarea {
    border: none;
    border-bottom: 2px solid #111;
    border-radius: 0;
    background: transparent;
    font-size: 1.1rem;
    padding: 6px 0 4px 0;
    margin-bottom: 0.1rem;
    color: #111;
    transition: border-color 0.2s;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-bottom: 2px solid #000;
}

select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: transparent;
}

textarea {
    min-height: 32px;
    resize: vertical;
}

.submit-btn {
    background: #111;
    color: #fff;
    border: none;
    border-radius: 0;
    font-size: 1.2rem;
    font-weight: 500;
    padding: 14px 0;
    margin-top: 10px;
    letter-spacing: 2px;
    width: 100%;
    cursor: pointer;
    transition: background 0.2s;
}
.submit-btn:hover {
    background: #000;
}

.form-disclaimer {
    font-size: 0.8rem;
    color: #444;
    text-align: center;
    margin: 18px 0 0 0;
    line-height: 1.2;
}

.form-status {
    margin-top: 10px;
}

/* Form status messages */
.form-status {
    margin-top: 15px;
    padding: 12px;
    border-radius: 6px;
    text-align: center;
    display: none;
    font-size: 0.95rem;
}

.form-status.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-status.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* Footer */
footer {
    position: static;
    background-color: #fff;
    color: #111;
    padding: 10px 0;
    text-align: left;
    font-size: 0.9rem;
    backdrop-filter: none;
    margin-top: auto;
}

/* Responsive design */
@media (max-width: 1200px) {
    .container {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding: 20px;
    }

    .hero .content {
        text-align: center;
        margin-bottom: 30px;
    }

    .contact-section {
        width: 100%;
        max-width: 600px;
    }

    .modern-form {
        width: 100%;
        min-width: unset;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero .subtitle {
        font-size: 1.2rem;
    }

    .container {
        padding: 20px 15px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero .subtitle {
        font-size: 1.1rem;
    }

    .modern-form {
        padding: 20px 15px;
    }
}

/* Remove old box styles from .contact-form if present */
.contact-form {
    background: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
}

/* Responsive for mobile */
@media (max-width: 700px) {
    .modern-form {
        padding: 14px 4px 8px 4px;
        max-width: 98vw;
        min-width: unset;
    }
    .container {
        padding: 0 4px;
    }
    .hero {
        align-items: flex-start;
        justify-content: center;
    }
}

.page-border {
    background: #fff;
    margin: 0 auto 0 auto;
    padding: 0;
    border-radius: 0;
    max-width: calc(100vw - 8rem);
    max-height: calc(100vh - 8rem);
    min-height: 100vh;
    box-shadow: none;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.site-logo {
    display: block;
    margin: 0;
    width: auto;
    height: auto;
    max-width: 300px;
    max-height: 82px;
}

/* Header styles */
.site-header {
    padding: 30px 0;
    margin: 0;
    background: #fff;
    position: relative;
    z-index: 10;
}

/* Remove all navigation styles */

/* Responsive header */
@media (max-width: 1200px) {
    .header-container {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .main-nav ul {
        gap: 20px;
    }

    .main-nav a {
        font-size: 1rem;
    }
}

.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0;
    box-sizing: border-box;
}

.header-links {
    display: flex;
    gap: 32px;
}

.header-links a {
    color: #111;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.2s;
}

.header-links a:hover {
    color: #000;
} 