/* ================================
   PREMIUM CONTACT PAGE CSS (cu- prefix)
=================================== */

/* GLOBAL CU CLASSES */
.cu-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ================================
   1. HERO SECTION
=================================== */
.cu-hero {
    position: relative;
    padding: 100px 0;
    background: url('../images/hero.jpg') center/cover no-repeat;
    text-align: center;
}

.cu-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 18, 10, 0.95) 0%, rgba(117, 73, 2, 0.85) 100%);
    z-index: 1;
}

.cu-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cu-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(237, 180, 77, 0.15);
    border: 1px solid rgba(237, 180, 77, 0.4);
    color: #EDB44D;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.cu-title {
    font-size: 50px;
    color: #FFFFFF;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.cu-title span {
    color: #F39C12;
}

.cu-desc {
    font-size: 18px;
    color: #FDFBF7;
    line-height: 1.8;
}

/* ================================
   2. INFO CARDS SECTION
=================================== */
.cu-info-section {
    padding: 60px 0;
    background: #FAF9F4;
    position: relative;
    z-index: 5;
    margin-top: -60px;
}

.cu-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.cu-info-card {
    background: #FFFFFF;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    border: 1px solid #F0E6D8;
    transition: 0.3s ease;
}

.cu-active-card {
    background: linear-gradient(135deg, #754902 0%, #CA7D00 100%);
    color: #FFF;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(117, 73, 2, 0.2);
}

.cu-info-card:hover {
    transform: translateY(-10px);
    border-color: #EDB44D;
}

.cu-icon {
    width: 65px;
    height: 65px;
    background: #FEF2E9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #CA7D00;
    font-size: 26px;
    margin: 0 auto 20px;
    transition: 0.3s;
}

.cu-active-card .cu-icon {
    background: rgba(255, 255, 255, 0.2);
    color: #FFF;
}

.cu-info-card h3 {
    font-size: 22px;
    color: #332009;
    margin-bottom: 10px;
}

.cu-active-card h3 {
    color: #FFF;
}

.cu-info-card p {
    font-size: 15px;
    color: #666;
    margin-bottom: 15px;
}

.cu-active-card p {
    color: #FFEEDA;
}

.cu-link {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #754902;
    text-decoration: none;
    margin-bottom: 5px;
    transition: 0.3s;
}

.cu-active-card .cu-link {
    color: #FFF;
}

.cu-link:hover {
    color: #F39C12;
}

.cu-address, .cu-response-time {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #332009;
}

.cu-active-card .cu-response-time {
    color: #FFF;
    font-size: 14px;
    margin-top: 10px;
    background: rgba(0,0,0,0.15);
    padding: 5px 10px;
    border-radius: 20px;
    display: inline-block;
}

/* ================================
   3. FORM & MAP SECTION
=================================== */
.cu-main-section {
    padding: 60px 0 100px;
    background: #FAF9F4;
}

.cu-wrapper {
    display: flex;
    background: #FFFFFF;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    border: 1px solid #F0E6D8;
}

/* Form Side */
.cu-form-box {
    flex: 1;
    padding: 50px;
}

.cu-form-box h2 {
    font-size: 32px;
    color: #332009;
    margin-bottom: 10px;
}

.cu-form-box p {
    font-size: 16px;
    color: #5B5B5B;
    margin-bottom: 30px;
}

.cu-input-group {
    display: flex;
    gap: 20px;
}

.cu-input-field {
    flex: 1;
    margin-bottom: 20px;
}

.cu-input-field label, .cu-captcha-box label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #332009;
    margin-bottom: 8px;
}

.cu-input-field input, .cu-input-field select, .cu-input-field textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #D9D9D9;
    border-radius: 8px;
    font-size: 15px;
    color: #333;
    font-family: inherit;
    transition: 0.3s;
    background: #FAFAFA;
    box-sizing: border-box;
}

.cu-input-field input:focus, .cu-input-field select:focus, .cu-input-field textarea:focus {
    border-color: #CA7D00;
    background: #FFF;
    outline: none;
    box-shadow: 0 0 0 3px rgba(202, 125, 0, 0.1);
}

/* Captcha Styling */
.cu-captcha-box {
    margin-bottom: 25px;
    background: #FDFBF7;
    padding: 15px 20px;
    border-radius: 8px;
    border: 1px dashed #E8D8C3;
}

.cu-captcha-ui {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cu-math-prob {
    font-size: 20px;
    font-weight: 700;
    color: #754902;
    background: #F7ECD8;
    padding: 8px 15px;
    border-radius: 6px;
    letter-spacing: 2px;
}

.cu-captcha-ui input {
    width: 100px;
    padding: 10px 15px;
    border: 1px solid #D9D9D9;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
}

.cu-captcha-ui input:focus {
    border-color: #27AE60;
    outline: none;
}

.cu-error-text {
    display: block;
    color: #E74C3C;
    font-size: 13px;
    margin-top: 5px;
    font-weight: 600;
}

.cu-submit-btn {
    background: linear-gradient(135deg, #754902 0%, #CA7D00 100%);
    color: #FFF;
    border: none;
    padding: 16px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    justify-content: center;
}

.cu-submit-btn:hover {
    box-shadow: 0 10px 20px rgba(117, 73, 2, 0.2);
    transform: translateY(-2px);
}

/* Map Side */
.cu-map-box {
    flex: 0.8;
    background: #EAEAEA;
    min-height: 100%;
}

/* ================================
   RESPONSIVE QUERIES
=================================== */
@media (max-width: 1100px) {
    .cu-wrapper {
        flex-direction: column;
    }
    .cu-map-box {
        height: 400px;
        min-height: auto;
    }
}

@media (max-width: 991px) {
    .cu-info-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    .cu-info-section {
        margin-top: 0;
        padding: 50px 0;
    }
    .cu-active-card {
        transform: none;
    }
    .cu-info-card:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    .cu-title {
        font-size: 38px;
    }
    .cu-form-box {
        padding: 30px 20px;
    }
    .cu-input-group {
        flex-direction: column;
        gap: 0;
    }
    .cu-form-box h2 {
    font-size: 28px;
    color: #332009;
    margin-bottom: 10px;
}
}