 

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#f8f9fa;
    color:#333;
    line-height:1.6;
}

/* Hero */

.contact-hero{
    background:linear-gradient(135deg,#0d6efd,#0056d6);
    color:#fff;
    padding:90px 0;
}

.contact-hero h1{
    font-size:48px;
    font-weight:700;
    margin-bottom:20px;
}

.contact-hero p{
    font-size:18px;
    max-width:700px;
    margin:auto;
    margin-bottom:30px;
}

.hero-btns .btn{
    margin:8px;
    padding:14px 30px;
    border-radius:10px;
}
/* ===============================
   Contact Section
================================ */
/* ===========================
   CONTACT SECTION
=========================== */

.contact-section{
    background:#f8fbff;
}

.contact-info h2{
    font-size:40px;
    font-weight:700;
    color:#222;
    margin-bottom:35px;
}

/* Info Box */

.info-box{
    display:flex;
    align-items:flex-start;
    gap:18px;
    background:#fff;
    padding:22px;
    margin-bottom:20px;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.06);
    transition:.35s ease;
    border-left:5px solid #0d6efd;
}

.info-box:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 35px rgba(13,110,253,.18);
}

.info-box i{
    width:60px;
    height:60px;
    border-radius:50%;
    background:linear-gradient(135deg,#0d6efd,#00c6ff);
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:22px;
    flex-shrink:0;
}

.info-box h5{
    margin-bottom:8px;
    font-size:18px;
    font-weight:700;
    color:#222;
}

.info-box p{
    margin:0;
    color:#666;
    line-height:1.7;
}

.info-box a{
    color:#0d6efd;
    text-decoration:none;
    font-weight:600;
    word-break:break-word;
}

.info-box a:hover{
    color:#0056d6;
}

/* ===========================
   BOOKING FORM
=========================== */

.booking-form{
    background:#fff;
    border-radius:20px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    border-top:6px solid #0d6efd;
}

.booking-form h4{
    font-size:28px;
    font-weight:700;
    color:#222;
    margin-bottom:25px;
}

.booking-form .form-control,
.booking-form .form-select{
    height:52px;
    border-radius:10px;
    border:1px solid #dcdcdc;
    box-shadow:none;
}

.booking-form textarea.form-control{
    min-height:120px;
    resize:none;
}

.booking-form .form-control:focus,
.booking-form .form-select:focus{
    border-color:#0d6efd;
    box-shadow:0 0 0 .2rem rgba(13,110,253,.15);
}

/* Button */

.booking-form .btn{
    height:55px;
    border-radius:10px;
    font-size:18px;
    transition:.3s;
}

.booking-form .btn:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 20px rgba(255,193,7,.35);
}

/* ===========================
   Spinner
=========================== */

.spinner-overlay{
    position:absolute;
    inset:0;
    background:rgba(255,255,255,.85);
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:20px;
    z-index:1000;
}

.spinner{
    width:55px;
    height:55px;
    border:5px solid #ddd;
    border-top:5px solid #0d6efd;
    border-radius:50%;
    animation:spin 1s linear infinite;
}

@keyframes spin{
    100%{
        transform:rotate(360deg);
    }
}

/* ===========================
   Responsive
=========================== */

@media(max-width:991px){

.contact-info{
    margin-bottom:35px;
}

.contact-info h2{
    font-size:32px;
    text-align:center;
}

}

@media(max-width:768px){

.info-box{
    padding:18px;
}

.info-box i{
    width:50px;
    height:50px;
    font-size:18px;
}

.booking-form{
    margin-top:20px;
}

.booking-form h4{
    font-size:24px;
}

.booking-form .btn{
    font-size:16px;
}

}

@media(max-width:576px){

.contact-info h2{
    font-size:28px;
}

.info-box{
    gap:15px;
}

.info-box h5{
    font-size:16px;
}

.info-box p,
.info-box a{
    font-size:14px;
}

}

/* ===============================
   Spinner
================================ */

.spinner-overlay{
    position:absolute;
    inset:0;
    background:rgba(255,255,255,.85);
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:99;
}

.spinner{
    width:45px;
    height:45px;
    border:5px solid #ddd;
    border-top:5px solid #0d6efd;
    border-radius:50%;
    animation:spin .8s linear infinite;
}

@keyframes spin{
100%{
transform:rotate(360deg);
}
}

/* ===============================
   Responsive
================================ */

@media(max-width:992px){

.contact-info{
margin-bottom:35px;
}

.contact-info h2{
text-align:center;
}

.contact-info h2::after{
left:50%;
transform:translateX(-50%);
}

}

@media(max-width:768px){

.contact-section{
padding:60px 0;
}

.info-box{
padding:16px;
}

.info-box i{
width:55px;
height:55px;
font-size:20px;
}

.booking-form{
padding:22px !important;
margin-top:20px;
}

.booking-form h4{
font-size:1.5rem;
}

}

@media(max-width:576px){

.info-box{
flex-direction:column;
text-align:center;
}

.info-box i{
margin-bottom:10px;
}

.contact-info h2{
font-size:1.9rem;
}

.booking-form{
padding:18px !important;
}

.booking-form .btn{
font-size:16px;
}

}
/* Features */

.why-choose{
    background:#f8fbff;
}

.section-tag{
    display:inline-block;
    background:#0d6efd;
    color:#fff;
    padding:8px 20px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
    letter-spacing:1px;
}

.section-title{
    font-size:38px;
    font-weight:700;
    color:#222;
}

.section-subtitle{
    color:#666;
    max-width:650px;
    margin:auto;
}

.choose-card{
    background:#fff;
    border-radius:18px;
    padding:35px 25px;
    text-align:center;
    height:100%;
    transition:.4s;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    position:relative;
    overflow:hidden;
}

.choose-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:5px;
    background:linear-gradient(90deg,#0d6efd,#00c6ff);
}

.choose-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(13,110,253,.18);
}

.choose-icon{
    width:80px;
    height:80px;
    margin:auto;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,#0d6efd,#00c6ff);
    color:#fff;
    font-size:30px;
    margin-bottom:20px;
    transition:.4s;
}

.choose-card:hover .choose-icon{
    transform:rotateY(180deg);
}

.choose-card h4{
    font-size:22px;
    font-weight:700;
    margin-bottom:15px;
    color:#222;
}

.choose-card p{
    color:#666;
    line-height:1.7;
    margin-bottom:0;
}

@media(max-width:768px){

.section-title{
    font-size:28px;
}

.choose-card{
    padding:30px 20px;
}

.choose-icon{
    width:70px;
    height:70px;
    font-size:26px;
}

}

/* Map */

.map-section iframe{
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.1);
}

/* CTA */

.cta-section{
    background:#dc3545;
    color:#fff;
    padding:70px 20px;
}

.cta-section h2{
    font-size:40px;
    font-weight:700;
    margin-bottom:20px;
}

.cta-section p{
    font-size:18px;
    margin-bottom:30px;
}

.cta-section .btn{
    padding:14px 35px;
    border-radius:10px;
    font-weight:600;
}

/* Responsive */

@media(max-width:992px){

.contact-info{
    margin-bottom:30px;
}

}

@media(max-width:768px){

.contact-hero{
    padding:70px 20px;
}

.contact-hero h1{
    font-size:34px;
}

.contact-hero p{
    font-size:16px;
}

.hero-btns .btn{
    width:100%;
    margin:8px 0;
}

.contact-info,
.contact-form{
    padding:25px;
}

.cta-section h2{
    font-size:30px;
}

}

.footer{
    background:#1f2937;
    color:#fff;
    padding:50px 0 20px;
}

.footer h5{
    color:#ffc107;
    margin-bottom:18px;
    font-weight:700;
}

.footer p{
    color:#d1d5db;
    line-height:1.8;
    font-size:15px;
}

.footer a{
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.footer a:hover{
    color:#ffc107;
}

.footer-links{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-links li{
    margin-bottom:10px;
}

.footer-disclaimer{
    margin-top:25px;
    padding:15px;
    background:rgba(255,255,255,.08);
    border-left:4px solid #ffc107;
    border-radius:8px;
    color:#ddd;
    font-size:14px;
    line-height:1.8;
}

.footer-copy{
    text-align:center;
    margin-top:20px;
    color:#bdbdbd;
    font-size:14px;
}

/* Mobile */

@media(max-width:768px){

.footer{
text-align:center;
}

.footer-links{
margin-top:15px;
}

.footer-disclaimer{
text-align:left;
margin-top:20px;
}

}

/* ===========================
   Working Hours Section
=========================== */

.working-hours-section{
    background:#f8f9fa;
}

.working-hours-section h2{
    font-size:2rem;
    font-weight:700;
    color:#212529;
    margin-bottom:30px;
}

.table-responsive{
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.table{
    margin-bottom:0;
    background:#fff;
}

.table thead{
    background:#0d6efd;
    color:#fff;
}

.table thead th{
    padding:16px;
    font-size:18px;
    font-weight:600;
    border:none;
}

.table tbody td{
    padding:16px;
    font-size:16px;
    color:#555;
    vertical-align:middle;
}

.table tbody tr{
    transition:.3s ease;
}

.table tbody tr:hover{
    background:#f5f9ff;
}

.table tbody tr:last-child{
    background:#fff5f5;
}

.table tbody tr:last-child td{
    color:#dc3545;
    font-weight:600;
}

.working-hours-note{
    margin-top:25px;
    color:#6c757d;
    font-size:15px;
    line-height:1.6;
    text-align:center;
}

/* ===========================
   Mobile Responsive
=========================== */

@media (max-width:768px){

.working-hours-section h2{
    font-size:1.6rem;
}

.table thead th{
    font-size:16px;
    padding:12px;
}

.table tbody td{
    font-size:14px;
    padding:12px;
}

.working-hours-note{
    font-size:13px;
}

}