/* SV Borewells Single Page Theme */
:root {
  --primary: #003d82;
  --secondary: #ffa500;
  --text: #333;
  --light: #f5f5f5;
  --white: #fff;
}

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

body {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
}

/* Header */
.site-header {
  background: var(--primary);
  color: var(--white);
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}

.site-brand {
  display: flex;
  align-items: center;
  gap: 15px;
}

.custom-logo-link img {
  max-width: 80px;
  height: auto;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.site-title {
  font-size: 26px;
  font-weight: bold;
  margin: 0;
}

.site-title a {
  color: var(--white);
  text-decoration: none;
}

.site-tagline {
  font-size: 12px;
  color: var(--secondary);
  font-weight: bold;
  margin: 0;
}

.header-cta {
  background: var(--secondary);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s;
}

.header-cta:hover {
  background: #ff8c00;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 165, 0, 0.4);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 450px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 61, 130, 0.85), rgba(0, 61, 130, 0.7));
}

.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
  padding: 50px 20px;
  max-width: 900px;
}

.hero-title {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 900;
  margin-bottom: 10px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
  letter-spacing: 1px;
}

.hero-subtitle {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: bold;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-desc {
  font-size: clamp(16px, 2vw, 22px);
  margin-bottom: 25px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-contact {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

.hero-email,
.hero-web {
  color: var(--white);
  text-decoration: none;
  font-size: 16px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  transition: all 0.2s;
}

.hero-email:hover,
.hero-web:hover {
  background: var(--secondary);
}

/* Content */
.content-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 20px;
}

.single-page-content h2 {
  font-size: 32px;
  color: var(--primary);
  margin: 40px 0 20px;
  font-weight: bold;
  border-left: 5px solid var(--secondary);
  padding-left: 15px;
}

.single-page-content h3 {
  font-size: 24px;
  color: var(--primary);
  margin: 30px 0 15px;
  font-weight: bold;
}

.single-page-content h4 {
  font-size: 20px;
  color: var(--primary);
  margin: 25px 0 12px;
  font-weight: bold;
}

.single-page-content p {
  margin-bottom: 18px;
  font-size: 16px;
  line-height: 1.8;
}

.single-page-content ul {
  margin: 15px 0 20px 25px;
}

.single-page-content li {
  margin-bottom: 10px;
  line-height: 1.7;
}

.single-page-content a {
  color: var(--primary);
  text-decoration: underline;
}

.single-page-content a:hover {
  color: var(--secondary);
}

.single-page-content strong {
  font-weight: bold;
  color: var(--primary);
}

/* Sections */
.about-section,
.contact-section,
.locations-section {
  margin-bottom: 50px;
}

.contact-section {
  background: var(--light);
  padding: 30px;
  border-radius: 10px;
  border-left: 5px solid var(--secondary);
}

/* Location Grid */
.locations-section h3 {
  font-size: 28px;
  color: var(--primary);
  margin-bottom: 25px;
  text-align: center;
  font-weight: bold;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.location-link {
  display: block;
  padding: 14px 18px;
  background: var(--light);
  border-left: 4px solid var(--primary);
  text-decoration: none;
  color: var(--text);
  font-size: 14px;
  transition: all 0.2s;
  border-radius: 5px;
}

.location-link:hover {
  background: var(--primary);
  color: var(--white);
  border-left-color: var(--secondary);
  transform: translateX(5px);
  box-shadow: 0 4px 12px rgba(0, 61, 130, 0.2);
}

/* Footer */
.site-footer {
  background: var(--primary);
  color: var(--white);
  padding: 30px 20px;
  text-align: center;
  margin-top: 60px;
  border-top: 3px solid var(--secondary);
}

.site-footer p {
  margin: 8px 0;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    text-align: center;
  }

  .site-brand {
    flex-direction: column;
    text-align: center;
  }

  .hero {
    min-height: 350px;
  }

  .content-wrap {
    padding: 30px 15px;
  }

  .location-grid {
    grid-template-columns: 1fr;
  }

  .single-page-content h2 {
    font-size: 26px;
  }

  .single-page-content h3 {
    font-size: 20px;
  }
}
