/* === TVAssist.in — Modern Light Theme === */
* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: "Inter", system-ui, Arial, sans-serif;
  color: #222;
  background: #fafafa;
  line-height: 1.6;
}

/* === FINAL LOGO FIX === */
.site-logo {
  width: auto;
  height: 55px;         /* Control height */
  max-width: 100%;
  object-fit: contain;
  display: block;
}

.mobile-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
}

/* Adjust for larger & smaller screens */
@media (min-width: 1200px) {
  .site-logo {
    height: 30px;
  }
}

@media (max-width: 768px) {
  .site-logo {
    height: 45px;
  }
  .mobile-logo {
    height: 35px;
  }
}
 
/* === TOPBAR === */
.topbar {
  font-size: 15px;
}
.topbar .text-primary {
  color: #0d6efd !important;
}

/* === NAVBAR === */
.navbar-nav .nav-link {
  color: #333 !important;
  padding: 8px 14px;
  transition: color 0.3s ease, background 0.3s ease;
  border-radius: 6px;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  background: #0d6efd;
  color: #fff !important;
}

/* === BUTTONS === */
.btn-primary {
  background: #0d6efd;
  border: none;
  font-weight: 600;
  border-radius: 8px;
  transition: 0.3s ease;
}
.btn-primary:hover {
  background: #0056d2;
  transform: translateY(-2px);
}
.btn-outline-primary:hover {
  background: #0d6efd;
  color: #fff;
}

/* === FOOTER === */
.site-footer {
  background: #222;
  color: #ccc;
  padding: 40px 20px;
  text-align: center;
  margin-top: 60px;
}
.site-footer a {
  color: #0d6efd;
  text-decoration: none;
}
.site-footer a:hover {
  text-decoration: underline;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .topbar .container {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  .navbar-nav {
    text-align: center;
  }
}


/* === HERO SECTION (Improved) === */
.hero-section {
  position: relative;
  background: url("assets/images/gallery-2.png") no-repeat center center/cover;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-section .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-section h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
}

.hero-section p {
  font-size: 1.1rem;
  color: #f8f9fa;
}

.hero-card {
  max-width: 380px;
  margin: auto;
  transition: transform 0.3s;
}
.hero-card:hover {
  transform: translateY(-5px);
}

.feature-card small {
  color: #ddd;
}

/* === Responsive Fixes === */
@media (max-width: 992px) {
  .hero-section {
    min-height: auto;
    padding: 80px 0;
    text-align: center;
  }
  .hero-section h2 {
    font-size: 2.1rem;
  }
  .hero-card {
    margin-top: 40px;
  }
}



/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
  gap: 30px;
  align-items: center;
}
.about ul {
  list-style: none;
  padding: 0;
}
.about li::before {
  content: "✔️ ";
  color: #ff6600;
}
.about img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* SERVICES */
.light-bg { background: #fff; }
.services .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
  gap: 24px;
  margin-top: 20px;
}
.card {
  background: #fff;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  transition: 0.3s;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}
.card h3 {
  color: #ff6600;
  margin-bottom: 10px;
}

/* WHY US */
.why-us .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
  gap: 20px;
  text-align: center;
}
.why-item {
  background: #fffbf7;
  border: 1px solid #ffe2cc;
  border-radius: 10px;
  padding: 20px;
}
.why-item h4 { color: #ff6600; margin-bottom: 8px; }

/* GALLERY */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 12px;
}
.gallery-grid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s;
}
.gallery-grid img:hover { transform: scale(1.05); }

/* BOOKING FORM */
.form {
  display: grid;
  gap: 15px;
  max-width: 500px;
  margin-top: 20px;
}
.form input, .form textarea, .form select {
  width: 100%;
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid #ddd;
  font-size: 15px;
}
.form input:focus, .form textarea:focus, .form select:focus {
  border-color: #ff6600;
  outline: none;
}
.alert.success {
  background: #e6ffed;
  border: 1px solid #b7f2c6;
  padding: 10px;
  border-radius: 6px;
}

/* TESTIMONIALS */
.review-slider blockquote {
  background: #fff;
  border-left: 5px solid #ff6600;
  padding: 16px 20px;
  margin: 10px 0;
  border-radius: 6px;
  font-style: italic;
}

/* CONTACT */
.contact ul {
  list-style: none;
  margin-top: 10px;
}
.contact li {
  margin: 8px 0;
  font-weight: 500;
}

/* FOOTER */
.site-footer {
  background: #222;
  color: #ddd;
  padding: 30px 20px;
  text-align: center;
  margin-top: 60px;
}
.site-footer a { color: #ff6600; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }

/* RESPONSIVE */
@media(max-width:768px){
  .hero h1 { font-size: 32px; }
  .hero p { font-size: 16px; }
  .header-inner { flex-direction: column; gap: 10px; }
}
