@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;700;900&display=swap');

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Inter',sans-serif;
}

html{
  scroll-behavior:smooth;
}

body{
  background:#0b0b0b;
  color:white;
  overflow-x:hidden;
}

header{
  position:fixed;
  width:100%;
  top:0;
  z-index:1000;
  background:rgba(0,0,0,.7);
  backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(255,255,255,.08);
}

nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:20px 8%;
}

.logo{
  font-size:1.6rem;
  font-weight:900;
}

.logo span{
  color:#00c2ff;
}

nav ul{
  display:flex;
  list-style:none;
  gap:35px;
}

nav a{
  text-decoration:none;
  color:white;
  font-weight:500;
  transition:.3s;
}

nav a:hover{
  color:#00c2ff;
}

.hero{
  height:100vh;
  background:url('https://i.postimg.cc/FsH5DzFs/IMG-2538.jpg');
  background-size:cover;
  background-position:center;
  position:relative;
  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:0 8%;
}

.overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.72);
}

.hero-content{
  position:relative;
  z-index:2;
  max-width:900px;
}

.hero h1{
  font-size:4.5rem;
  font-weight:900;
  line-height:1.05;
  margin-bottom:25px;
}

.hero p{
  color:#d3d3d3;
  font-size:1.2rem;
  line-height:1.7;
  margin-bottom:40px;
}

.hero-buttons{
  display:flex;
  gap:20px;
  justify-content:center;
  flex-wrap:wrap;
}

.primary-btn,
.secondary-btn{
  padding:18px 34px;
  border-radius:12px;
  text-decoration:none;
  font-weight:800;
  transition:.3s;
}

.primary-btn{
  background:#00c2ff;
  color:black;
}

.secondary-btn{
  border:1px solid white;
  color:white;
}

.primary-btn:hover,
.secondary-btn:hover{
  transform:translateY(-5px);
}

section{
  padding:110px 8%;
}

.title{
  text-align:center;
  margin-bottom:60px;
}

.title h2{
  font-size:3rem;
  margin-bottom:15px;
}

.title p{
  color:#b9b9b9;
}

.service-grid,
.gallery-grid,
.review-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:30px;
}

.service-card,
.review-card{
  background:#141414;
  padding:25px;
  border-radius:20px;
  border:1px solid rgba(255,255,255,.06);
  transition:.35s;
}

.service-card:hover,
.review-card:hover{
  transform:translateY(-10px);
  border-color:#00c2ff;
}

.photo-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  margin-bottom:20px;
}

.service-img{
  width:100%;
  height:220px;
  object-fit:cover;
  border-radius:16px;
}

.review-img{
  width:100%;
  height:140px;
  object-fit:cover;
  border-radius:14px;
}

.service-card h3{
  margin:20px 0 15px;
  font-size:1.3rem;
}

.service-card p,
.review-card p{
  color:#c9c9c9;
  line-height:1.7;
}

.gallery-card{
  overflow:hidden;
  border-radius:20px;
}

.gallery-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:.5s;
}

.gallery-card:hover img{
  transform:scale(1.05);
}

.review-card h4{
  color:#00c2ff;
  margin:20px 0 10px;
}

.review-card span{
  color:#bcbcbc;
  font-size:.95rem;
}

.contact-box{
  background:#121212;
  padding:50px;
  border-radius:25px;
}

form{
  display:grid;
  gap:20px;
}

input,
textarea{
  background:#1b1b1b;
  border:none;
  padding:18px;
  border-radius:12px;
  color:white;
  font-size:1rem;
}

textarea{
  min-height:150px;
  resize:none;
}

button{
  background:#00c2ff;
  border:none;
  color:black;
  padding:18px;
  border-radius:12px;
  font-size:1rem;
  font-weight:900;
  cursor:pointer;
}

footer{
  padding:40px;
  text-align:center;
  color:#8e8e8e;
}

.floating-call-btn{
  position:fixed;
  bottom:30px;
  right:30px;
  z-index:9999;
  background:#00c2ff;
  color:black;
  padding:16px 28px;
  border-radius:50px;
  text-decoration:none;
  font-weight:900;
  font-size:1rem;
  box-shadow:0 6px 24px rgba(0,194,255,.4);
  transition:.3s;
}

.floating-call-btn:hover{
  transform:translateY(-4px);
  box-shadow:0 10px 32px rgba(0,194,255,.6);
}

@media(max-width:768px){

  .hero h1{
    font-size:2.8rem;
  }

  nav ul{
    display:none;
  }

  .title h2{
    font-size:2.2rem;
  }

  .floating-call-btn{
    bottom:20px;
    right:20px;
    padding:14px 22px;
    font-size:.95rem;
  }

}