:root {
            --dark-blue: #002e5b;
            --sky-blue: #00aeef;
            --orange: #f37021;
            --bg-light: #f4f9ff;
        }

     
/* --- Section 1: Enquiry Form --- */
        .enquiry-section { padding: 60px 5%; background: #fff; }
        .title-header { text-align: center; color: var(--dark-blue); font-size: 26px; margin-bottom: 40px; text-transform: uppercase; letter-spacing: 1px; }

        .form-container { display: flex; gap: 40px; max-width: 1200px; margin: 0 auto; align-items: flex-start; }
        .form-left { flex: 1.5; }
        .form-right { flex: 1; position: relative; }

        .tabs { display: flex; border-bottom: 2px solid #ddd; margin-bottom: 25px; }
        .tab { padding: 12px 35px; cursor: pointer; font-weight: bold; font-size: 15px; }
        .tab.active { background: var(--dark-blue); color: white; border-radius: 4px 4px 0 0; }
        
        .form-intro { font-weight: 600; color: var(--dark-blue); margin-bottom: 20px; font-size: 15px; }

        .grid-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-bottom: 15px; }
        .full-row { width: 100%; margin-bottom: 15px; }

        label { display: block; font-size: 13px; font-weight: bold; margin-bottom: 5px; }
        input, select, textarea { 
            width: 100%; padding: 10px; border: 1px solid #ccc; border-radius: 4px; background: #fdfdfd; box-sizing: border-box;
        }

        .phone-grp { display: flex; gap: 10px; }
        .phone-grp select { width: 110px; }

        .btn-send { 
            background: var(--sky-blue); color: white; border: none; padding: 12px 30px; 
            border-radius: 25px; font-weight: bold; cursor: pointer; margin-top: 10px;
        }

        /* Image Side Styling */
        .image-card { width: 100%; border-radius: 12px; overflow: hidden; box-shadow: 0 8px 20px rgba(0,0,0,0.1); position: relative; }
        .image-card img { width: 100%; display: block; }

        .watch-btn {
            position: absolute; bottom: 20px; left: 20px; background: var(--sky-blue);
            color: white; padding: 10px 20px; border-radius: 25px; text-decoration: none;
            font-size: 14px; font-weight: bold; display: flex; align-items: center; gap: 10px;
            cursor: pointer; border: none; box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }

        /* --- VIDEO MODAL (Popup) --- */
        .modal-overlay {
            display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0, 0, 0, 0.85); z-index: 2000; justify-content: center; align-items: center;
        }
        .modal-content { position: relative; width: 80%; max-width: 800px; background: #000; border: 5px solid #fff; border-radius: 8px; }
        .modal-content iframe { width: 100%; height: 450px; display: block; }
        .close-modal {
            position: absolute; top: -40px; right: -10px; color: white; font-size: 30px;
            cursor: pointer; font-weight: bold;
        }

        /* --- Section 2: Contact & Info --- */
        .contact-section { background: var(--bg-light); padding: 60px 5%; }
        .content-text { max-width: 1100px; margin: 0 auto 50px; font-size: 14.5px; line-height: 1.7; }
        .content-text a { color: var(--sky-blue); text-decoration: none; font-weight: bold; }
        .badge { background: #ffeded; color: #d32f2f; padding: 3px 12px; border-radius: 12px; font-size: 11px; }

        .contact-layout { display: flex; gap: 50px; max-width: 1200px; margin: 0 auto; align-items: center; }
        .map-wrapper { flex: 1.2; }
        .map-wrapper img { width: 100%; border: 6px solid white; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
        
        .bubbles-area { flex: 1; position: relative; height: 350px; }
        .bubble {
            position: absolute; border-radius: 50%; display: flex; flex-direction: column;
            align-items: center; justify-content: center; text-align: center; padding: 15px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.06);
        }
        .bubble i { color: var(--orange); font-size: 22px; margin-bottom: 8px; }
        .time-b { width: 180px; height: 180px; background: white; top: 0; left: 0; z-index: 2; }
        .call-b { width: 200px; height: 200px; background: #e3f2fd; top: 20px; right: 0; z-index: 1; }
        .mail-b { width: 170px; height: 170px; background: white; bottom: 0; left: 80px; z-index: 3; }