.quote {
            background-color: #f8f9fa;
            padding: 0px 0 0 0;
        }
        
        .contact-info-card {
            background: white;
            border-radius: 10px;
            padding: 15px 10px 0 0;
            text-align: center;
            box-shadow: 0 5px 25px rgba(0,0,0,0.1);
            margin-bottom: 30px;
            height: 100%;
            transition: transform 0.3s ease;
        }
        
        .contact-info-card:hover {
            transform: translateY(-5px);
        }
        
        .contact-icon {
            width: 70px;
            height: 70px;
            background: #e3f2fd;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
        }
        
        .contact-icon i {
            font-size: 32px;
            color: #23468f;
        }
        
        .contact-info-card h4 {
            font-size: 22px;
            font-weight: 600;
            color: #333;
            margin-bottom: 15px;
        }
        
        .contact-info-card p {
            color: #666;
            margin: 0;
            line-height: 1.6;
            font-weight: bold;
        }
        
        .map-container {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 25px rgba(0,0,0,0.1);
            height: 400px;
            margin-bottom: 30px;
        }
        
        .map-placeholder {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 18px;
        }
        
        #map {
            width: 100%;
            height: 100%;
            border: none;
        }
        
        .quote-form {
            background: white;
            border-radius: 10px;
            padding: 10px;
            box-shadow: 0 5px 25px rgba(0,0,0,0.1);
            height: fit-content;
        }
        
        .quote-header {
            text-align: center;
            margin-bottom: 10px;
        }
        
        .quote-header h3 {
            color: #e74c3c;
            font-size: 24px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-control {
            border: 2px solid #e9ecef;
            border-radius: 8px;
            padding: 12px 15px;
            font-size: 14px;
            transition: border-color 0.3s ease;
        }
        
        .form-control:focus {
            border-color: #2196f3;
            box-shadow: none;
        }
        
        .form-control::placeholder {
            color: #999;
        }
        
        textarea.form-control {
            resize: vertical;
            min-height: 120px;
        }
        
        .btn-send {
            background: #2196f3;
            color: white;
            border: none;
            border-radius: 8px;
            padding: 12px 30px;
            font-size: 16px;
            font-weight: 500;
            width: 30%;
            transition: background 0.3s ease;
        }
        
        .btn-send:hover {
            background: #1976d2;
            color: white;
        }
        
        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .quote {
                padding: 50px 0;
            }
            
            .contact-info-card {
                padding: 30px 20px;
                margin-bottom: 20px;
            }
            
            .quote-form {
                padding: 30px 20px;
            }
            
            .contact-icon {
                width: 60px;
                height: 60px;
            }
            
            .contact-icon i {
                font-size: 28px;
            }
            
            .contact-info-card h4 {
                font-size: 20px;
            }
            
            .map-container {
                height: 300px;
                margin-bottom: 20px;
            }
            
            .quote-header h3 {
                font-size: 20px;
            }
        }
        
        @media (max-width: 576px) {
            .quote {
                padding: 0px 0;
            }
            
            .contact-info-card {
                padding: 25px 15px;
            }
            
            .quote-form {
                padding: 25px 15px;
            }
            
            .contact-icon {
                width: 50px;
                height: 50px;
                margin-bottom: 20px;
            }
            
            .contact-icon i {
                font-size: 24px;
            }
            
            .contact-info-card h4 {
                font-size: 18px;
                margin-bottom: 12px;
            }
            
            .contact-info-card p {
                font-size: 14px;
            }
            
            .map-container {
                height: 250px;
            }
        }