/* =============================================
   LCHOTFIX CONTACT PAGE - NEW REDESIGNED STYLES
   File: contact-new.css
   Version: 1.0
   ============================================= */

/* =============================================
   SECTION 1: HERO SECTION
   ============================================= */

.lcx-contact-hero {
    background: #000000;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.lcx-contact-hero-wrapper {
    display: flex;
    align-items: stretch;
    gap: 30px;
}

.lcx-contact-hero-left {
    flex: 1;
    position: relative;
}

.lcx-contact-hero-title {
    font-family: 'Koulen', sans-serif;
    font-size: 80px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 8px;
    margin-bottom: 30px;
    line-height: 1;
}

.lcx-contact-hero-img {
    width: 100%;
    max-width: 500px;
    height: 280px;
    object-fit: cover;
    border-radius: 12px;
}

/* =============================================
   SECTION 2: ADDRESS & CONTACT INFO
   ============================================= */

.lcx-address-wrapper {
    margin-top: 40px;
}

.lcx-address-block {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.lcx-address-icon-circle {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #b87333 0%, #cd853f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.lcx-address-icon-circle img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.lcx-address-icon-circle i {
    color: #fff;
    font-size: 20px;
}

.lcx-address-text h4 {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.lcx-address-text p {
    color: #ccc;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

/* Contact Info Section */
.lcx-contact-info-wrapper {
    margin-top: 30px;
}

.lcx-contact-info-block {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.lcx-contact-info-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #b87333 0%, #cd853f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lcx-contact-info-icon i {
    color: #fff;
    font-size: 18px;
}

.lcx-contact-pill-btn {
    background: #b87333;
    color: #fff;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.lcx-contact-pill-btn:hover {
    background: #9a5f2a;
    color: #fff;
    transform: translateY(-2px);
}

.lcx-contact-btns-row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 10px;
}

/* =============================================
   SECTION 3: LIVE SUPPORT CARD
   ============================================= */

.lcx-livesupport-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    max-width: 200px;
    margin-top: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.lcx-livesupport-head {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.lcx-livesupport-head i {
    color: #4285f4;
    font-size: 16px;
}

.lcx-livesupport-head span {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.lcx-livesupport-icons {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.lcx-livesupport-icons a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.lcx-livesupport-icons a:hover {
    transform: scale(1.1);
}

.lcx-livesupport-icons .lcx-icon-whatsapp {
    background: #25d366;
    color: #fff;
}

.lcx-livesupport-icons .lcx-icon-call {
    background: #007bff;
    color: #fff;
}

.lcx-livesupport-phone {
    font-size: 13px;
    color: #666;
    margin: 0;
}

/* Message Prompt */
.lcx-message-prompt {
    margin-top: 40px;
}

.lcx-message-prompt-title {
    color: #fff;
    font-size: 28px;
    margin-bottom: 10px;
}

.lcx-message-prompt-sub {
    color: #ccc;
    font-size: 18px;
}

/* =============================================
   SECTION 4: FORM CARD
   ============================================= */

.lcx-form-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    height: 100%;
}

.lcx-form-title-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
}

.lcx-form-title-icon {
    width: 24px;
    height: 24px;
}

.lcx-form-title-icon img {
    color: #b87333;
}

.lcx-form-title-text {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin: 0;
    text-transform: uppercase;
}

/* =============================================
   SECTION 5: BOTTOM BANNER (REDESIGNED)
   ============================================= */

.lcx-bottom-banner {
    background: black;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.lcx-banner-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #b87333 0%, #d4a574 25%, #b87333 50%, #d4a574 75%, #b87333 100%);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.lcx-bottom-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* Left Side */
.lcx-banner-left {
    flex: 1;
}

.lcx-banner-tagline {
    display: inline-block;
    background: linear-gradient(135deg, #b87333 0%, #d4a574 100%);
    color: #fff;
    padding: 8px 20px;
    border-radius: 8px;
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.lcx-banner-headline {
    font-family: 'Koulen', sans-serif;
    font-size: 36px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 0 0 12px 0;
    line-height: 1.2;
}

.lcx-banner-subtext {
    color: #999;
    font-size: 16px;
    margin: 0;
    max-width: 400px;
}

/* Right Side */
.lcx-banner-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 25px;
}

/* Stats */
.lcx-banner-stats {
    display: flex;
    align-items: center;
    gap: 25px;
    background: rgba(255,255,255,0.05);
    padding: 20px 30px;
    border-radius: 12px;
    border: 1px solid rgba(184, 115, 51, 0.3);
}

.lcx-stat-item {
    text-align: center;
}

.lcx-stat-number {
    display: block;
    font-family: 'Koulen', sans-serif;
    font-size: 32px;
    color: #b87333;
    line-height: 1;
}

.lcx-stat-label {
    display: block;
    font-size: 12px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.lcx-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(184, 115, 51, 0.3);
}

/* Action Buttons */
.lcx-banner-actions {
    display: flex;
    gap: 15px;
}

.lcx-banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lcx-banner-btn i {
    font-size: 18px;
}

.lcx-banner-btn.lcx-btn-primary {
    background: linear-gradient(135deg, #b87333 0%, #d4a574 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(184, 115, 51, 0.4);
}

.lcx-banner-btn.lcx-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(184, 115, 51, 0.5);
    color: #fff;
}

.lcx-banner-btn.lcx-btn-whatsapp-banner {
    background: #25d366;
    color: #fff;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.lcx-banner-btn.lcx-btn-whatsapp-banner:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
    background: #20ba5a;
    color: #fff;
}

/* Banner Responsive */
@media (max-width: 991px) {
    .lcx-bottom-banner {
        padding: 40px 0;
    }
    
    .lcx-bottom-banner-inner {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .lcx-banner-left {
        text-align: center;
    }
    
    .lcx-banner-subtext {
        max-width: 100%;
    }
    
    .lcx-banner-right {
        align-items: center;
    }
    
    .lcx-banner-headline {
        font-size: 28px;
    }
    
    .lcx-banner-stats {
        padding: 15px 20px;
        gap: 15px;
    }
    
    .lcx-stat-number {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .lcx-banner-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .lcx-stat-divider {
        width: 60px;
        height: 1px;
    }
    
    .lcx-banner-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .lcx-banner-btn {
        justify-content: center;
    }
    
    .lcx-banner-headline {
        font-size: 22px;
        letter-spacing: 1px;
    }
}

/* =============================================
   SECTION 6: LOCATE US SECTION
   ============================================= */

.lcx-locate-section {
    padding: 80px 0;
    background: #fff;
}

.lcx-locate-title {
    font-family: 'Koulen', sans-serif;
    font-size: 48px;
    color: #b87333;
    font-weight: 400;
    letter-spacing: 2px;
}

.lcx-branch-main-info {
    font-size: 18px;
    color: #666;
}

.lcx-branch-highlight {
    color: #b87333;
}

.lcx-branch-cta-btn {
    background: #b87333;
    color: #fff;
    padding: 10px 25px;
    border-radius: 8px;
    margin-left: 20px;
    text-decoration: none;
    display: inline-block;
}

.lcx-branch-cta-btn:hover {
    background: #9a5f2a;
    color: #fff;
}

/* Branch Cards */
.lcx-branch-card-header {
    text-align: center;
    margin-bottom: 15px;
}

.lcx-branch-card-title {
    color: #b87333;
    font-size: 20px;
    margin-bottom: 5px;
}

.lcx-branch-card-subtitle {
    color: #666;
    font-size: 14px;
}

.lcx-branch-features-list {
    list-style: disc;
    padding-left: 40px;
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
}

.lcx-branch-map-frame {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.lcx-branch-map-frame iframe {
    border: 0;
}

.lcx-branch-details {
    text-align: center;
    margin-top: 20px;
}

.lcx-branch-name {
    color: #333;
    font-weight: 600;
}

.lcx-branch-address {
    color: #666;
    font-size: 14px;
    margin-bottom: 5px;
}

.lcx-branch-hours-label {
    color: #b87333;
    font-weight: 600;
    margin-top: 15px;
}

.lcx-branch-hours-time {
    color: #666;
    font-size: 14px;
}

.lcx-branch-hours-note {
    color: #999;
    font-size: 12px;
}

/* =============================================
   SECTION 7: CONTACT TEAM SECTION
   ============================================= */

.lcx-team-section {
    padding: 80px 0;
    background: #fafafa;
    border-top: 3px solid #b87333;
}

.lcx-team-title {
    font-family: 'Koulen', sans-serif;
    font-size: 42px;
    color: #b87333;
    font-weight: 400;
}

.lcx-team-subtitle {
    color: #b87333;
    font-size: 18px;
    margin-top: 10px;
}

.lcx-team-photo-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.lcx-team-photo-img {
    width: 100%;
    height: auto;
}

/* Team Contact Blocks */
.lcx-team-contact-block {
    margin-bottom: 40px;
}

.lcx-team-contact-title {
    color: #b87333;
    font-size: 22px;
    margin-bottom: 15px;
    font-family: 'Times New Roman', serif;
}

.lcx-team-contact-desc {
    color: #666;
    font-size: 15px;
    margin-bottom: 10px;
}

.lcx-team-contact-desc-spacer {
    color: #666;
    font-size: 15px;
    margin-bottom: 20px;
}

.lcx-team-social-icons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.lcx-team-social-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: transform 0.3s;
}

.lcx-team-social-btn:hover {
    transform: scale(1.1);
    color: #fff;
}

.lcx-team-social-btn.lcx-btn-whatsapp {
    background: #25d366;
    font-size: 24px;
}

.lcx-team-social-btn.lcx-btn-phone {
    background: #28a745;
    font-size: 20px;
}

.lcx-team-social-btn.lcx-btn-email {
    background: #b87333;
    font-size: 20px;
}

/* Utility classes */
.lcx-mb-20 {
    margin-bottom: 20px !important;
}

.lcx-no-margin {
    margin-bottom: 0 !important;
}

/* Loading Overlay */
.lcx-loading-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
}

.lcx-loading-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.lcx-loading-spinner {
    width: 3rem;
    height: 3rem;
}

/* Upload Progress */
.lcx-upload-progress {
    display: none;
}

.lcx-progress-bar-height {
    height: 20px;
}

.lcx-progress-fill-initial {
    width: 0%;
}

/* reCAPTCHA Box */
.lcx-captcha-box {
    margin-top: 20px;
}

/* Submit Button */
.lcx-submit-btn {
    cursor: pointer;
    z-index: 10;
    position: relative;
}

/* File Input Hidden */
.lcx-file-hidden {
    display: none;
}

/* Dynamic Alert Styles (generated by JS) */
.lcx-alert-dynamic {
    margin-top: 20px;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.lcx-alert-icon {
    font-size: 1.2em;
}

/* =============================================
   SECTION 8: FORM INPUT STYLES
   ============================================= */

/* Standard input field styling for all types */
.contact-page__input-box input[type="text"], 
.contact-page__input-box input[type="email"],
.contact-page__input-box input[type="tel"],
.contact-page__input-box input[type="number"],
.contact-page__input-box input[type="date"] {
    height: 56px;
    width: 100%;
    background-color: transparent;
    border: 1px solid #e0e0e0;
    padding-left: 25px;
    padding-right: 25px;
    outline: none;
    font-size: 16px;
    color: #666;
    display: block;
    font-weight: 500;
    border-radius: 8px;
}

/* Focus states for all input types */
.contact-page__input-box input[type="text"]:focus,
.contact-page__input-box input[type="email"]:focus,
.contact-page__input-box input[type="tel"]:focus,
.contact-page__input-box input[type="number"]:focus,
.contact-page__input-box input[type="date"]:focus {
    border-color: #b87333;
    box-shadow: 0 0 0 0.2rem rgba(184, 115, 51, 0.25);
}

/* Textarea styling */
.contact-page__input-box textarea {
    width: 100%;
    background-color: transparent;
    border: 1px solid #e0e0e0;
    padding-left: 25px;
    padding-right: 25px;
    padding-top: 15px;
    outline: none;
    font-size: 16px;
    color: #666;
    display: block;
    font-weight: 500;
    border-radius: 8px;
    min-height: 120px;
    resize: vertical;
}

.contact-page__input-box textarea:focus {
    border-color: #b87333;
    box-shadow: 0 0 0 0.2rem rgba(184, 115, 51, 0.25);
}

/* File input styling */
.file-input-box input[type="file"] {
    display: none;
}

.file-input-box input[type="text"] {
    cursor: pointer;
    background-color: transparent !important;
}

.file-input-box input[type="text"]:hover {
    background-color: #f8f9fa !important;
}

/* Select dropdown styling */
.contact-page__input-box select.nice-select {
    width: 100%;
    height: 56px;
    border: 1px solid #e0e0e0;
    background-color: transparent;
    font-size: 16px;
    padding-left: 25px;
    color: #666;
    font-weight: 500;
    border-radius: 8px;
}

.contact-page__input-box select.nice-select:focus {
    border-color: #b87333;
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(184, 115, 51, 0.25);
}

/* Placeholder styling */
.contact-page__input-box input::placeholder,
.contact-page__input-box textarea::placeholder {
    color: #999;
    opacity: 0.8;
}

/* Validation error states */
.contact-page__input-box input.is-invalid,
.contact-page__input-box textarea.is-invalid,
.contact-page__input-box select.is-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.nice-select {
    height: 55px !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 8px !important;
}

.nice-select:focus {
    border-color: #b87333 !important;
}

h3.about-two__call-number {
    text-align: start;
}

p.about-two__call-sub-title {
    text-align: start;
}

.about-two__call-icon2 {
    justify-content: flex-start;
}

/* reCAPTCHA styling */
.contact-page__captcha-box {
    margin: 20px 0;
}

.g-recaptcha {
    display: inline-block;
}

/* Hide input icons for cleaner look */
.contact-page__input-icon {
    display: none;
}

/* Submit button styling */
.contact-page__btn {
    background: #b87333 !important;
    border: none;
    padding: 15px 40px;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.contact-page__btn:hover {
    background: #9a5f2a !important;
    transform: translateY(-2px);
}

/* Captcha box margin */
.lcx-captcha-margin {
    margin-top: 20px;
}

/* Submit button extra styles */
.lcx-submit-btn-styles {
    cursor: pointer;
    z-index: 10;
    position: relative;
}

/* =============================================
   SECTION 9: PROGRESS & OVERLAY STYLES
   ============================================= */

.lcx-progress-height {
    height: 20px;
}

.lcx-progress-bar-init {
    width: 0%;
}

/* Loading Overlay */
.lcx-loading-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
}

.lcx-loading-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.lcx-loading-spinner {
    width: 3rem;
    height: 3rem;
}

/* =============================================
   SECTION 10: ALERT STYLES
   ============================================= */

.result .alert {
    margin-top: 20px !important;
    padding: 15px 20px !important;
    border-radius: 8px !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
    border: none !important;
}

.result .alert-success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%) !important;
    color: #155724 !important;
}

.result .alert-danger {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%) !important;
    color: #721c24 !important;
}

.result .alert-warning {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%) !important;
    color: #856404 !important;
}

.result .alert-info {
    background: linear-gradient(135deg, #d1ecf1 0%, #bee5eb 100%) !important;
    color: #0c5460 !important;
}

#uploadProgress .card {
    border: 1px solid #dee2e6 !important;
    border-radius: 10px !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1) !important;
}

#uploadProgress .progress {
    background-color: #f8f9fa !important;
    border-radius: 10px !important;
}

#uploadProgress .progress-bar {
    border-radius: 10px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}

.contact-page__input-box.is-invalid input,
.contact-page__input-box.is-invalid select,
.contact-page__input-box.is-invalid textarea {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25) !important;
}

.file-upload-feedback {
    font-size: 0.875rem;
    color: #6c757d;
    margin-top: 5px;
}

/* =============================================
   SECTION 11: RESPONSIVE STYLES
   ============================================= */

@media (max-width: 991px) {
    .lcx-contact-hero-title {
        font-size: 50px;
        letter-spacing: 4px;
    }
    
    .lcx-contact-hero-wrapper {
        flex-direction: column;
    }
    
    .lcx-form-card {
        margin-top: 30px;
    }
    
    .lcx-banner-headline {
        font-size: 18px;
    }
    
    .lcx-bottom-banner-inner {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .lcx-contact-hero-title {
        font-size: 36px;
        letter-spacing: 2px;
    }
    
    .g-recaptcha {
        transform: scale(0.77);
        transform-origin: 0 0;
    }
    
    .lcx-livesupport-card {
        max-width: 100%;
    }
    
    .lcx-locate-title {
        font-size: 32px;
    }
    
    .lcx-team-title {
        font-size: 32px;
    }
    
    .lcx-branch-cta-btn {
        margin-left: 0;
        margin-top: 15px;
    }
}
