/* assets/css/style.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background: #ffffff;
  color: #0f172a;
  overflow-x: hidden;
}

#preloader {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: #f0f7ff;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loader {
  width: 50px; height: 50px;
  border: 4px solid #e2e8f0;
  border-top: 4px solid #2563eb;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin { 0% { transform: rotate(0); } 100% { transform: rotate(360deg); } }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(16px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.02);
  transition: all 0.3s;
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 24px;
}
.logo-area { display: flex; align-items: center; gap: 8px; text-decoration: none !important; }
.logo-icon-wrapper { background: linear-gradient(135deg, #f39c12, #e67e22); width: 38px; height: 38px; border-radius: 8px; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 10px rgba(243, 156, 18, 0.3); flex-shrink: 0; }
.logo-icon { font-size: 1.2rem; color: white; }
.logo-text-wrapper { display: flex; flex-direction: column; line-height: 1.1; justify-content: center; }
.logo-text-main { font-size: 1.3rem; font-weight: 900; letter-spacing: 0px; color: #0f2b5e; text-transform: uppercase; white-space: nowrap; text-decoration: none !important; }
.logo-text-sub { font-size: 0.6rem; font-weight: 700; color: #117864; text-transform: uppercase; letter-spacing: 1px; white-space: nowrap; text-decoration: none !important; }
.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-item {
  text-decoration: none;
  font-weight: 500;
  color: #1e293b;
  position: relative;
  transition: 0.2s;
}
.nav-item:after {
  content: '';
  position: absolute;
  width: 0; height: 2px;
  bottom: -6px; left: 0;
  background: linear-gradient(90deg, #2563eb, #38bdf8);
  transition: 0.3s;
}
.nav-item:hover:after, .nav-item.active:after { width: 100%; }
.nav-item.active { color: #2563eb; font-weight: 600; }
.nav-actions { display: flex; gap: 1rem; align-items: center; }
.nav-phone { background: #117864; color: white; padding: 0.5rem 1.2rem; border-radius: 40px; text-decoration: none !important; font-weight: 700; font-size: 0.9rem; transition: 0.2s; display: flex; align-items: center; gap: 8px; box-shadow: 0 4px 12px rgba(17, 120, 100, 0.3); white-space: nowrap; }
.nav-phone:hover { background: #0e6655; color: white; transform: translateY(-2px); }
.btn-book-nav { background: #f39c12; color: white; padding: 0.5rem 1.6rem; border-radius: 40px; font-weight: 700; transition: all 0.25s; text-decoration: none !important; font-size: 0.9rem; box-shadow: 0 4px 12px rgba(243, 156, 18, 0.3); white-space: nowrap; }
.btn-book-nav:hover { transform: translateY(-2px); background: #e67e22; box-shadow: 0 6px 15px rgba(230, 126, 34, 0.4); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.hamburger span {
  width: 26px; height: 2px;
  background: #1e293b;
  transition: 0.2s;
}

/* Hero */
.hero {
  background: linear-gradient(145deg, #f8fafd, #eef4ff);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.hero-content { flex: 1.2; }
.hero-content h1 {
  font-size: 3.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #0f2b5e, #2563eb);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.2;
}
.hero-sub {
  font-size: 1.2rem;
  margin: 1.5rem 0;
  color: #334155;
}
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 40px;
  font-weight: 600;
  transition: 0.3s;
  text-decoration: none;
}
.btn-primary {
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: white;
  box-shadow: 0 8px 16px -6px rgba(37,99,235,0.3);
}
.btn-primary:hover { transform: scale(1.02); box-shadow: 0 12px 24px -8px #2563eb; }
.btn-outline {
  border: 2px solid #2563eb;
  color: #2563eb;
  background: transparent;
}
.btn-outline:hover { background: #2563eb10; transform: translateY(-2px);}
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-image { flex: 1; text-align: center; }
.floating-img img {
  max-width: 100%;
  border-radius: 48px;
  animation: float 5s ease-in-out infinite;
  box-shadow: 0 25px 40px -12px rgba(0,0,0,0.2);
}
@keyframes float { 0%{ transform: translateY(0px); } 50%{ transform: translateY(-12px); } 100%{ transform: translateY(0px); } }

.bg-shapes .shape {
  position: absolute; background: radial-gradient(circle, #3b82f620, transparent);
  border-radius: 50%;
}
.shape-1 { width: 300px; height: 300px; top: -100px; left: -80px; }
.shape-2 { width: 200px; height: 200px; bottom: 20px; right: 10px; }
.shape-3 { width: 150px; height: 150px; top: 40%; right: 20%; }

/* Service cards */
.services-highlight { padding: 80px 0; background: white; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { font-size: 2.4rem; color: #0f2b5e; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}
.service-card {
  background: #ffffff;
  padding: 2rem 1.5rem;
  border-radius: 32px;
  transition: all 0.3s ease;
  box-shadow: 0 12px 28px -8px rgba(0,0,0,0.05);
  text-align: center;
  border: 1px solid #eef2ff;
}
.service-card i { font-size: 2.8rem; color: #2563eb; margin-bottom: 1rem; }
.service-card:hover { transform: translateY(-8px); box-shadow: 0 24px 36px -12px #2563eb20; border-color: #2563eb30; }
/* Why choose + counter */
.why-choose { background: #f0f9ff; padding: 80px 0; }
.stats-grid {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem;
}
.stat-item {
  text-align: center; background: white; padding: 2rem; border-radius: 48px; width: 180px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.02); transition: 0.2s;
}
.stat-item i { font-size: 2.5rem; color: #2563eb; }
.stat-item h3 { font-size: 2rem; font-weight: 800; margin: 0.5rem 0; color: #0f2b5e; }

/* Footer */
.footer {
  background: #0f172a;
  color: #cbd5e1;
  padding-top: 3rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 2rem;
}
.footer-col h3, .footer-col h4 { color: white; margin-bottom: 1rem; }
.footer-col a { display: block; color: #94a3b8; text-decoration: none; margin: 0.5rem 0; transition: 0.2s; }
.footer-col a:hover { color: #3b82f6; }
.footer-bottom { text-align: center; padding: 2rem; border-top: 1px solid #1e293b; margin-top: 2rem; }

/* Floating */
.floating-buttons {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 999;
}
.float-whatsapp, .float-call {
  background: #25D366;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  box-shadow: 0 6px 14px rgba(0,0,0,0.2);
  transition: 0.2s;
  animation: bounce 1.2s infinite;
}
.float-call { background: #2563eb; animation-delay: 0.3s; }
@keyframes bounce { 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-6px); } }

/* About, Services Gallery pages common */
.page-header {
  background: linear-gradient(135deg, #eef2ff, #ffffff);
  padding: 4rem 0;
  text-align: center;
}
.about-grid, .mv-grid { display: flex; gap: 3rem; margin: 3rem 0; flex-wrap: wrap; }
.owner-card { background: white; border-radius: 48px; text-align: center; padding: 2rem; max-width: 400px; margin: 2rem auto; box-shadow: 0 20px 30px -12px #2563eb20;}
.owner-img img { width: 140px; border-radius: 50%; border: 4px solid #2563eb; }
.services-detailed-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(290px,1fr)); gap: 2rem; margin: 3rem 0; }
.service-detailed-card { background: #fff; border-radius: 32px; overflow: hidden; transition: all 0.2s; box-shadow: 0 8px 20px rgba(0,0,0,0.05); }
.service-detailed-card:hover { transform: scale(1.02); }
.card-img img { width: 100%; height: 160px; object-fit: cover; }
.service-detailed-card i, .service-detailed-card h3 { margin: 1rem 1rem 0 1rem; }
.service-detailed-card p { margin: 0.5rem 1rem 1.5rem 1rem; color: #475569; line-height: 1.5; }

.gallery-grid.masonry { columns: 3 260px; column-gap: 1.5rem; }
.gallery-item { break-inside: avoid; margin-bottom: 1.5rem; position: relative; border-radius: 24px; overflow: hidden; }
.gallery-item img { width: 100%; border-radius: 24px; transition: 0.4s; }
.gallery-item .overlay { position: absolute; bottom: 0; background: linear-gradient(transparent, #000000aa); width: 100%; padding: 1rem; color: white; transform: translateY(100%); transition: 0.3s; }
.gallery-item:hover .overlay { transform: translateY(0); }
.gallery-item:hover img { transform: scale(1.05); }

.contact-wrapper { display: flex; gap: 3rem; flex-wrap: wrap; margin: 3rem 0; }
.contact-info { flex: 1; background: #f8fafc; border-radius: 32px; padding: 2rem; }
.contact-form { flex: 1; background: white; border-radius: 32px; padding: 2rem; box-shadow: 0 12px 28px #2563eb10; }
.contact-form input, .contact-form textarea { width: 100%; margin: 0.5rem 0; padding: 12px 16px; border-radius: 40px; border: 1px solid #e2e8f0; }
.full { width: 100%; text-align: center; }

@media (max-width: 900px) {
  .nav-container { justify-content: flex-start; gap: 5px; padding: 1rem 15px; }
  .logo-area { flex-grow: 1; }
  .nav-links { position: fixed; top: 70px; left: -100%; background: rgba(255,255,255,0.98); backdrop-filter: blur(12px); width: 80%; height: 100vh; flex-direction: column; transition: 0.3s; padding: 2rem; gap: 1.5rem; }
  .nav-links.active { left: 0; }
  .nav-actions { display: flex; gap: 4px; flex-shrink: 0; }
  .hamburger { display: flex; margin-left: 4px; flex-shrink: 0; }
  .logo-icon-wrapper { width: 30px; height: 30px; border-radius: 6px; }
  .logo-icon { font-size: 1rem; }
  .logo-text-main { font-size: 1.15rem; }
  .logo-text-sub { font-size: 0.5rem; letter-spacing: 0px; }
  .nav-phone, .btn-book-nav { padding: 0.35rem 0.6rem; font-size: 0.75rem; white-space: nowrap; flex-shrink: 0; }
  .nav-phone i { font-size: 0.75rem; margin-right: 3px; gap: 0; }
}
@media (max-width: 380px) {
  .nav-phone span { display: none; }
  .nav-phone { padding: 0.4rem; border-radius: 50%; justify-content: center; width: 32px; height: 32px; }
  .nav-phone i { margin: 0; font-size: 0.85rem; }
  .hero-content h1 { font-size: 2.2rem; }
  .stats-grid .stat-item { width: 140px; }
}