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

body {
    font-family: 'Manrope', sans-serif;
    background-color: #0d114a; /* Fallback */
    background-image: url('Rectangle.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.brochure-container {
    width: 100%;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brochure-content {
    max-width: 1100px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
}

/* Left Section */
.left-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 600px;
    padding: 2rem 0;
}

.logo {
    height: 48px;
    width: auto;
    object-fit: contain;
    align-self: flex-start;
}

.text-content {
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.sub-heading {
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.main-heading {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -1px;
}

.muted-text {
    color: rgba(255, 255, 255, 0.4);
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: opacity 0.2s;
}

.back-link:hover {
    opacity: 0.8;
}

/* Right Section */
.right-section {
    flex: 1;
    max-width: 500px;
    position: relative;
}

.form-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 3rem 2.5rem;
    color: #1a1a1a;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.badge-icon {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 90px;
    height: 90px;
    z-index: 10;
}

.form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #E0E0E0;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.mac-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red { background-color: #FF5F56; }
.dot.yellow { background-color: #FFBD2E; }
.dot.green { background-color: #27C93F; }

.form-duration {
    color: #666666;
    font-size: 0.95rem;
    font-weight: 500;
}

/* Form Styles */
#brochureForm {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

#brochureForm input {
    width: 100%;
    padding: 16px 0;
    border: none;
    border-bottom: 1px solid #034694;
    border-radius: 0;
    font-size: 1rem;
    font-family: 'Manrope', sans-serif;
    outline: none;
    background: transparent;
    transition: border-color 0.3s;
    color: #1A1A1A;
}

#brochureForm input:focus {
    border-color: #034694;
}

#brochureForm input::placeholder {
    color: #666666;
}

/* Submit Button */
.submit-btn {
    background-color: #000;
    color: white;
    border: none;
    border-radius: 30px;
    padding: 16px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 1rem;
}

.submit-btn:hover {
    background-color: #333;
}

/* intl-tel-input overrides */
.iti {
    width: 100%;
    color: #1a1a1a;
}
.iti input[type="tel"] {
    padding-left: 90px !important;
}
.iti__flag-container {
    top: 0;
}
.iti__selected-flag {
    background-color: transparent !important;
    padding: 0 8px 0 0 !important;
}
.iti__country-list {
    background-color: #fff;
    color: #1a1a1a;
    border-radius: 12px;
    box-shadow: 0 12px 36px rgba(0,0,0,0.1), 0 4px 12px rgba(0,0,0,0.06);
    border: none;
    font-family: 'Manrope', sans-serif;
    margin-top: 8px;
    padding: 8px !important;
}
.iti__country {
    padding: 10px 12px !important;
    border-radius: 6px;
    transition: background-color 0.2s ease;
    margin-bottom: 2px;
    display: flex;
    align-items: center;
}
.iti__country:last-child {
    margin-bottom: 0;
}
.iti__country:hover {
    background-color: #f1f5f9 !important;
}
.iti__country-name {
    font-weight: 500;
    color: #334155;
    flex-grow: 1;
    text-align: left;
}
.iti__dial-code {
    color: #64748b;
    margin-left: 12px;
}
.iti__selected-dial-code {
    color: #1a1a1a;
    font-weight: 600;
    font-size: 1rem;
    margin-left: 8px;
}
.iti__arrow {
    margin-left: 6px;
    border-top-color: #666;
}
.iti__arrow--up {
    border-bottom-color: #666;
}

/* Responsive */
@media (max-width: 900px) {
    .brochure-content {
        flex-direction: column;
        gap: 3rem;
    }
    .left-section {
        min-height: auto;
        text-align: center;
        align-items: center;
        padding: 0;
    }
    .logo {
        align-self: center;
        margin-bottom: 2rem;
    }
    .text-content {
        margin-top: 0;
        margin-bottom: 2rem;
    }
    .main-heading {
        font-size: 2.5rem;
    }
    .badge-icon {
        width: 70px;
        height: 70px;
        top: -20px;
        right: -10px;
    }
}
@media (max-width: 480px) {
    .form-card {
        padding: 2rem 1.5rem;
    }
    .main-heading {
        font-size: 2rem;
    }
}
