/* Section Base */
.contact-us-section {
    padding: 100px 0px; /* Increased vertical padding */
    font-family: 'THICCCBOI Light', sans-serif;
    background-color: #ffffff;
    
    /* Reveal Animation Base State */
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.contact-us-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.container-custom {
    margin: 0 auto;
    padding: 0 20px;
}

/* Grid Layout */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px; /* Increased gap between columns */
    align-items: center; /* Center align vertically */
}

/* Left Column Styling */
.contact-info-col {
    padding-right: 20px;
}

.contact-main-heading {
    font-family: 'THICCCBOI', sans-serif;
    font-size: 56px; /* Increased font size */
    font-weight: 700;
    color: #111827;
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.contact-sub-text {
    font-family: 'THICCCBOI Light', sans-serif;
    font-size: 20px; /* Increased font size */
    color: #4B5563;
    line-height: 1.6;
    margin-bottom: 48px;
    max-width: 480px;
}

.contact-email-wrapper {
    margin-top: 20px;
}

.contact-email-link {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-size: 20px;
    color: #111827;
    text-decoration: none;
    font-weight: 600; /* Slightly bolder */
    font-family: 'THICCCBOI', sans-serif;
    transition: color 0.3s ease;
}

.contact-email-link:hover {
    color: #0085FE;
}

.contact-icon {
    color: #0085FE;
    width: 28px;
    height: 28px;
}

/* Right Column Form Styling */
.contact-form-box {
    background-color: #ffffff;
    border-radius: 24px; /* More rounded */
    padding: 48px; /* Increased padding */
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08); /* Softer, larger shadow */
    border: 1px solid rgba(0,0,0,0.03);
}

.form-header {
    margin-bottom: 32px;
}

.form-title {
    font-family: 'THICCCBOI', sans-serif;
    font-size: 30px; /* Increased */
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
}

.form-subtitle {
    font-family: 'THICCCBOI Light', sans-serif;
    font-size: 18px;
    color: #6B7280;
}

/* Form Fields */
.sinq-contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px; /* Increased gap between fields */
}

.form-row {
    display: flex;
    gap: 24px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.full-width {
    width: 100%;
}

.form-input, 
.form-textarea,
.country-code-select {
    width: 100%;
    padding: 16px 20px; /* Larger padding for inputs */
    border: 1px solid #E5E7EB;
    border-radius: 12px; /* Rounded inputs */
    font-family: 'THICCCBOI', sans-serif; /* Cleaner font for inputs */
    font-size: 16px;
    color: #111827;
    background-color: #F9FAFB;
    transition: all 0.3s ease;
    outline: none;
}

.form-input:focus,
.form-textarea:focus,
.country-code-select:focus {
    border-color: #0085FE;
    box-shadow: 0 0 0 4px rgba(0, 133, 254, 0.1);
    background-color: #ffffff;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #9CA3AF;
    font-family: 'THICCCBOI Light', sans-serif;
}

/* Phone Input Specifics */
.phone-input-wrapper {
    display: flex;
    gap: 12px;
}

.country-code-select {
    width: 100px;
    flex-shrink: 0;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 32px;
}

.contact-submit-btn {
    width: 100%;
    margin-top: 16px;
    cursor: pointer;
    border: none;
    padding: 18px 30px; /* Taller button */
    font-size: 18px;
    border-radius: 12px;
}

/* Reveal Item Helper */
.contact-reveal-on-scroll.is-visible .contact-reveal-item {
    opacity: 1;
    transform: translateY(0);
}

.contact-reveal-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.contact-delay-200 {
    transition-delay: 0.2s;
}

/* Responsive */
@media (max-width: 1024px) {
    .contact-grid {
        gap: 40px;
    }
    
    .contact-main-heading {
        font-size: 48px;
    }
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .contact-info-col {
        text-align: center;
        padding-right: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .contact-sub-text {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 640px) {
    .contact-us-section {
        padding: 60px 15px;
    }

    .form-row {
        flex-direction: column;
        gap: 20px;
    }
    
    .contact-main-heading {
        font-size: 36px;
    }
    
    .contact-form-box {
        padding: 30px 24px;
    }
}