/* =====================================================
   ENQUIRY PAGE - TABLET CSS (768px - 1023px)
   Professional & Attractive Animated Styles
   ===================================================== */

@media screen and (min-width: 768px) and (max-width: 1023px) {
    
    /* =====================================================
       PAGE HEADER
       ===================================================== */
    
    .page-header {
        padding: 4rem 2rem;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        position: relative;
        overflow: hidden;
        text-align: center;
    }
    
    .page-header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
        opacity: 0.2;
        animation: float 20s infinite linear;
    }
    
    @keyframes float {
        0% { transform: translateY(0) rotate(0deg); }
        100% { transform: translateY(-100px) rotate(360deg); }
    }
    
    .page-header .container {
        position: relative;
        z-index: 2;
        animation: fadeInUp 1s ease-out;
        max-width: 800px;
        margin: 0 auto;
    }
    
    .page-header h1 {
        font-size: 2.25rem;
        line-height: 1.3;
        color: white;
        margin-bottom: 1rem;
        animation: slideInLeft 0.8s ease-out 0.2s both;
    }
    
    .page-header p {
        font-size: 1.05rem;
        color: rgba(255,255,255,0.95);
        line-height: 1.8;
        animation: slideInLeft 0.8s ease-out 0.4s both;
    }
    
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    @keyframes slideInLeft {
        from {
            opacity: 0;
            transform: translateX(-30px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    /* =====================================================
       ENQUIRY SECTION
       ===================================================== */
    
    .enquiry-section {
        padding: 5rem 2rem;
        background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
        position: relative;
        overflow: hidden;
    }
    
    .enquiry-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background:
            radial-gradient(circle at 20% 30%, rgba(0,123,255,0.03) 0%, transparent 50%),
            radial-gradient(circle at 80% 70%, rgba(0,168,89,0.03) 0%, transparent 50%);
        pointer-events: none;
    }
    
    .enquiry-container {
        display: grid;
        grid-template-columns: 1fr;
        gap: 3rem;
        position: relative;
        z-index: 1;
        max-width: 900px;
        margin: 0 auto;
    }
    
    /* =====================================================
       ENQUIRY FORM
       ===================================================== */
    
    .enquiry-form-container {
        background: white;
        border-radius: 30px;
        padding: 3rem 2.5rem;
        box-shadow: 0 15px 50px rgba(0,0,0,0.1);
        border: 1px solid rgba(0,123,255,0.05);
        animation: fadeInUp 0.8s ease-out;
    }
    
    .enquiry-form-container h2 {
        font-size: 2rem;
        color: #2c3e50;
        margin-bottom: 2.5rem;
        text-align: center;
        font-weight: 700;
        position: relative;
        padding-bottom: 1.25rem;
    }
    
    .enquiry-form-container h2::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        border-radius: 2px;
    }
    
    .enquiry-form {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .form-row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .form-group {
        display: flex;
        flex-direction: column;
    }
    
    .form-group label {
        font-size: 1rem;
        color: #2c3e50;
        margin-bottom: 0.75rem;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }
    
    .form-group label::before {
        content: '';
        width: 5px;
        height: 18px;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        border-radius: 2px;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 1.2rem;
        border: 2px solid rgba(0,123,255,0.1);
        border-radius: 18px;
        font-size: 1rem;
        font-family: 'Poppins', sans-serif;
        transition: all 0.3s ease;
        background: white;
        color: #2c3e50;
    }
    
    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
        outline: none;
        border-color: var(--primary-color);
        box-shadow: 0 0 0 4px rgba(0,123,255,0.1);
        transform: translateY(-3px);
    }
    
    .form-group input::placeholder,
    .form-group textarea::placeholder {
        color: #adb5bd;
    }
    
    .form-group textarea {
        resize: vertical;
        min-height: 140px;
    }
    
    .form-actions {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .btn-primary {
        padding: 1.5rem;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        color: white;
        border: none;
        border-radius: 35px;
        font-weight: 600;
        font-size: 1.1rem;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
        position: relative;
        overflow: hidden;
    }
    
    .btn-primary::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: rgba(255,255,255,0.2);
        transform: translate(-50%, -50%);
        transition: width 0.6s, height 0.6s;
    }
    
    .btn-primary:hover::before {
        width: 400px;
        height: 400px;
    }
    
    .btn-primary:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0,123,255,0.5);
    }
    
    .btn-primary i,
    .btn-primary span {
        position: relative;
        z-index: 1;
    }
    
    .btn-whatsapp {
        padding: 1.5rem;
        background: linear-gradient(135deg, #25d366, #128c7e);
        color: white;
        border: none;
        border-radius: 35px;
        font-weight: 600;
        font-size: 1.1rem;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
        text-decoration: none;
    }
    
    .btn-whatsapp:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
    }
    
    /* =====================================================
       ENQUIRY INFO
       ===================================================== */
    
    .enquiry-info {
        background: white;
        border-radius: 30px;
        padding: 3rem 2.5rem;
        box-shadow: 0 15px 50px rgba(0,0,0,0.1);
        border: 1px solid rgba(0,123,255,0.05);
        animation: fadeInUp 0.8s ease-out 0.2s both;
    }
    
    .enquiry-info h3 {
        font-size: 1.75rem;
        color: #2c3e50;
        margin-bottom: 2rem;
        text-align: center;
        font-weight: 700;
        position: relative;
        padding-bottom: 1.25rem;
    }
    
    .enquiry-info h3::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        border-radius: 2px;
    }
    
    .info-cards {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin-bottom: 2.5rem;
    }
    
    .info-card {
        background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
        border-radius: 25px;
        padding: 2rem;
        text-align: center;
        border: 2px solid rgba(0,123,255,0.1);
        transition: all 0.3s ease;
        animation: fadeInUp 0.6s ease-out both;
    }
    
    .info-card:nth-child(1) { animation-delay: 0.1s; }
    .info-card:nth-child(2) { animation-delay: 0.2s; }
    .info-card:nth-child(3) { animation-delay: 0.3s; }
    .info-card:nth-child(4) { animation-delay: 0.4s; }
    
    .info-card:hover {
        transform: translateY(-10px);
        border-color: rgba(0,123,255,0.3);
        box-shadow: 0 20px 50px rgba(0,123,255,0.15);
    }
    
    .info-card i {
        font-size: 3rem;
        color: var(--primary-color);
        margin-bottom: 1.25rem;
        transition: transform 0.3s ease;
    }
    
    .info-card:hover i {
        transform: scale(1.2) rotate(10deg);
    }
    
    .info-card h4 {
        font-size: 1.25rem;
        color: #2c3e50;
        margin-bottom: 1rem;
        font-weight: 700;
    }
    
    .info-card p {
        font-size: 1rem;
        line-height: 1.8;
        color: #6c757d;
        margin: 0;
    }
    
    .contact-details {
        background: linear-gradient(135deg, rgba(0,123,255,0.05), rgba(0,168,89,0.05));
        border-radius: 25px;
        padding: 2rem;
        border: 1px solid rgba(0,123,255,0.1);
    }
    
    .contact-details h4 {
        font-size: 1.25rem;
        color: #2c3e50;
        margin-bottom: 1.5rem;
        font-weight: 700;
        text-align: center;
    }
    
    .contact-details p {
        font-size: 1rem;
        color: #495057;
        margin-bottom: 1.25rem;
        display: flex;
        align-items: flex-start;
        gap: 1rem;
        line-height: 1.8;
    }
    
    .contact-details p:last-child {
        margin-bottom: 0;
    }
    
    .contact-details i {
        color: var(--primary-color);
        font-size: 1.25rem;
        margin-top: 0.3rem;
        flex-shrink: 0;
    }
}

