/* Business Site Generator Public Styles */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Container */
.bsg-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header */
.bsg-header {
    background: linear-gradient(135deg, var(--bsg-primary-color, #2563eb) 0%, var(--bsg-secondary-color, #1e40af) 100%);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

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

.bsg-logo {
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    color: white;
}

.bsg-nav {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.bsg-nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.2s ease;
}

.bsg-nav a:hover {
    opacity: 0.8;
}

/* Hero Section */
.bsg-hero {
    margin-bottom: 4rem;
    padding-top: 4rem;
    padding-bottom: 4rem;
    background: var(--bsg-primary-color, #2563eb);
    color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    text-align: center;
}

.bsg-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.bsg-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.bsg-hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.bsg-cta-button {
    display: inline-block;
    background: var(--bsg-accent-color, #f59e0b);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.2s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.bsg-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    color: white;
}

/* Sections */
.bsg-section {
    margin-top: 3rem;
    margin-bottom: 3rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.bsg-section:nth-child(even) {
    background-color: #f8f9fa;
}

.bsg-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--bsg-primary-color, #2563eb);
}

/* Services Section */
.bsg-services-dark {
    background: #2c3440;
    color: #fff;
    padding: 4rem 0 3rem 0;
    margin-top: 3rem;
    animation: fadeInUp 1s ease;
}

.bsg-services-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2rem;
}

.bsg-services-top-label {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    background: #181d23;
    color: #fff;
    display: inline-block;
    padding: 0.2em 0.8em;
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

.bsg-services-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0;
    color: #fff;
}

.bsg-services-cta {
    background: #2ee6c5;
    color: #222;
    font-weight: 700;
    padding: 0.8em 2em;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.1rem;
    transition: background 0.2s, color 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.bsg-services-cta:hover {
    background: #1ad1b9;
    color: #fff;
}

.bsg-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.bsg-service-card {
    background: #232834;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.12);
    padding: 2.2rem 1.5rem 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 340px;
    position: relative;
    transition: box-shadow 0.2s, transform 0.2s;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUpCard 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.bsg-service-card:hover {
    box-shadow: 0 6px 24px rgba(46,230,197,0.18);
    transform: translateY(-4px) scale(1.03);
}

.bsg-service-card:nth-child(1) { animation-delay: 0.1s; }
.bsg-service-card:nth-child(2) { animation-delay: 0.2s; }
.bsg-service-card:nth-child(3) { animation-delay: 0.3s; }
.bsg-service-card:nth-child(4) { animation-delay: 0.4s; }
.bsg-service-card:nth-child(5) { animation-delay: 0.5s; }
.bsg-service-card:nth-child(6) { animation-delay: 0.6s; }
.bsg-service-card:nth-child(7) { animation-delay: 0.7s; }
.bsg-service-card:nth-child(8) { animation-delay: 0.8s; }

.bsg-service-icon-check {
    font-size: 2rem;
    color: #2ee6c5;
    margin-bottom: 1.2rem;
}

.bsg-service-card-title {
    font-size: 1.35rem;
    font-weight: 800;
    margin: 0 0 0.7rem 0;
    color: #fff;
}

.bsg-service-card-desc {
    font-size: 1.08rem;
    color: #e0e6ef;
    margin-bottom: 1.5rem;
    flex: 1 1 auto;
}

.bsg-service-card-link {
    color: #2ee6c5;
    font-weight: 700;
    text-decoration: none;
    font-size: 1.08rem;
    margin-top: auto;
    transition: color 0.2s;
}

.bsg-service-card-link:hover {
    color: #fff;
    text-decoration: underline;
}

/* About Section */
.bsg-about-section {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.bsg-about-section p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

/* Locations Section */
.bsg-locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.bsg-location-item {
    background: white;
    padding: 1.5rem;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.2s ease;
}

.bsg-location-item:hover {
    transform: translateY(-2px);
}

.bsg-location-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--bsg-primary-color, #2563eb);
}

.bsg-location-link {
    display: inline-block;
    color: var(--bsg-accent-color, #f59e0b);
    text-decoration: none;
    font-weight: 500;
    margin-top: 1rem;
}

.bsg-location-link:hover {
    text-decoration: underline;
}

/* Contact Section */
.bsg-contact-section {
    background: var(--bsg-primary-color, #2563eb);
    color: white;
    text-align: center;
}

.bsg-contact-section h2 {
    color: white;
}

.bsg-contact-info {
    max-width: 600px;
    margin: 0 auto;
}

.bsg-contact-info p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.bsg-contact-info strong {
    color: var(--bsg-accent-color, #f59e0b);
}

/* Footer */
.bsg-footer {
    background: #2d3748;
    color: white;
    padding: 3rem 0 1rem;
}

.bsg-footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.bsg-footer-widget h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--bsg-accent-color, #f59e0b);
}

.bsg-footer-widget p,
.bsg-footer-widget ul {
    color: #cbd5e0;
}

.bsg-footer-widget ul {
    list-style: none;
}

.bsg-footer-widget li {
    margin-bottom: 0.5rem;
}

.bsg-footer-widget a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.2s ease;
}

.bsg-footer-widget a:hover {
    color: var(--bsg-accent-color, #f59e0b);
}

.bsg-footer-bottom {
    border-top: 1px solid #4a5568;
    padding-top: 1rem;
    text-align: center;
    color: #a0aec0;
}

/* Page Templates */
.bsg-page {
    padding: 2rem 0;
}

.bsg-page h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--bsg-primary-color, #2563eb);
    text-align: center;
}

.bsg-page h2 {
    font-size: 2rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
    color: var(--bsg-primary-color, #2563eb);
}

.bsg-page h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 1.5rem 0 1rem;
    color: var(--bsg-primary-color, #2563eb);
}

.bsg-page p {
    margin-bottom: 1rem;
    color: #666;
    line-height: 1.7;
}

/* Contact Page */
.bsg-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.bsg-contact-info h3,
.bsg-contact-form h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--bsg-primary-color, #2563eb);
}

/* Services Page */
.bsg-services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* Location Page */
.bsg-location-page {
    max-width: 800px;
    margin: 0 auto;
}

.bsg-cta-section {
    background: var(--bsg-accent-color, #f59e0b);
    color: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    margin: 2rem 0;
}

.bsg-cta-section h3 {
    color: white;
    margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .bsg-hero h1 {
        font-size: 2rem;
    }
    
    .bsg-hero p {
        font-size: 1rem;
    }
    
    .bsg-section h2 {
        font-size: 2rem;
    }
    
    .bsg-header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .bsg-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .bsg-contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .bsg-services-grid,
    .bsg-locations-grid {
        grid-template-columns: 1fr;
    }
    
    .bsg-footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .bsg-container {
        padding: 0 0.5rem;
    }
    
    .bsg-hero {
        padding: 2rem 0;
    }
    
    .bsg-section {
        padding: 2rem 0;
    }
    
    .bsg-service-item,
    .bsg-location-item {
        padding: 1rem;
    }
}

/* Utility Classes */
.bsg-text-center {
    text-align: center;
}

.bsg-text-left {
    text-align: left;
}

.bsg-text-right {
    text-align: right;
}

.bsg-mb-1 { margin-bottom: 0.5rem; }
.bsg-mb-2 { margin-bottom: 1rem; }
.bsg-mb-3 { margin-bottom: 1.5rem; }
.bsg-mb-4 { margin-bottom: 2rem; }

.bsg-mt-1 { margin-top: 0.5rem; }
.bsg-mt-2 { margin-top: 1rem; }
.bsg-mt-3 { margin-top: 1.5rem; }
.bsg-mt-4 { margin-top: 2rem; }

/* CSS Variables for Dynamic Colors */
:root {
    --bsg-primary-color: #2563eb;
    --bsg-secondary-color: #1e40af;
    --bsg-accent-color: #f59e0b;
}

/* Print Styles */
@media print {
    .bsg-header,
    .bsg-footer,
    .bsg-cta-button {
        display: none;
    }
    
    .bsg-hero {
        background: white !important;
        color: black !important;
    }
    
    .bsg-section {
        padding: 1rem 0;
    }
}

.main-menu {
    display: flex;
    justify-content: center;
    gap: 2rem;
    background: #fff;
    padding: 1rem 0;
    border-bottom: 1px solid #e1e5e9;
    margin-bottom: 2rem;
}
.main-menu ul {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
.main-menu li {
    display: inline-block;
}
.main-menu a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background 0.2s, color 0.2s;
}
.main-menu a:hover, .main-menu .current-menu-item > a {
    background: #2563eb;
    color: #fff;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUpCard {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Mobile Tweaks for New Homepage Sections --- */
@media (max-width: 768px) {
  .bsg-features-grid {
    flex-direction: column !important;
    gap: 1.2rem !important;
    align-items: stretch !important;
  }
  .bsg-feature-card {
    min-width: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
  }
  .bsg-hero-content {
    padding: 2rem 0 !important;
    max-width: 100% !important;
  }
  .bsg-services-carousel-wrapper {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .bsg-services-carousel {
    gap: 1rem !important;
  }
  .bsg-service-card {
    min-width: 90vw !important;
    max-width: 95vw !important;
    width: 95vw !important;
  }
  .bsg-section.bsg-about-section .bsg-container {
    flex-direction: column !important;
    gap: 1.5rem !important;
    align-items: stretch !important;
  }
  .bsg-about-img {
    max-width: 100% !important;
    margin: 0 auto 1rem auto !important;
  }
  .bsg-locations-map {
    max-width: 100% !important;
    margin: 2rem 0 0 0 !important;
  }
  .bsg-locations-list {
    min-width: 0 !important;
    max-width: 100% !important;
  }
  .bsg-cities-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 0.7rem 1rem !important;
  }
  .bsg-reviews-carousel-wrapper {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .bsg-reviews-carousel {
    gap: 1rem !important;
  }
  .bsg-review-card {
    min-width: 90vw !important;
    max-width: 95vw !important;
    width: 95vw !important;
  }
  .bsg-faq-list {
    margin-top: 1rem !important;
  }
  .bsg-footer .bsg-container {
    flex-direction: column !important;
    gap: 1.5rem !important;
    align-items: stretch !important;
    text-align: center !important;
  }
  .bsg-footer-col {
    min-width: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
    margin-bottom: 1.2rem !important;
  }
}

@media (max-width: 480px) {
  .bsg-cities-grid {
    grid-template-columns: 1fr !important;
  }
  .bsg-service-card, .bsg-review-card {
    min-width: 98vw !important;
    max-width: 99vw !important;
    width: 99vw !important;
    padding: 1.2rem 0.5rem !important;
  }
  .bsg-cta-button, .bsg-services-cta {
    width: 100% !important;
    font-size: 1rem !important;
    padding: 1rem 0.5rem !important;
  }
}

/* --- HOMEPAGE TEMPLATE STYLES --- */

.bsg-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.2rem 2rem;
}
.bsg-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}
.bsg-header-phone {
  color: #fff;
  font-weight: 600;
  margin-left: 2rem;
}
.bsg-nav {
  display: flex;
  gap: 2rem;
}
.bsg-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  transition: opacity 0.2s;
}
.bsg-nav a:hover { opacity: 0.7; }
.bsg-btn {
  display: inline-block;
  border: none;
  border-radius: 8px;
  padding: 0.8em 2em;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  text-decoration: none;
  margin-left: 1.2rem;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.bsg-btn-primary {
  background: #2ee6c5;
  color: #232834;
  box-shadow: 0 2px 8px rgba(46,230,197,0.12);
}
.bsg-btn-primary:hover {
  background: #1ad1b9;
  color: #fff;
}
.bsg-btn-secondary {
  background: #232834;
  color: #fff;
  border: 2px solid #2ee6c5;
}
.bsg-btn-secondary:hover {
  background: #2ee6c5;
  color: #232834;
}

.bsg-hero {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  background: #232834;
  color: #fff;
  border-radius: 18px;
  margin: 2.5rem auto 2rem auto;
  max-width: 1200px;
  padding: 3rem 2.5rem 2.5rem 2.5rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
  gap: 3rem;
}
.bsg-hero-left { flex: 2; }
.bsg-hero-label {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #2ee6c5;
  margin-bottom: 1.2rem;
}
.bsg-hero h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
  line-height: 1.2;
}
.bsg-hero-cta-row {
  display: flex;
  gap: 1.2rem;
  margin: 2rem 0 1.2rem 0;
}
.bsg-hero-rating {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  background: rgba(46,230,197,0.12);
  display: inline-block;
  padding: 0.5rem 1.2rem;
  border-radius: 6px;
  margin-top: 1.2rem;
}
.bsg-hero-right {
  flex: 1.2;
  background: #181d23;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
  padding: 2rem 1.5rem;
  min-width: 320px;
  max-width: 380px;
  margin-top: 1.2rem;
}
.bsg-contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.bsg-contact-form input,
.bsg-contact-form textarea {
  border: none;
  border-radius: 6px;
  padding: 0.9em 1em;
  font-size: 1rem;
  background: #232834;
  color: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.bsg-contact-form textarea { min-height: 80px; }
.bsg-contact-form button {
  background: #2ee6c5;
  color: #232834;
  font-weight: 700;
  border: none;
  border-radius: 6px;
  padding: 0.9em 1em;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.bsg-contact-form button:hover {
  background: #1ad1b9;
  color: #fff;
}

.bsg-features-bar {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  background: #181d23;
  color: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  margin: 2.5rem auto;
  max-width: 1100px;
  padding: 2rem 1.5rem;
}
.bsg-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 180px;
  max-width: 240px;
  text-align: center;
}
.bsg-feature-icon {
  font-size: 2.2rem;
  margin-bottom: 0.7rem;
}
.bsg-feature-title {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}
.bsg-feature-desc {
  font-size: 0.98rem;
  color: #b0b8c9;
}

.bsg-about {
  display: flex;
  align-items: center;
  gap: 3rem;
  background: #232834;
  color: #fff;
  border-radius: 14px;
  max-width: 1100px;
  margin: 2.5rem auto;
  padding: 2.5rem 2rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
}
.bsg-about-img img {
  width: 320px;
  height: 320px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
}
.bsg-about-content {
  flex: 2;
}
.bsg-about-label {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #2ee6c5;
  margin-bottom: 1.2rem;
}
.bsg-about-years {
  font-size: 1.2rem;
  font-weight: 700;
  color: #232834;
  background: #2ee6c5;
  display: inline-block;
  padding: 0.4em 1em;
  border-radius: 8px;
  margin: 1.2rem 0;
}

.bsg-services {
  background: #181d23;
  color: #fff;
  border-radius: 14px;
  max-width: 1100px;
  margin: 2.5rem auto;
  padding: 2.5rem 2rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
}
.bsg-services-label {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #2ee6c5;
  margin-bottom: 1.2rem;
}
.bsg-services-cards {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.bsg-service-card {
  background: #232834;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
  padding: 2.2rem 1.5rem 2rem 1.5rem;
  min-width: 320px;
  max-width: 340px;
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}
.bsg-service-card:hover {
  box-shadow: 0 6px 24px rgba(46,230,197,0.18);
  transform: translateY(-4px) scale(1.03);
}
.bsg-service-title {
  font-size: 1.35rem;
  font-weight: 800;
  margin: 0 0 0.7rem 0;
  color: #fff;
}
.bsg-service-desc {
  font-size: 1.08rem;
  color: #e0e6ef;
  margin-bottom: 1.5rem;
  flex: 1 1 auto;
}
.bsg-service-card a {
  color: #2ee6c5;
  font-weight: 700;
  text-decoration: none;
  font-size: 1.08rem;
  margin-top: auto;
  transition: color 0.2s;
}
.bsg-service-card a:hover {
  color: #fff;
}

.bsg-service-area {
  background: #232834;
  color: #fff;
  border-radius: 14px;
  max-width: 1100px;
  margin: 2.5rem auto;
  padding: 2.5rem 2rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
}
.bsg-service-area-label {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #2ee6c5;
  margin-bottom: 1.2rem;
}
.bsg-service-cities {
  margin: 1.2rem 0 2rem 0;
  font-size: 1.08rem;
  color: #2ee6c5;
  font-weight: 600;
}
.bsg-service-map {
  background: #181d23;
  color: #fff;
  border-radius: 10px;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.5rem;
  font-size: 1.1rem;
  opacity: 0.7;
}

.bsg-reviews {
  background: #181d23;
  color: #fff;
  border-radius: 14px;
  max-width: 1100px;
  margin: 2.5rem auto;
  padding: 2.5rem 2rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
}
.bsg-reviews-label {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #2ee6c5;
  margin-bottom: 1.2rem;
}
.bsg-google-reviews {
  background: #232834;
  color: #fff;
  border-radius: 10px;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.5rem;
  font-size: 1.1rem;
  opacity: 0.7;
}

.bsg-promise {
  display: flex;
  align-items: center;
  gap: 3rem;
  background: #232834;
  color: #fff;
  border-radius: 14px;
  max-width: 1100px;
  margin: 2.5rem auto;
  padding: 2.5rem 2rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
}
.bsg-promise-img img {
  width: 320px;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
}
.bsg-promise-content {
  flex: 2;
}
.bsg-promise-label {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #2ee6c5;
  margin-bottom: 1.2rem;
}

.bsg-cta {
  display: flex;
  align-items: center;
  gap: 3rem;
  background: #181d23;
  color: #fff;
  border-radius: 14px;
  max-width: 1100px;
  margin: 2.5rem auto;
  padding: 2.5rem 2rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
}
.bsg-cta-content { flex: 2; }
.bsg-cta-img img {
  width: 320px;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
}

.bsg-faq {
  background: #232834;
  color: #fff;
  border-radius: 14px;
  max-width: 1100px;
  margin: 2.5rem auto;
  padding: 2.5rem 2rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
}
.bsg-faq-item {
  margin-bottom: 1.5rem;
  background: #181d23;
  border-radius: 8px;
  padding: 1.2rem 1.5rem;
}
.bsg-faq-q {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.7rem;
}
.bsg-faq-a {
  font-size: 1rem;
  color: #b0b8c9;
}

.bsg-footer {
  background: #181d23;
  color: #fff;
  border-radius: 0 0 14px 14px;
  max-width: 1100px;
  margin: 2.5rem auto 0 auto;
  padding: 2.5rem 2rem 1.5rem 2rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
}
.bsg-footer-nav {
  display: flex;
  gap: 3rem;
  margin-bottom: 2rem;
}
.bsg-footer-col {
  flex: 1;
}
.bsg-footer-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #2ee6c5;
  margin-bottom: 1.2rem;
}
.bsg-footer-social {
  margin-top: 1.2rem;
  color: #2ee6c5;
}
.bsg-footer a {
  color: #fff;
  text-decoration: none;
  display: block;
  margin-bottom: 0.7rem;
  transition: color 0.2s;
}
.bsg-footer a:hover {
  color: #2ee6c5;
}
.bsg-footer-copyright {
  text-align: center;
  color: #b0b8c9;
  font-size: 0.98rem;
  margin-top: 1.5rem;
}

@media (max-width: 900px) {
  .bsg-header-inner, .bsg-hero, .bsg-about, .bsg-services, .bsg-service-area, .bsg-reviews, .bsg-promise, .bsg-cta, .bsg-faq, .bsg-footer {
    flex-direction: column !important;
    padding: 1.5rem 1rem;
    gap: 1.5rem;
  }
  .bsg-features-bar, .bsg-services-cards, .bsg-footer-nav {
    flex-direction: column !important;
    gap: 1.5rem;
  }
  .bsg-about-img img, .bsg-promise-img img, .bsg-cta-img img {
    width: 100%;
    height: auto;
    max-width: 320px;
  }
}

@media (max-width: 600px) {
  .bsg-header-inner, .bsg-hero, .bsg-about, .bsg-services, .bsg-service-area, .bsg-reviews, .bsg-promise, .bsg-cta, .bsg-faq, .bsg-footer {
    padding: 1rem 0.5rem;
  }
  .bsg-logo, .bsg-header-phone {
    font-size: 1.1rem;
  }
  .bsg-btn {
    font-size: 1rem;
    padding: 0.7em 1.2em;
  }
}

/* --- FORCE PLUGIN STYLES ON HOMEPAGE --- */
body.page-template-templateshome-php, .bsg-homepage {
  background: #181d23 !important;
  color: #fff !important;
}

body.page-template-templateshome-php .entry-title,
body.page-template-templates\home-php .entry-title {
  display: none !important;
}

.bsg-homepage .bsg-header,
.bsg-homepage .bsg-hero,
.bsg-homepage .bsg-about,
.bsg-homepage .bsg-services,
.bsg-homepage .bsg-service-area,
.bsg-homepage .bsg-reviews,
.bsg-homepage .bsg-promise,
.bsg-homepage .bsg-cta,
.bsg-homepage .bsg-faq,
.bsg-homepage .bsg-footer {
  background: #232834 !important;
  color: #fff !important;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10) !important;
}

.bsg-homepage .bsg-features-bar {
  background: #181d23 !important;
  color: #fff !important;
}

.bsg-homepage .bsg-service-card,
.bsg-homepage .bsg-about-img img,
.bsg-homepage .bsg-promise-img img,
.bsg-homepage .bsg-cta-img img {
  background: #232834 !important;
  color: #fff !important;
}

.bsg-homepage .bsg-contact-form input,
.bsg-homepage .bsg-contact-form textarea {
  background: #232834 !important;
  color: #fff !important;
  border: 1px solid #2ee6c5 !important;
}

.bsg-homepage .bsg-contact-form button {
  background: #2ee6c5 !important;
  color: #232834 !important;
  border: none !important;
}

.bsg-homepage .bsg-contact-form button:hover {
  background: #1ad1b9 !important;
  color: #fff !important;
}

.bsg-homepage a {
  color: #2ee6c5 !important;
}

.bsg-homepage a:hover {
  color: #fff !important;
}

.bsg-homepage .bsg-footer {
  background: #181d23 !important;
  color: #fff !important;
}

.bsg-homepage .bsg-footer a {
  color: #fff !important;
}

.bsg-homepage .bsg-footer a:hover {
  color: #2ee6c5 !important;
}

/* Remove extra padding/margins from theme */
body.page-template-templateshome-php .site,
body.page-template-templateshome-php .content-area,
body.page-template-templateshome-php .site-main {
  padding: 0 !important;
  margin: 0 !important;
  background: none !important;
} 