/* 
    Project: Sharma AC Service - Modern Premium Theme
    Updated: 2026 
    Framework: Bootstrap 5 + Custom Modern UI
*/

@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap");

:root {
  --primary: #006aff;
  --primary-dark: #0056d2;
  --secondary: #64748b;
  --dark: #0f172a;
  --light: #f8fbff;
  --white: #ffffff;
  --success: #25d366;
  --glass: rgba(255, 255, 255, 0.85);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--dark);
  background-color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

/* --- Utilities --- */
.py-100 {
  padding: 100px 0;
}
.text-gradient {
  background: linear-gradient(90deg, var(--primary), #00d4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.bg-soft-blue {
  background-color: var(--light);
}
.shadow-glow {
  box-shadow: 0 10px 30px rgba(0, 106, 255, 0.2);
}

/* --- Header & Navigation --- */
.main-header {
  transition: 0.4s;
  z-index: 1000;
}
.bg-glass {
  background: var(--glass);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Sidebar Mobile */
.mobile-sidebar {
  position: fixed;
  top: 0;
  left: -300px;
  width: 300px;
  height: 100%;
  background: var(--white);
  z-index: 2000;
  transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-sidebar.active {
  left: 0;
}
.sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 1999;
}
.sidebar-links {
  list-style: none;
  padding: 20px;
}
.sidebar-links li a {
  display: block;
  padding: 15px;
  color: var(--dark);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid #f1f1f1;
}

/* --- Hero Section --- */
.hero-wrap {
  min-height: 90vh;
  background: radial-gradient(circle at top right, #eef5ff, #ffffff);
  padding-top: 120px;
  display: flex;
  align-items: center;
}
.hero-img-container {
  position: relative;
}
.floating-ac {
  animation: floatAC 4s ease-in-out infinite;
  filter: drop-shadow(0 30px 50px rgba(0, 106, 255, 0.15));
}
@keyframes floatAC {
  0%,
  100% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-25px) rotate(2deg);
  }
}
.cool-air-effect {
  position: absolute;
  bottom: 20%;
  right: 10%;
  width: 200px;
  height: 100px;
  background: radial-gradient(
    ellipse at center,
    rgba(13, 110, 253, 0.1) 0%,
    transparent 70%
  );
  filter: blur(20px);
  z-index: -1;
}

/* --- About Section --- */
.about-img-box {
  position: relative;
}
.exp-badge {
  position: absolute;
  bottom: -20px;
  right: -10px;
  text-align: center;
  min-width: 140px;
  z-index: 2;
  background: var(--primary);
  color: white;
  padding: 15px;
  border-radius: 15px;
}

/* --- Services & Features --- */
.service-card-modern,
.feature-card {
  background: var(--white);
  transition: 0.4s;
  border: 1px solid #eee;
}
.service-card-modern:hover,
.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1) !important;
  border-color: var(--primary);
}
.s-img-wrap {
  height: 200px;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
}
.s-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s;
}
.service-card-modern:hover .s-img-wrap img {
  transform: scale(1.1);
}

/* --- Google Reviews Look --- */
.google-review-card {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 25px;
  text-align: left;
  height: 100%;
  transition: 0.3s;
}
.reviewer-thumb {
  width: 45px;
  height: 45px;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: bold;
}
.stars {
  color: #fbbc05;
  font-size: 0.85rem;
  margin-top: 2px;
}

/* --- Contact Section (Modern) --- */
.contact-card-modern {
  border: none;
  overflow: hidden;
  border-radius: 30px;
}
.contact-icon-box {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}
.modern-input {
  background: #f1f5f9;
  border: 2px solid transparent;
  padding: 14px 18px;
  border-radius: 12px;
  transition: 0.3s;
}
.modern-input:focus {
  background: var(--white);
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(0, 106, 255, 0.1);
  outline: none;
}
.social-icons-contact a {
  color: #fff;
  margin-right: 20px;
  font-size: 1.2rem;
  transition: 0.3s;
  opacity: 0.8;
  text-decoration: none;
}
.social-icons-contact a:hover {
  opacity: 1;
  transform: translateY(-3px);
}

/* --- Footer --- */
.footer-pro {
  background: #0a0e14;
  color: var(--white);
}
.footer-links-list {
  list-style: none;
  padding: 0;
}
.footer-links-list li {
  margin-bottom: 12px;
}
.footer-links-list a {
  color: #94a3b8;
  text-decoration: none;
  transition: 0.3s;
  font-size: 0.9rem;
}
.footer-links-list a:hover {
  color: var(--white);
  padding-left: 10px;
}

/* --- Floating Actions --- */
.floating-container {
  position: fixed;
  bottom: 100px;
  right: 25px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1001;
}
.floating-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  color: white;
  text-decoration: none;
  font-size: 1.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: 0.4s;
}
.floating-btn.whatsapp {
  background: var(--success);
}
.floating-btn.call {
  background: var(--primary);
}
.floating-btn:hover {
  transform: scale(1.1) rotate(5deg);
  color: white;
}

/* --- Mobile Bottom Nav --- */
.mobile-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 75px;
  background: var(--glass);
  backdrop-filter: blur(20px);
  display: flex;
  justify-content: space-around;
  align-items: center;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  z-index: 1050;
  padding-bottom: env(safe-area-inset-bottom);
}
.mn-item {
  text-decoration: none;
  color: #64748b;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.7rem;
}
.mn-item i {
  font-size: 1.4rem;
  margin-bottom: 4px;
}
.mn-item.active {
  color: var(--primary);
  font-weight: 700;
}

/* --- Responsive --- */
@media (max-width: 991px) {
  .py-100 {
    padding: 70px 0;
  }
  .hero-wrap {
    text-align: center;
    padding-top: 100px;
  }
  .floating-container {
    right: 15px;
    bottom: 90px;
  }
  .floating-btn {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }
}
