/*
Theme Name: TV Service Care Hyderabad
Theme URI: https://tvcareexpert.com
Author: TV Service Care
Author URI: https://tvcareexpert.com
Description: Custom WordPress theme for TV repair service in Hyderabad. Professional, clean design matching service business needs. Mobile responsive.
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: tv-service-care
Tags: custom-theme, service, repair, tv-repair, hyderabad, responsive
*/

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fff;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Header */
header {
  background: #000000;
  color: #fff;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
}

.logo span {
  color: #B4121B;
}

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

nav ul li a {
  color: #fff;
  font-weight: 500;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #B4121B;
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-contact a {
  color: #fff;
  font-size: 14px;
}

.cta-header {
  background: #B4121B;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 600;
  transition: background 0.3s;
}

.cta-header:hover {
  background: #8B0E15;
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), url('https://picsum.photos/id/1015/2000/1200') center/cover no-repeat;
  color: #fff;
  padding: 120px 0 80px;
  text-align: center;
}

.hero h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero p {
  font-size: 20px;
  max-width: 700px;
  margin: 0 auto 30px;
}

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

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: #B4121B;
  color: #fff;
}

.btn-primary:hover {
  background: #8B0E15;
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.btn-secondary:hover {
  background: #fff;
  color: #B4121B;
}

/* Section Styles */
section {
  padding: 70px 0;
}

.section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #000000;
}

.section-subtitle {
  text-align: center;
  color: #666;
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 50px;
}

/* About Section */
.about {
  background: #f8f9fa;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-text h3 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #000000;
}

.about-text p {
  margin-bottom: 15px;
  color: #555;
}

/* Stats */
.stats {
  background: #000000;
  color: #fff;
  padding: 50px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: center;
}

.stat-item h3 {
  font-size: 42px;
  font-weight: 700;
  color: #B4121B;
}

.stat-item p {
  font-size: 16px;
  opacity: 0.9;
}

/* Services / What We Provide */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.service-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 30px 25px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.service-card .icon {
  font-size: 48px;
  color: #B4121B;
  margin-bottom: 20px;
}

.service-card h4 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #B4121B;
}

.service-card p {
  color: #666;
  font-size: 15px;
}

/* Why Choose Us */
.why-choose {
  background: #f8f9fa;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.why-item {
  background: #fff;
  padding: 25px;
  border-radius: 8px;
  border-left: 5px solid #B4121B;
}

.why-item h4 {
  color: #B4121B;
  margin-bottom: 10px;
}

/* Testimonials */
.testimonials {
  background: #fff;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.testimonial {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 10px;
  position: relative;
}

.testimonial p {
  font-style: italic;
  color: #555;
  margin-bottom: 20px;
}

.testimonial-author {
  font-weight: 600;
  color: #000000;
}

.testimonial-author span {
  display: block;
  font-weight: 400;
  color: #666;
  font-size: 14px;
}

.stars {
  color: #ffc107;
  font-size: 1.2em;
  margin-bottom: 10px;
}

.stars i {
  margin-right: 3px;
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, #000000, #B4121B);
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}

.cta-banner h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.cta-banner p {
  font-size: 18px;
  margin-bottom: 25px;
  opacity: 0.95;
}

/* Footer */
footer {
  background: #000000;
  color: #ccc;
  padding: 50px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 18px;
}

.footer-col p, .footer-col a {
  color: #aaa;
  font-size: 14px;
  margin-bottom: 8px;
  display: block;
}

.footer-col a:hover {
  color: #B4121B;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 20px;
  text-align: center;
  font-size: 13px;
  color: #777;
}

.visiting-charge {
  background: #B4121B;
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  display: inline-block;
  font-weight: 600;
  margin-top: 10px;
}

/* WhatsApp Floating Button */
.whatsapp-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #25d366;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: transform 0.3s;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    gap: 15px;
  }
  
  nav ul {
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .about-content {
    grid-template-columns: 1fr;
  }
  
  .section-title {
    font-size: 28px;
  }
}