/* Global Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f4f6f9;
    color: #333;
    line-height: 1.6;
}

/* Color Variables - Option 2: Classic Corporate Blue */
:root {
    --hero-overlay: rgba(5, 46, 180, 0.7);
    --form-background: #052eb4;
    --text-white: #FFFFFF;
    --brand-blue-light: #3F5B8A;
    --brand-blue-dark: #052eb4;

    /* Button Colors */
    --button-primary: #e65100;
    --button-hover: #fd6d1f;
    --button-outline: #FFFFFF;

    /* Form Elements for Light Theme */
    --input-bg: #ffffff;
    --input-border: #ced4da;
    --input-text: #212529;
    --input-placeholder: #6c757d;
}

/* Hero Section */
.hero-section {
    height: calc(50vh + 76px);
    margin-top: 0;
    background: url('pic.svg/main/building.jpg') center/cover no-repeat;
    position: relative;
}

@media (max-width: 767px) {
    .hero-section {
        height: calc(40vh + 76px) !important;
    }
    .hero-title {
        font-size: 1.8rem !important;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 76px 40px 40px;
    text-align: center;
}

.hero-title {
    color: var(--text-white);
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.hero-description {
    color: var(--text-white);
    max-width: 800px;
    margin-bottom: 30px;
    font-size: 1.1rem;
    font-weight: normal;
}

.hero-cta {
    background: transparent;
    border: 2px solid var(--button-outline);
    color: var(--button-outline);
    padding: 12px 40px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-cta:hover {
    background: var(--button-outline);
    color: var(--brand-blue-dark);
}

/* Form Section Redesign */
.form-section {
    background: #ffffff;
    padding: 80px 40px;
    position: relative;
    overflow: hidden;
}

/* Decorative background elements (optional, can be removed for cleaner look) */
.form-section::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(5, 46, 180, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4%;
    align-items: start;
}

.left-column {
    padding-top: 40px;
}

.company-logo-placeholder {
    margin-bottom: 30px;
}

.company-description {
    color: #495057;
    font-size: 1rem;
    line-height: 1.8;
}

.right-column {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}


/* Responsive Design */
@media (max-width: 1023px) {
    .hero-section {
        height: 40vh;
    }

    .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .left-column {
        text-align: center;
        padding-top: 0;
    }


}

@media (max-width: 768px) {
    .hero-section {
        height: 35vh;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-description {
        font-size: 0.9rem;
        display: none;
        /* Hide description on very small screens if needed, or keep it */
    }

    .form-section {
        padding: 40px 20px;
    }

    .right-column {
        padding: 30px 20px;
    }


}