/* ===========================
   RESET
=========================== */

*{
margin:0;
padding:0;
box-sizing:border-box;
scroll-behavior:smooth;
}

:root{

--primary:#0b1f3a;
--secondary:#c7a86b;
--accent:#e8d4a2;
--white:#ffffff;
--black:#111111;
--gray:#f5f7fb;
--text:#4d4d4d;

--radius:18px;

--shadow:0 15px 40px rgba(0,0,0,.08);

}

body{

font-family:"Poppins",sans-serif;
background:#fff;
color:var(--text);
line-height:1.7;
overflow-x:hidden;

}

a{

text-decoration:none;
color:inherit;

}

img{

max-width:100%;
display:block;

}

.container{

width:min(1200px,92%);
margin:auto;

}

.section{

padding:90px 0;

}

.section-title{

text-align:center;
margin-bottom:60px;

}

.section-title span{

display:inline-block;
padding:8px 18px;
background:#eef4ff;
color:var(--primary);
font-weight:600;
border-radius:30px;
margin-bottom:15px;

}

.section-title h2{

font-size:42px;
color:var(--primary);
margin-bottom:15px;

}

.section-title p{

max-width:800px;
margin:auto;

}

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

.primary-btn,
.secondary-btn,
.book-btn{

display:inline-flex;
align-items:center;
justify-content:center;
padding:15px 30px;
border-radius:50px;
font-weight:600;
transition:.3s;

}

.primary-btn{

background:var(--primary);
color:#fff;

}

.primary-btn:hover{

transform:translateY(-4px);

}

.secondary-btn{

border:2px solid var(--primary);
color:var(--primary);

}

.secondary-btn:hover{

background:var(--primary);
color:#fff;

}

/* ===========================
HEADER
=========================== */

header{

position:fixed;
top:0;
left:0;
width:100%;
z-index:999;
background:rgba(255,255,255,.92);
backdrop-filter:blur(18px);
box-shadow:0 5px 20px rgba(0,0,0,.06);

}

header .container{

display:flex;
justify-content:space-between;
align-items:center;
height:82px;

}

.brand h2{

font-size:28px;
color:var(--primary);

}

.brand span{

font-size:13px;
color:#666;

}

nav{

display:flex;
gap:30px;
align-items:center;

}

nav a{

font-weight:500;
transition:.3s;

}

nav a:hover{

color:var(--secondary);

}

#menuBtn{

display:none;
font-size:26px;
cursor:pointer;
background:none;
border:none;

}

/* ===========================
LOADER
=========================== */

#loader{

position:fixed;
inset:0;
background:#fff;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
z-index:9999;

}

.loader-spinner{

width:60px;
height:60px;
border:5px solid #ddd;
border-top:5px solid var(--secondary);
border-radius:50%;
animation:spin 1s linear infinite;

}

@keyframes spin{

100%{

transform:rotate(360deg);

}

}
/* ===========================
   HERO
=========================== */

.hero{

padding:150px 0 100px;
background:linear-gradient(135deg,#071b34 0%,#12345c 100%);
color:#fff;

}

.hero-grid{

display:grid;
grid-template-columns:1.2fr .8fr;
gap:60px;
align-items:center;

}

.hero-badge{

display:inline-flex;
align-items:center;
gap:10px;

padding:12px 22px;

background:rgba(255,255,255,.12);

border:1px solid rgba(255,255,255,.2);

border-radius:40px;

margin-bottom:25px;

font-weight:600;

}

.hero h1{

font-size:58px;

line-height:1.15;

margin-bottom:25px;

font-weight:800;

}

.hero p{

font-size:18px;

opacity:.9;

max-width:650px;

margin-bottom:35px;

}

.hero-buttons{

display:flex;

gap:18px;

flex-wrap:wrap;

margin-bottom:45px;

}

.hero-highlights{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:18px;

}

.highlight{

background:rgba(255,255,255,.08);

border:1px solid rgba(255,255,255,.15);

padding:25px;

border-radius:18px;

text-align:center;

backdrop-filter:blur(12px);

}

.highlight h2{

font-size:34px;

color:#FFD166;

margin-bottom:8px;

}

.highlight p{

font-size:14px;

margin:0;

}

.hero-card{

background:#fff;

color:#222;

padding:35px;

border-radius:22px;

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

}

.hero-card h3{

color:var(--primary);

margin-bottom:20px;

font-size:26px;

}

.hero-card ul{

list-style:none;

}

.hero-card li{

display:flex;

align-items:center;

gap:12px;

padding:10px 0;

border-bottom:1px solid #eee;

}

.hero-card i{

color:#00b894;

}

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

.floating-buttons{

position:fixed;

right:18px;

bottom:18px;

display:flex;

flex-direction:column;

gap:12px;

z-index:999;

}

.float-btn{

width:56px;

height:56px;

display:flex;

align-items:center;

justify-content:center;

border-radius:50%;

font-size:22px;

color:#fff;

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

transition:.3s;

cursor:pointer;

}

.float-btn:hover{

transform:translateY(-5px) scale(1.08);

}

.call{

background:#0d6efd;

}

.whatsapp{

background:#25D366;

}

.instagram{

background:#E1306C;

}

.location{

background:#dc3545;

}

.review{

background:#ffb400;

}

.top{

background:#111827;

border:none;

}

/* ===========================
ABOUT
=========================== */

.about-grid{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:50px;

}

.info-card{

background:#fff;

padding:28px;

border-radius:18px;

box-shadow:var(--shadow);

margin-bottom:20px;

transition:.3s;

}

.info-card:hover{

transform:translateY(-8px);

}

.info-card i{

font-size:34px;

color:var(--secondary);

margin-bottom:15px;

}

.about-right h3{

font-size:26px;

color:var(--primary);

margin:25px 0 10px;

}

.about-right ul{

padding-left:22px;

}

.about-right li{

margin:10px 0;

}
/* ===========================
   SERVICES
=========================== */

.services-grid{

display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:25px;

}

.service-card{

background:#fff;
padding:35px;
border-radius:22px;
box-shadow:var(--shadow);
transition:.35s;
border:1px solid #eef2f7;

}

.service-card:hover{

transform:translateY(-10px);
border-color:var(--secondary);

}

.service-card i{

font-size:42px;
color:var(--secondary);
margin-bottom:20px;

}

.service-card h3{

font-size:24px;
color:var(--primary);
margin-bottom:15px;

}

.service-card p{

font-size:15px;
line-height:1.8;

}

/* ===========================
PROCEDURES
=========================== */

.procedure-list{

display:flex;
flex-wrap:wrap;
gap:12px;
justify-content:center;

}

.procedure-list span{

padding:12px 18px;
background:#fff;
border-radius:40px;
border:1px solid #ddd;
font-size:14px;
transition:.3s;

}

.procedure-list span:hover{

background:var(--primary);
color:#fff;
border-color:var(--primary);

}

/* ===========================
GALLERY
=========================== */

.gallery-grid{

display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:25px;

}

.gallery-card{

background:#fff;
border-radius:20px;
overflow:hidden;
box-shadow:var(--shadow);
transition:.35s;

}

.gallery-card:hover{

transform:translateY(-8px);

}

.gallery-placeholder{

height:250px;

display:flex;
align-items:center;
justify-content:center;

background:linear-gradient(135deg,#eef4ff,#dbe8ff);

font-size:70px;
color:var(--secondary);

}

.gallery-card h3{

padding:20px;
text-align:center;
color:var(--primary);

}

/* ===========================
REVIEWS
=========================== */

.review-grid{

display:grid;
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
gap:25px;

}

.review-card{

background:#fff;
padding:35px;
border-radius:20px;
box-shadow:var(--shadow);

}

.review-card h3{

color:#f7b500;
font-size:30px;
margin-bottom:20px;

}

.review-card p{

line-height:1.8;
margin-bottom:20px;

}

.review-card h4{

color:var(--primary);

}

/* ===========================
FAQ
=========================== */

.faq{

max-width:900px;
margin:auto;

}

.faq details{

background:#fff;
margin-bottom:18px;
border-radius:15px;
padding:22px;
box-shadow:var(--shadow);

}

.faq summary{

cursor:pointer;
font-size:18px;
font-weight:600;
color:var(--primary);

}

.faq p{

margin-top:15px;

}

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

#appointmentForm{

display:grid;
gap:18px;
max-width:700px;
margin:auto;

}

#appointmentForm input,
#appointmentForm select,
#appointmentForm textarea{

width:100%;
padding:18px;
border:1px solid #ddd;
border-radius:14px;
font-size:16px;
font-family:inherit;

}

#appointmentForm textarea{

min-height:160px;
resize:vertical;

}

#appointmentForm button{

border:none;
cursor:pointer;

}

.contact-details{

margin-top:45px;
text-align:center;

}

.contact-details h3{

color:var(--primary);
margin-bottom:15px;

}

.contact-details p{

margin:10px 0;

}

/* ===========================
FOOTER
=========================== */

footer{

background:#071b34;
color:#fff;
padding:45px 20px;
text-align:center;

}

footer p{

margin:10px auto;
max-width:900px;
line-height:1.8;

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

@media (max-width:1100px){

.hero-grid,
.about-grid{

grid-template-columns:1fr;

}

.hero{

text-align:center;

}

.hero p{

margin:auto auto 35px;

}

.hero-buttons{

justify-content:center;

}

.hero-highlights{

grid-template-columns:repeat(2,1fr);

}

.hero-card{

margin-top:30px;

}

}

@media (max-width:900px){

nav{

position:fixed;

top:82px;

left:-100%;

width:100%;

background:#fff;

display:flex;

flex-direction:column;

padding:35px;

gap:20px;

transition:.35s;

box-shadow:0 20px 40px rgba(0,0,0,.08);

}

nav.active{

left:0;

}

#menuBtn{

display:block;

}

.section{

padding:70px 0;

}

.section-title h2{

font-size:34px;

}

}

@media (max-width:768px){

.hero{

padding:120px 0 70px;

}

.hero h1{

font-size:42px;

}

.hero p{

font-size:16px;

}

.hero-highlights{

grid-template-columns:1fr 1fr;

}

.highlight{

padding:18px;

}

.services-grid,
.gallery-grid,
.review-grid{

grid-template-columns:1fr;

}

.floating-buttons{

right:12px;
bottom:12px;

}

.float-btn{

width:50px;
height:50px;
font-size:20px;

}

.brand h2{

font-size:22px;

}

}

@media (max-width:480px){

.hero h1{

font-size:34px;

}

.section-title h2{

font-size:28px;

}

.hero-highlights{

grid-template-columns:1fr;

}

.primary-btn,
.secondary-btn,
.book-btn{

width:100%;

}

.hero-buttons{

flex-direction:column;

}

.container{

width:94%;

}

}

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

.fade-up{

opacity:0;
transform:translateY(40px);
transition:.7s ease;

}

.fade-up.show{

opacity:1;
transform:translateY(0);

}

.zoom{

transition:.35s;

}

.zoom:hover{

transform:scale(1.05);

}

.rotate:hover{

transform:rotate(3deg);

}

.shadow:hover{

box-shadow:0 20px 50px rgba(0,0,0,.15);

}

/* ===========================
CUSTOM SCROLLBAR
=========================== */

::-webkit-scrollbar{

width:10px;

}

::-webkit-scrollbar-track{

background:#edf2f7;

}

::-webkit-scrollbar-thumb{

background:#c7a86b;
border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

background:#9d7c3e;

}

/* ===========================
TEXT SELECTION
=========================== */

::selection{

background:#c7a86b;
color:#fff;

}

/* ===========================
UTILITY CLASSES
=========================== */

.text-center{

text-align:center;

}

.mt-1{margin-top:10px;}
.mt-2{margin-top:20px;}
.mt-3{margin-top:30px;}
.mt-4{margin-top:40px;}
.mt-5{margin-top:50px;}

.mb-1{margin-bottom:10px;}
.mb-2{margin-bottom:20px;}
.mb-3{margin-bottom:30px;}
.mb-4{margin-bottom:40px;}
.mb-5{margin-bottom:50px;}

.w-100{

width:100%;

}

.hidden{

display:none;

}

html{

scroll-padding-top:90px;

}

body{

animation:fadeBody .5s ease;

}

@keyframes fadeBody{

from{
opacity:0;
}

to{
opacity:1;
}

}