:root {
  --primary: #d63031;
  --secondary: #1e272e;
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --text-main: #2d3436;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow: 0 10px 30px rgba(0,0,0,0.08);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: var(--text-main);
  overflow-x: hidden;
}

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

/* Modern 3-Part Header */
header {
  background: white;
  padding: 15px 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1001;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.logo-red {
  color: var(--primary);
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: -1px;
}

.logo-tag {
  color: var(--secondary);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
}

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

.nav-links a {
  text-decoration: none;
  color: var(--secondary);
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
}

.nav-links a.active, .nav-links a:hover { color: var(--primary); }

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

.header-phone {
  font-weight: 800;
  color: var(--primary);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Header clean up */

/* Top Action Bar (Mobile Focused) */
.top-action-bar {
  background: white;
  padding: 10px 0;
  border-bottom: 1px solid #eaeaea;
}

.top-action-flex {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.top-btn {
  flex: 1;
  max-width: 200px;
  padding: 10px 15px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.95rem;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.btn-green { background: #25d366; }
.btn-blue { background: #007bff; }
.top-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 15px rgba(0,0,0,0.15); }

/* Hero Section */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: var(--light-gray);
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: heroSlideFade 15s infinite;
}

.hero-slide:nth-child(1) { background-image: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&q=80&w=1920'); animation-delay: 0s; }
.hero-slide:nth-child(2) { background-image: url('https://images.unsplash.com/photo-1577412647305-991150c7d163?auto=format&fit=crop&q=80&w=1920'); animation-delay: 5s; }
.hero-slide:nth-child(3) { background-image: url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&q=80&w=1920'); animation-delay: 10s; }

@keyframes heroSlideFade {
  0% { opacity: 0; transform: scale(1); }
  10% { opacity: 1; }
  33% { opacity: 1; }
  43% { opacity: 0; transform: scale(1.1); }
  100% { opacity: 0; }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3); /* Slightly darker for better visibility */
  z-index: 2;
}

.hero-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: center;
  text-align: center;
}

.hero-content {
  position: relative;
  z-index: 5;
  color: white;
  text-align: center;
}

.hero-main-title {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 0 4px 15px rgba(0,0,0,0.4);
}


@media (max-width: 600px) {
  .hero-content h1 { font-size: 2rem; }
  .hindi-tagline-accent { font-size: 1rem; padding: 10px; }
}

.highlight { color: var(--primary); }

.hindi-tagline-accent {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border-left: 5px solid var(--primary);
  padding: 12px 20px;
  margin-bottom: 30px;
  max-width: 450px;
  border-radius: 0 12px 12px 0;
  color: white;
  font-size: 1.15rem;
  font-weight: 600;
  animation: slideInLeft 1s ease-out forwards;
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Red CTA Card */
.cta-card-red {
  background: #8e0000;
  padding: 25px;
  border-radius: 20px;
  color: white;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  max-width: 450px;
  animation: cardFloat infinite 4s ease-in-out;
}

@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.cta-row-flex {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 15px;
}

.cta-number-ref { 
  font-size: 2.5rem; 
  font-weight: 900; 
  letter-spacing: 1px;
  display: inline-block;
  white-space: nowrap;
}

.cursor {
  display: inline-block;
  opacity: 1;
  animation: blinkCursor 1s step-end infinite;
  margin-left: 2px;
  font-weight: 300;
}

@keyframes blinkCursor {
  50% { opacity: 0; }
}

@media (max-width: 480px) {
  .cta-card-red { text-align: center; margin: 0 auto; padding: 20px 15px; }
  .cta-row-flex { flex-direction: column; justify-content: center; gap: 10px; }
  .cta-number-ref { font-size: 1.8rem; }
}

.cta-hr {
  border: 0;
  height: 1.5px;
  background: rgba(255,255,255,0.7);
  margin: 15px 0;
  width: 100%;
}

.cta-tagline-ref { 
  font-size: 1.1rem; 
  font-weight: 700; 
  opacity: 0.95; 
  display: flex; 
  align-items: center; 
  gap: 10px; 
  justify-content: center;
}

.cta-badge-ref {
  border: 2px solid white;
  padding: 8px 12px;
  text-align: center;
  line-height: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 4px;
}

.cta-badge-ref span { font-size: 0.75rem; font-weight: 900; }
.cta-badge-ref strong { font-size: 1.2rem; font-weight: 900; }

@keyframes phonePulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.08); opacity: 0.9; }
  100% { transform: scale(1); opacity: 1; }
}

.cta-tagline-ref { font-size: 0.95rem; font-weight: 600; opacity: 0.9; margin-bottom: 15px; }

.cta-line-ref { height: 1px; background: rgba(255,255,255,0.2); margin-bottom: 15px; }

.cta-highlights-ref { font-size: 0.85rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; }

/* Premium Centered Cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.premium-service-card {
  background: white;
  border-radius: 25px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: none !important;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.premium-service-card:hover { 
  transform: translateY(-10px); 
  box-shadow: 0 30px 60px rgba(0,0,0,0.08); 
}

.premium-service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transform: skewX(-25deg);
}

.premium-service-card:hover::after {
  left: 150%;
  transition: left 0.7s ease-in-out;
}

.card-image-centered {
  width: 100%;
  max-width: 250px;
  height: 180px;
  margin-bottom: 30px;
  border-radius: 12px;
  object-fit: cover;
}

.premium-service-card h3 { font-size: 1.5rem; font-weight: 800; color: var(--secondary); margin-bottom: 15px; }
.premium-service-card p { font-size: 0.95rem; line-height: 1.7; color: #7f8c8d; }

/* Contact Balanced Section */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  align-items: stretch;
}

.contact-form-box, .contact-info-box {
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.contact-info-box { background: var(--secondary); color: white; }

.form-group { margin-bottom: 15px; }
.form-group label { display: block; font-weight: 700; margin-bottom: 8px; font-size: 0.9rem; }
.form-group input, .form-group select {
  width: 100%; padding: 12px 15px; border-radius: 8px; border: 1px solid #ddd;
}

.info-item { display: flex; gap: 15px; margin-bottom: 15px; align-items: flex-start; }
.info-icon {
  width: 45px; height: 45px; background: rgba(214, 48, 49, 0.2);
  border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

.info-text h4 { font-size: 0.85rem; color: var(--primary); text-transform: uppercase; margin-bottom: 2px; }
.info-text p { font-size: 0.85rem; color: white; }

.map-container { border-radius: 15px; overflow: hidden; margin-top: auto; height: 180px; }

/* Footer */
footer { background: var(--secondary); color: white; padding: 60px 0 20px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 40px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: #ccc; text-decoration: none; }
.footer-links a:hover { color: var(--primary); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; text-align: center; font-size: 0.85rem; opacity: 0.7; }

/* Button Styles */
.btn { border-radius: 50px; font-weight: 800; transition: var(--transition); text-decoration: none; text-align: center; display: inline-block; cursor: pointer; }
.btn-red { background: var(--primary); color: white; }
.btn-pill { padding: 12px 30px; }
.btn:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(214, 48, 49, 0.2); }

/* Animation */
.animate-fade-up { opacity: 0; transform: translateY(30px); animation: fadeUp 0.8s forwards; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

/* Mobile Menu */
.mobile-menu-btn { display: none; font-size: 1.5rem; cursor: pointer; }

@media (max-width: 992px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .hero-content h1 { font-size: 2.5rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .mobile-menu-btn { display: block; }
  .header-action { display: none; }
  
  .nav-links.show {
    display: flex;
    position: fixed;
    top: 75px;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    padding: 30px;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 1000;
  }
}

@media (max-width: 992px) {
  .hero-grid, .about-grid, .services-grid, .contact-grid { grid-template-columns: 1fr !important; text-align: center; justify-items: center; }
  .section { padding: 60px 0; }
  .section-header h2 { font-size: 2rem; }
}

/* Content Spacing for Sticky Bar */
body { padding-bottom: 85px; } 

@media (max-width: 600px) {
  .section-header h2 { font-size: 1.8rem; }
  .hero-main-title { font-size: 2.2rem; }
}

/* Bottom Nav - Visible Desktop and Mobile */
.bottom-nav {
  display: grid;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70px;
  z-index: 9999;
  grid-template-columns: repeat(3, 1fr);
  box-shadow: 0 -5px 25px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
  body { padding-bottom: 95px; } /* Ensures content isn't hidden by sticky bar */
}


@media (max-width: 768px) {
  .bottom-nav {
    display: grid;
    bottom: 15px;
    left: 4%;
    width: 92%;
    border-radius: 12px;
    overflow: hidden;
  }
}

.item-call { background: #d63031 !important; color: white; }
.item-whatsapp { background: #25d366 !important; color: white; }
.item-book { background: #f39c12 !important; color: white; }

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 800;
  gap: 4px;
}

.nav-item i { font-size: 1.4rem; } 