/*=========================================
CONTACT PAGE
=========================================*/

.contact-card{

background:#fff;
border-radius:15px;
padding:30px;
text-align:center;
box-shadow:0 10px 25px rgba(0,0,0,.08);
transition:.4s;

}

.contact-card:hover{

transform:translateY(-8px);

}

.contact-card i{

font-size:50px;
color:#0d6efd;
margin-bottom:20px;

}

.contact-card h4{

font-weight:700;

margin-bottom:15px;

}

.contact-card p{

color:#666;

}


/*=========================================
CONTACT FORM
=========================================*/

form{

background:white;
padding:35px;
border-radius:15px;
box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.form-control,
.form-select{

height:55px;
border-radius:10px;
border:1px solid #dcdcdc;
margin-bottom:20px;

}

textarea.form-control{

height:170px;
resize:none;

}

.form-control:focus,
.form-select:focus{

border-color:#0d6efd;
box-shadow:none;

}


/*=========================================
BUTTONS
=========================================*/

.btn-primary{

padding:14px 35px;
border-radius:8px;
font-weight:600;

transition:.3s;

}

.btn-primary:hover{

transform:translateY(-3px);

}


/*=========================================
APPOINTMENT
=========================================*/

.booking{

background:#f5f7fb;

}

.booking .card{

border:none;

border-radius:15px;

}


/*=========================================
SOCIAL BUTTONS
=========================================*/

.social-icons{

display:flex;

justify-content:center;

gap:15px;

margin-top:20px;

}

.social-icons a{

width:55px;

height:55px;

display:flex;

justify-content:center;

align-items:center;

background:#0d6efd;

color:white;

border-radius:50%;

font-size:22px;

transition:.4s;

text-decoration:none;

}

.social-icons a:hover{

background:#081f4d;

transform:translateY(-6px);

}


/*=========================================
GOOGLE MAP
=========================================*/

iframe{

border:none;

border-radius:12px;

}


/*=========================================
WHATSAPP BUTTON
=========================================*/

.whatsapp{

position:fixed;

right:25px;

bottom:25px;

width:65px;

height:65px;

background:#25D366;

color:white;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

font-size:35px;

text-decoration:none;

box-shadow:0 10px 25px rgba(0,0,0,.25);

z-index:999;

transition:.4s;

}

.whatsapp:hover{

background:#20b358;

transform:scale(1.1);

color:white;

}


/*=========================================
BACK TO TOP
=========================================*/

#topBtn{

position:fixed;

bottom:105px;

right:25px;

display:none;

width:55px;

height:55px;

border:none;

border-radius:50%;

background:#0d6efd;

color:white;

font-size:22px;

cursor:pointer;

box-shadow:0 10px 25px rgba(0,0,0,.25);

z-index:999;

transition:.4s;

}

#topBtn:hover{

background:#081f4d;

}


/*=========================================
DARK MODE
=========================================*/

.dark-mode{

background:#121212;

color:#f1f1f1;

transition:.4s;

}

.dark-mode .navbar{

background:#000 !important;

}

.dark-mode .card{

background:#1f1f1f;

color:white;

}

.dark-mode form{

background:#1f1f1f;

color:white;

}

.dark-mode .form-control,
.dark-mode .form-select,
.dark-mode textarea{

background:#2b2b2b;

color:white;

border:1px solid #555;

}

.dark-mode footer{

background:#000 !important;

}

.dark-mode .bg-light{

background:#181818 !important;

}

.dark-mode table{

color:white;

}

.dark-mode .table{

--bs-table-bg:#1f1f1f;

}

.dark-mode h1,
.dark-mode h2,
.dark-mode h3,
.dark-mode h4,
.dark-mode h5{

color:white;

}


/*=========================================
DARK MODE BUTTON
=========================================*/

.theme-toggle{

position:fixed;

left:25px;

bottom:25px;

width:60px;

height:60px;

background:#081f4d;

color:white;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

font-size:24px;

cursor:pointer;

z-index:999;

box-shadow:0 10px 25px rgba(0,0,0,.25);

transition:.4s;

}

.theme-toggle:hover{

transform:rotate(180deg);

}


/*=========================================
ANIMATIONS
=========================================*/

.fade-up{

opacity:0;

transform:translateY(40px);

transition:1s;

}

.fade-up.show{

opacity:1;

transform:translateY(0);

}


/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:768px){

.whatsapp{

width:60px;

height:60px;

font-size:30px;

right:15px;

bottom:15px;

}

.theme-toggle{

left:15px;

bottom:15px;

}

#topBtn{

right:15px;

}

}