/* Request a Quote Page Styles */

/* Main Section */
.request-quote-section {
    padding: 40px 0px 40px 0;
    background: #ffffff;
    width: 72%;
    margin: auto;
}

.request-quote-section .container-fluid {
    padding: 0;
}

.request-quote-section .row.g-0 {
    margin: 0;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, .25);
}

/* Left Column - Map and Process */
.left-column {
    padding: 0;
    background: #f9feff;
    position: relative;
    overflow: hidden;
    width: 55%;
}

.map-container {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-content {
    position: relative;
    width: 100%;
    max-width: 600px;
    padding: 40px;
}

/* India Map */
.india-map {
    
    margin-bottom: 30px;
	 
}


.map-contents {
    position: absolute;
    top: 30px;
    right: 0px;
    width: 270px;
}

.map-contents h4 {
    padding: 0px;
    margin: 0px 0 10px 0;
    font-size: 22px;
    line-height: 33px;
}

.map-contents ul{
	margin:0px;
	padding:0px;
}

.map-contents ul li {
    margin: 0px;
    padding: 0px 0 6px 0;
    font-size: 15px;
    list-style: none;
}

.map-image {
    width: 100%;
    height: auto;
    
}

.city-marker {
    position: absolute;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    animation: pulse 2s infinite;
}

.city-marker.delhi {
    top: 25%;
    left: 60%;
}

.city-marker.agra {
    top: 35%;
    left: 65%;
}

.city-marker.jaipur {
    top: 30%;
    left: 40%;
}

.city-marker.calcutta {
    top: 55%;
    left: 75%;
}

.city-marker.mumbai {
    top: 60%;
    left: 55%;
}

.city-marker.hyderabad {
    top: 65%;
    left: 50%;
}

.city-marker.bangalore {
    top: 70%;
    left: 45%;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Cultural Elements */
.cultural-elements {
    display: flex;
    justify-content: space-around;
    margin: 30px 0;
    align-items: center;
}

.cultural-icon {
    width: 60px;
    height: 60px;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.cultural-icon:hover {
    transform: scale(1.1);
}

/* Map Text */
.map-text {
    background: rgba(255,255,255,0.95);
    padding: 30px;
    border-radius: 15px;
    margin-top: 30px;
    backdrop-filter: blur(10px);
}

.map-heading {
    color: #dc3545;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.process-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.process-list li {
    color: #333;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.process-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #dc3545;
    font-weight: bold;
    font-size: 18px;
}

/* India Label */
.india-label {
    text-align: center;
    margin-top: 30px;
}

.india-text {
    display: block;
    font-size: 48px;
    font-weight: 900;
    color: #dc3545;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
    letter-spacing: 8px;
    margin-bottom: 10px;
}

.namaste {
    display: block;
    font-size: 24px;
    color: #ff6b35;
    font-weight: 600;
    letter-spacing: 2px;
}

/* Right Column - Form */
.right-column {
    padding: 0;
    background: #221f23;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45%;
}

.form-container {
    width: 100%;
    padding: 20px 20px;
    background: #221f23;
    border-radius: 0;
}

.form-header {
    text-align: center;
    margin-bottom: 20px;
}

.form-title {
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 3px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-subtitle {
    color: #ffffff;
    font-size: 15px;
    margin: 0;
}

/* Form Styles */
.quote-form .form-label {
    color: #fff;
    font-weight: 700;
    margin-bottom: 3px;
    font-size: 14px;
}

.quote-form .form-label span{
	color:#ff0000;
}
span.input-group-text.calendar-icon {
    background: transparent;
    border: none;
}

.quote-form .form-control, .quote-form .form-select {
    background: rgb(255 255 255);
    border: 1px solid rgba(255,255,255,0.2);
       color: #939393;
    border-radius: 3px;
    padding: 9px 15px;
    font-size: 14px;
    transition: all 0.3s ease;
}

form .mb-3 {
    margin-bottom: 1px !important;
}

/* Input Group for Date Field */
.quote-form .input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.quote-form .input-group .form-control {
    flex: 1;
    padding-right: 45px;
}

.quote-form .input-group-text {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #b8c5d6;
    font-size: 16px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.quote-form .input-group-text:hover {
    color: #dc3545;
}

.quote-form .date-picker {
    cursor: pointer;
}

/* Date Picker Styling */
.datepicker {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    z-index: 9999;
        width: 270px;
}

.datepicker table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

.datepicker th {
    background: #dc3545;
    color: #fff;
    font-weight: 600;
    padding: 10px 5px;
    text-align: center;
    font-size: 12px;
}

.datepicker td {
    padding: 8px 5px;
    text-align: center;
    border: 1px solid #f0f0f0;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.datepicker td:hover {
    background: #f8f9fa;
    color: #dc3545;
}

.datepicker td.active {
    background: #dc3545;
    color: #fff;
    font-weight: 600;
}

.datepicker td.today {
    background: #ff6b6b;
    color: #fff;
    font-weight: 600;
}

.datepicker td.disabled {
    color: #ccc;
    cursor: not-allowed;
    opacity: 0.5;
}

.datepicker .datepicker-switch {
    background: #2c3e50;
    color: #fff;
    font-weight: 600;
    padding: 10px;
    text-align: center;
}

.datepicker .datepicker-switch:hover {
    background: #dc3545;
}

.datepicker .prev,
.datepicker .next {
    background: #dc3545;
    color: #fff;
    cursor: pointer;
    transition: background 0.3s ease;
}

.datepicker .prev:hover,
.datepicker .next:hover {
    background: #ff6b6b;
}

.quote-form .form-select option{
	background:#fff;
}

.quote-form .form-control:focus,
.quote-form .form-select:focus {
    background: rgb(255 255 255);
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 0 0 0.2rem rgba(220,53,69,0.25);
        color: #939393;
    outline: none;
}

.quote-form .form-control::placeholder {
    color: #939393;
}

.small-label {
    font-size: 12px;
    color: #b8c5d6;
    margin-bottom: 5px;
}

.submit-btn {
    background: #ff0000;
    border: none;
    color: #fff;
    padding: 10px 20px;
    border-radius: 0;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(220,53,69,0.3);
    margin: 10px 0 0 0;
}

.submit-btn:hover {
    
    background: #ff0000;
}

.form-footer {
    text-align: center;
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}
.footer-link:hover {
    color: #fff;
}

.separator {
    color: #6c757d;
    margin: 0 10px;
}

/* Responsive Design */
@media (max-width: 991px) {
    .request-quote-section .row.g-0 {
        flex-direction: column;
    }
    
    .left-column,
    .right-column {
        min-height: 100vh;
    }
    
    .map-container {
        height: 60vh;
    }
    
    .form-container {
        max-width: 100%;
        margin: 0;
        padding: 40px 20px;
        border-radius: 0;
    }
}

@media (max-width: 768px) {

.request-quote-section {
    padding: 40px 0px 40px 0;
    background: #ffffff;
    width: 98%;
    margin: auto;
}

.right-column {
    padding: 0;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.form-header {
    text-align: center;
    margin-bottom: 10px;
}

.left-column{
	display:none;
}

    .map-content {
        padding: 20px;
    }
    
    .form-title {
        font-size: 24px;
    }
    
    .cultural-elements {
        flex-direction: column;
        gap: 15px;
    }
    
    .cultural-icon {
        width: 40px;
        height: 40px;
    }
    
    .map-heading {
        font-size: 20px;
    }
    
    .process-list li {
        font-size: 14px;
    }
    
    .india-text {
        font-size: 36px;
    }
    
    .namaste {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .form-container {
        padding: 30px 15px;
    }
    
    .form-title {
        font-size: 20px;
    }
    
    .submit-btn {
        padding: 12px 30px;
        font-size: 14px;
    }
}
