/* ===========================
   Contact Us Page Styles
   =========================== */

/* Hero Banner */
.contact-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.contact-hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="15" fill="rgba(134,177,74,0.05)"/><circle cx="80" cy="80" r="20" fill="rgba(242,101,34,0.05)"/></svg>');
}
.contact-hero-inner {
    position: relative;
    z-index: 2;
}
.contact-hero-label {
    color: #2a4e21 !important;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.contact-hero h1 {
    color: #fff !important;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
}
.contact-hero h1 span { color: #2a4e21 !important; }
.contact-hero-sub {
    color: rgba(255,255,255,0.8) !important;
    font-size: 16px;
    max-width: 500px;
    margin: 0 auto;
}

/* Info Cards Section */
.contact-info-section {
    background: #f8f9fa;
    padding: 50px 0;
}
.contact-info-col { margin-bottom: 20px; }

.contact-info-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.07);
    height: 100%;
    transition: transform 0.2s ease;
}
.contact-info-card:hover { transform: translateY(-4px); }
.contact-info-card.card-green { border-top: 4px solid #2a4e21; }
.contact-info-card.card-orange { border-top: 4px solid #F26522; }

.contact-icon-wrap {
    width: 60px; height: 60px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 18px;
}
.contact-icon-wrap.icon-green { background: linear-gradient(135deg, #2a4e21, #5a8a2e); }
.contact-icon-wrap.icon-orange { background: linear-gradient(135deg, #F26522, #c44d0e); }
.contact-icon-wrap i { color: #fff; font-size: 22px; }

.contact-info-card h3 {
    color: #1a1a1a;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}
.contact-info-card p {
    color: #777;
    font-size: 14px;
    margin-bottom: 5px;
    line-height: 1.6;
}
.contact-info-card a.link-green {
    color: #2a4e21;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
}
.contact-info-card a.link-orange {
    color: #F26522;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
}

/* Map + Form Section */
.contact-main-section {
    padding: 60px 0;
    background: #fff;
}
.contact-map-col { margin-bottom: 40px; }
.contact-map-col h2 {
    color: #1a1a1a;
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 8px;
}
.contact-map-col h2 span { color: #2a4e21; }
.contact-map-col > p {
    color: #555;
    font-size: 18px;
    margin-bottom: 20px;
}
.map-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    margin-bottom: 20px;
}
.map-wrapper iframe { border: 0; display: block; }

.gstin-box {
    background: #f0f9e8;
    border-radius: 12px;
    padding: 18px 20px;
    border-left: 4px solid #2a4e21;
}
.gstin-box strong {
    color: #1a1a1a;
    font-size: 18px;
    display: block;
    margin-bottom: 5px;
}
.gstin-box strong i { color: #2a4e21; margin-right: 6px; }
.gstin-box span {
    color: #555;
    font-size: 18px;
    font-family: monospace;
    letter-spacing: 1px;
}

/* Contact Form Card */
.contact-form-card {
    background: #fff;
    border-radius: 20px;
    padding: 45px 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.10);
}
.contact-form-card h2 {
    color: #1a1a1a;
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 6px;
}
.contact-form-card h2 span { color: #2a4e21; }
.contact-form-card > p {
    color: #555;
    font-size: 18px;
    margin-bottom: 30px;
}

/* Premium Form Fields */
.premium-form label {
    font-size: 18px;
    font-weight: 700;
    color: #555;
    margin-bottom: 6px;
    display: block;
}
.premium-form label .required-star { color: #F26522; }
.premium-form .form-control {
    border: 1.5px solid #e0e0e0;
    border-radius: 10px;
    padding: 16px 20px;
    font-size: 18px;
    width: 100%;
    transition: border-color 0.3s;
    outline: none;
}
.premium-form .form-control:focus {
    border-color: #2a4e21;
    box-shadow: 0 0 0 3px rgba(134,177,74,0.1);
}
.premium-form textarea.form-control {
    resize: vertical;
    min-height: 130px;
}
.form-group-mb { margin-bottom: 18px; }

.premium-submit {
    background: linear-gradient(135deg, #2a4e21, #5a8a2e);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 18px 45px;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    letter-spacing: 0.5px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.premium-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(134,177,74,0.4);
}
.premium-submit i { margin-right: 8px; }
