:root {
  --primary-yellow: #ffbf00;
  --dark-yellow: #e6ac00;
  --black: #000000;
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --shadow: 0 4px 20px rgba(0,0,0,0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: var(--light-gray);
  color: var(--black);
  line-height: 1.6;
}

/* Header Styles */
.main-header {
  background: linear-gradient(135deg, var(--black) 0%, #333 100%);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow);
}

.navbar {
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--primary-yellow) !important;
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-placeholder {
  width: 50px;
  height: 50px;
  background: var(--primary-yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--black);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.navbar-nav .nav-link {
  color: var(--white) !important;
  font-weight: 500;
  margin: 0 10px;
  transition: all 0.3s ease;
  position: relative;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-yellow) !important;
  transform: translateY(-2px);
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-yellow);
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

.navbar-toggler {
  border: 2px solid var(--primary-yellow);
  padding: 4px 8px;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 191, 0, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--dark-yellow) 100%);
  color: var(--black);
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(0,0,0,0.1)"/><circle cx="80" cy="80" r="1" fill="rgba(0,0,0,0.1)"/><circle cx="40" cy="60" r="1" fill="rgba(0,0,0,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1rem;
  animation: slideInDown 1s ease-out;
}

.hero p {
  font-size: 1rem;
  margin-bottom: 2rem;
  animation: slideInUp 1s ease-out 0.3s both;
}

@keyframes slideInDown {
  from { transform: translateY(-100px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes slideInUp {
  from { transform: translateY(100px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
  animation: fadeIn 1s ease-out 0.6s both;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--black);
  display: block;
}

.stat-label {
  font-size: 1rem;
  color: var(--black);
}

/* Hero CTA Button */
.hero-cta {
  margin-top: 3rem;
  animation: fadeIn 1s ease-out 0.9s both;
}

.big-book-btn {
  background: linear-gradient(135deg, var(--black) 0%, #333 100%);
  color: var(--white);
  border: 3px solid var(--white);
  padding: 20px 40px;
  font-size: 1.4rem;
  font-weight: bold;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.big-book-btn:hover {
  background: linear-gradient(135deg, var(--white) 0%, #f0f0f0 100%);
  color: var(--black);
  border-color: var(--black);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.big-book-btn i {
  font-size: 1.6rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-5px); }
  60% { transform: translateY(-3px); }
}

/* SEO Content Section */
.seo-section {
  background: var(--white);
  padding: 4rem 0;
  box-shadow: var(--shadow);
}

.seo-content {
  text-align: center;
  margin-bottom: 3rem;
}

.seo-content h2 {
  color: var(--black);
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.seo-content p {
  font-size: 1.1rem;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: all 0.3s ease;
  border: 3px solid transparent;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-yellow);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.service-icon {
  font-size: 3rem;
  color: var(--primary-yellow);
  margin-bottom: 1rem;
}

.service-title {
  font-size: 1.3rem;
  font-weight: bold;
  color: var(--black);
  margin-bottom: 1rem;
}

.service-desc {
  color: #666;
  font-size: 0.95rem;
}

/* WhatsApp Form Styles - Compact for Mobile */
.form-container {
  background: var(--white);
  border-radius: 20px;
  padding: 1.5rem;
  margin: 3rem auto;
  max-width: 900px;
  box-shadow: var(--shadow);
  border: 3px solid var(--primary-yellow);
  animation: slideInUp 0.8s ease-out;
}

.form-title {
  text-align: center;
  color: var(--black);
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.whatsapp-subtitle {
  text-align: center;
  color: #25D366;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.form-group {
  margin-bottom: 1rem;
}

.form-label {
  font-weight: 600;
  color: var(--black);
  margin-bottom: 0.3rem;
  display: block;
  font-size: 0.9rem;
}

.form-control, .form-select {
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  padding: 12px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  background: var(--white);
}

.form-control:focus, .form-select:focus {
  border-color: var(--primary-yellow);
  box-shadow: 0 0 0 0.2rem rgba(255, 191, 0, 0.25);
  outline: none;
}

.whatsapp-note {
  background: linear-gradient(135deg, #fff9e6 0%, #fff3cc 100%);
  padding: 10px;
  border-radius: 8px;
  border-left: 4px solid var(--primary-yellow);
  margin: 10px 0;
  font-size: 12px;
  color: #666;
}

.submit-btn {
  background: linear-gradient(135deg, #25D366 0%, #20b358 100%);
  color: var(--white);
  font-weight: bold;
  font-size: 1.1rem;
  padding: 15px 30px;
  border: none;
  border-radius: 12px;
  width: 100%;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.submit-btn:hover {
  background: linear-gradient(135deg, #20b358 0%, #1a9e4e 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.duration-display {
  background: var(--primary-yellow);
  color: var(--black);
  padding: 8px;
  border-radius: 6px;
  font-weight: bold;
  text-align: center;
  margin-top: 8px;
  font-size: 0.9rem;
  animation: fadeIn 0.5s ease;
}

/* Footer */
.main-footer {
  background: linear-gradient(135deg, var(--black) 0%, #333 100%);
  color: var(--white);
  padding: 3rem 0 1rem;
  text-align: center;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: var(--primary-yellow);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.footer-section p, .footer-section a {
  color: var(--white);
  text-decoration: none;
  margin-bottom: 0.5rem;
  display: block;
}

.footer-section a:hover {
  color: var(--primary-yellow);
}

.social-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1rem;
}

.social-link {
  background: var(--primary-yellow);
  color: var(--black);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--white);
  transform: translateY(-3px);
}

.copyright {
  border-top: 1px solid #555;
  padding-top: 1rem;
  margin-top: 2rem;
  color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .big-book-btn {
    font-size: 1.2rem;
    padding: 18px 35px;
  }

  .form-container {
    margin: 2rem 10px;
    padding: 1.2rem;
    border-radius: 15px;
  }

  .form-title {
    font-size: 1.6rem;
  }

  .whatsapp-subtitle {
    font-size: 0.9rem;
  }

  .form-group {
    margin-bottom: 0.8rem;
  }

  .form-control, .form-select {
    padding: 10px;
    font-size: 0.9rem;
  }

  .whatsapp-note {
    padding: 8px;
    font-size: 11px;
  }

  .service-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-card {
    padding: 1.5rem;
  }

  .navbar-brand {
    font-size: 1.5rem;
  }

  .logo-placeholder {
    width: 40px;
    height: 40px;
  }

  .seo-section {
    padding: 2rem 0;
  }

  .seo-content h2 {
    font-size: 2rem;
  }

  .seo-content p {
    font-size: 1rem;
  }
}

/* Animation for form elements */
.form-control, .form-select {
  animation: slideInLeft 0.6s ease-out;
}

@keyframes slideInLeft {
  from { transform: translateX(-50px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* Loading animation */
.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  border-top-color: transparent;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}
/* Top Phone Bar */
.top-phone-bar {
  background: var(--primary-yellow);
  color: var(--black);
  padding: 8px 0;
  text-align: center;
  font-weight: bold;
  position: sticky;
  top: 0;
  z-index: 1001;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.top-phone-bar a {
  color: var(--black);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.top-phone-bar a:hover {
  color: var(--white);
}

/* Floating WhatsApp */
.floating-whatsapp {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 1000;
  background: #25D366;
  color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow:  0 8px 25px rgba(0,0,0,0.3);
  animation: pulse-whatsapp 2s infinite;
  text-decoration: none;
}

.floating-whatsapp:hover {
  background: #20b358;
  color: white;
  transform: scale(1.1);
}

@keyframes pulse-whatsapp {
  0% { box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 25px rgba(37, 211, 102, 0.7); }
  100% { box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4); }
}

/* Floating Enquire Button */
.floating-enquire {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1000;
  background: linear-gradient(135deg, var(--black) 0%, #333 100%);
  color: var(--white);
  border: none;
  border-radius: 25px;
  padding: 12px 20px;
  font-weight: bold;
  font-size: 14px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  animation: bounce-enquire 3s infinite;
  cursor: pointer;
}

.floating-enquire:hover {
  background:  var(--white);
  color:var(--black);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
  transform: translateY(-2px);
}

@keyframes bounce-enquire {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-5px); }
  60% { transform: translateY(-3px); }
}

/* SEO Content Styling */
.seo-hero-text {
  background: var(--white);
  padding: 2rem 0;
  border-bottom: 3px solid var(--primary-yellow);
}

.seo-hero-text h1 {
  color: var(--black);
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  text-align: center;
}

.seo-hero-text p {
  font-size: 1.1rem;
  color: #666;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.location-keywords {
  background: var(--light-gray);
  padding: 1.5rem 0;
  text-align: center;
}

.location-keywords h2 {
  color: var(--black);
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.keyword-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 1rem;
}

.keyword-tag {
  background: var(--primary-yellow);
  color: var(--black);
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .top-phone-bar {
    font-size: 14px;
    padding: 6px 0;
  }

  .floating-whatsapp {
    width: 50px;
    height: 50px;
    font-size: 20px;
    left: 15px;
    bottom: 15px;
  }

  .floating-enquire {
    right: 15px;
    bottom: 15px;
    padding: 10px 16px;
    font-size: 12px;
  }

  .seo-hero-text h1 {
    font-size: 2rem;
  }

  .keyword-tags {
    margin: 0 10px;
  }
}
