:root {
  --white: #FFFFFF;
  --black: #000F1A;
  --accent: #6489bb;
  --accent-hover: #5477a3;
  --g-bg-accent-hover: #8cb2e4;
  --text-color: #3A3F52;
  --light-gray: #F8F9FA;
  --border-color: #E9ECEF;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --container: 1140px !important;
  --border-radius: 12px;
  --transition: all 0.3s ease;
}

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

body {
  font-family: "Open Sans", sans-serif;
  color: var(--text-color);
  line-height: 1.6;
}

/* Typography */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--black);
  margin-bottom: 1.5rem;
}

.section-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 1rem;
}

.content-subtitle {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--black);
}

/* Utilities */
a {
  text-decoration: none;
}

.container {
  max-width: var(--container) !important;
}

[class^="col-"] {
  padding-left: 15px;
  padding-right: 15px;
}

/* Header */
.header-top-bar {
  background: var(--accent);
  color: var(--white);
  padding: 0.75rem 0;
}

.header-contact-info .header-location {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white);
}

.header-phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.header-phone-btn:hover {
  color: var(--white);
  opacity: 0.9;
}

.header-phone-btn .call-text {
  font-size: 0.9rem;
  font-weight: 500;
}

.header-phone-btn .phone-number {
  font-size: 1.1rem;
  font-weight: 700;
}

/* Navigation */
.navbar {
  padding: 1rem 0;
}

.navbar-brand {
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
}

.navbar-brand strong {
  font-size: 1.8rem;
  color: var(--accent);
  font-weight: 700;
}

.brand-tagline {
  font-size: 0.8rem;
  color: var(--text-color);
  font-weight: 500;
  margin-top: -2px;
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--text-color);
  padding: 0.5rem 1rem;
  transition: var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--accent);
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.navbar-actions .btn {
  padding: 0.5rem 1rem;
  font-weight: 600;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.navbar-actions .btn-outline-success {
  border-color: var(--accent);
  color: var(--accent);
}

.navbar-actions .btn-outline-success:hover {
  background: var(--accent);
  color: var(--white);
}

.navbar-actions .btn-success {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.navbar-actions .btn-success:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
}

/* Buttons */
.btn-outline-success {
  text-align: left;
  border-color: var(--accent) !important;
  color: var(--accent) !important;
  padding: 20px;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.btn-outline-success:hover {
  background: var(--accent) !important;
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-success {
  border-radius: var(--border-radius);
  text-align: left;
  background: var(--accent) !important;
  color: var(--white) !important;
  border: 2px solid var(--accent);
  padding: 18px;
  transition: var(--transition);
}

.btn-success:hover {
  border: 2px solid var(--accent);
  background: transparent !important;
  color: var(--accent) !important;
  transform: translateY(-2px);
}


.btn-success-contact {
  border-radius: var(--border-radius);
  text-align: left;
  background: var(--white) !important;
  color: var(--accent) !important;
  border: 2px solid var(--accent);
  padding: 18px;
  transition: var(--transition);
}

.btn-success-contact:hover {
  border: 2px solid var(--accent);
  background: transparent !important;
  color: var(--accent-hover) !important;
  transform: translateY(-2px);
}
/* CTA Buttons */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  border: 2px solid transparent;
  min-height: 60px;
}

.cta-btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.cta-btn-primary:hover {
  background: var(--accent-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.cta-btn-primary-g-bg {
  background: var(--white);
  color: var(--accent);
  border-color: var(--accent);
}

.cta-btn-primary-g-bg:hover {
  background: var(--g-bg-accent-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.cta-btn-secondary {
  background: var(--white);
  color: var(--accent);
  border-color: var(--accent);
}

.cta-btn-secondary:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Hero Section */
.hero-section {
  background: url(./images/hero.jpg) no-repeat center center / cover;
  height: 60vh;
  min-height: 500px;
  max-height: 700px;
  width: 100%;
  display: flex;
  align-items: center;
}

.hero-overlay {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
}

/* Hero Content Wrapper with Blue Background */
.hero-content-wrapper {
  background: var(--accent);
  



}

.hero-badge {
  display: inline-block;
  margin-bottom: 1.5rem;
}

.badge-text {
  background: var(--white);
  color: var(--accent);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: var(--shadow);
}

.hero-title {
  font-size: 3.5rem;
  color: var(--white);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-location {
  color: var(--accent);
  font-weight: 700;
}

.hero-description {
  font-size: 1.25rem;
  color: var(--white);
  letter-spacing: 0.02em;
  opacity: 0.95;
  max-width: 800px;
  margin: 0 auto;
}

/* Hero CTA Section */
.hero-cta-section {
  background: var(--white);
  border-bottom: 1px solid var(--border-color);
}

.hero-cta-wrapper {
  padding: 2rem 0;
}

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

.hero-cta-location {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1.2;
}

.hero-cta-description {
  font-size: 1.2rem;
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 0;
}

.section-space-sm {
  padding: 3rem 0;
}

/* Section Spacing */
.section-space {
  padding: 6rem 0;
}

/* Section Badges */
.section-badge span {
  background: var(--accent);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
}

/* About Section */
.about-section .section-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.about-content .content-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-color);
}

.about-image-wrapper img {
  transition: var(--transition);
}

.about-image-wrapper img:hover {
  transform: scale(1.02);
}

/* Company Info Section */
.company-info-section {
  background: var(--light-gray);
}

.section-header {
  border-bottom: 2px solid var(--border-color);
  padding-bottom: 1.5rem;
}

.content-block {
  padding: 1.5rem 0;
}

.content-block p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-color);
}

.cta-block p {
  font-size: 1.1rem;
  color: var(--accent);
}

/* Features Section */
.features-section {
  background: var(--light-gray);
}

.features-list {
  max-width: 100%;
}

.feature-item {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-left: 4px solid var(--accent);
}

.feature-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.feature-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--black);
  display: flex;
  align-items: center;
}

.feature-icon {
  font-size: 1.5rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-color);
  margin-bottom: 0;
}

.features-image-wrapper img {
  transition: var(--transition);
}

.features-image-wrapper img:hover {
  transform: scale(1.02);
}

/* Legacy styles (maintaining compatibility) */
.offset-margin {
  margin-top: 100px;
}

.content-box {
  padding: 60px 20px;
}

.hero-content {
  background: rgba(0, 0, 0, .3);
}

.hero-content-box span {
  padding: 5px;
  font-size: 16px;
  background: var(--white);
  color: var(--accent-hover);
  text-transform: uppercase;
}

.hero-content-box h1 {
  font-size: 50px;
  color: var(--white);
  margin: 20px 8px;
  font-weight: 300;
}

.hero-content-box h1 strong {
  font-weight: 700;
}

.hero-content-box p {
  font-size: 24px;
  color: var(--white);
  letter-spacing: .05em;
}

.button-btn {
  text-decoration: none;
  color: var(--white);
  display: inline-block;
  text-align: center;
  padding: 12px 24px;
  border: 1px solid transparent;
  border-radius: var(--border-radius);
  background: var(--accent);
  transition: var(--transition);
  font-weight: 600;
}

.button-btn:hover {
  background: var(--accent-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.button-btn-sec {
  text-decoration: none;
  color: var(--accent-hover);
  display: inline-block;
  text-align: center;
  padding: 12px 24px;
  border: 2px solid var(--accent);
  border-radius: var(--border-radius);
  background: var(--white);
  transition: var(--transition);
  font-weight: 600;
}

.button-btn-sec:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.sec-2-content span {
  text-transform: uppercase;
  font-size: 16px;
  color: var(--accent-hover);
}

.sec-2-content h2 {
  margin-bottom: 20px;
  font-size: 2em;
  font-weight: 700;
  line-height: 1.2;
}

.sec-2-content p {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 20px;
  padding: 0px;
  letter-spacing: 0.05em;
}

.sec-darker {
  background: var(--light-gray);
}

.sec-green {
  background: var(--accent);
  color: var(--white);
}

.sec-green .section-title,
.sec-green .content-subtitle,
.sec-green .feature-title,
.sec-green h2,
.sec-green h3,
.sec-green h4 {
  color: var(--white);
}

.sec-green .section-description,
.sec-green .content-text p,
.sec-green .content-block p,
.sec-green .feature-description,
.sec-green p {
  color: var(--white);
  opacity: 0.95;
}

.sec-green .feature-item {
  background: var(--white);
  color: var(--text-color);
}

.sec-green .feature-item .feature-title,
.sec-green .feature-item .feature-description {
  color: var(--text-color);
}

.sec-green .testimonial-card {
  background: var(--white);
  color: var(--text-color);
}

.sec-green .testimonial-card .customer-name,
.sec-green .testimonial-card .testimonial-text {
  color: var(--text-color);
}

.sec-green .testimonial-card .service-type {
  color: var(--text-color);
  opacity: 0.7;
}

.sec-green .cta-btn-primary {
  background: var(--white);
  color: var(--accent);
  border-color: var(--white);
}

.sec-green .cta-btn-primary:hover {
  background: var(--accent-hover);
  color: var(--white);
  border-color: var(--accent-hover);
}

.sec-green .cta-btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.sec-green .cta-btn-secondary:hover {
  background: var(--white);
  color: var(--accent);
}

.sec-green .btn-outline-success {
  background: var(--white);
  color: var(--accent);
  border-color: var(--white);
}

.sec-green .btn-outline-success:hover {
  background: var(--accent-hover);
  color: var(--white);
  border-color: var(--accent-hover);
}

.sec-green .card-body {
  background: var(--white) !important;
  color: var(--text-color) !important;
}

.sec-green .card-body h2,
.sec-green .card-body h3,
.sec-green .card-body h4,
.sec-green .card-body p {
  color: var(--text-color) !important;
}

.sec-green .title-block h2,
.sec-green .location-content h2 {
  color: var(--white);
}

.sec-green .gmap {
  border: 3px solid var(--white);
  border-radius: var(--border-radius);
}

.sec-3-content h2,
.sec-4-content h2,
.sec-5-content h2,
.sec-6-content h2,
.location-content h2 {
  font-size: 2em;
  font-weight: 700;
  line-height: 1.2;
}

.sec-3-content h4 {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.2;
}

.sec-3-content p,
.location-content p {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: .05em;
}

.sec-4-content ul li {
  margin-bottom: 4px;
  letter-spacing: .05em;
}

.title-block {
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
  text-align: center;
}

.sec-5-content p,
.sec-6-content p {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: .05em;
}

.srvlist li {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  margin: 1px;
  transition: var(--transition);
}

.srvlist li:hover {
  border: 1px solid var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.srvlist li:hover .nav-link {
  background: rgba(92, 184, 92, 0.1);
  color: var(--accent);
}

.nav-item.active-item {
  border: 1px solid var(--accent);
}

.nav-pills .nav-link.active {
  background: var(--accent);
}

.tab-pane.active {
  padding: 2rem;
  border: 1px solid var(--accent);
  border-radius: var(--border-radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

#service-tabContent h2 {
  text-align: center;
  font-size: 2em;
  font-weight: 700;
}

#service-tabContent h3 {
  margin-bottom: 20px;
}

.cta {
  text-align: center;
  padding: 2rem;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  margin-top: 2rem;
}

.cta p {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: .05em;
}

.sec-6-content h2,
.sec-6-content p {
  text-align: center;
}

#contact,
.cta-content {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
}

.contact-content h2 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  color: var(--white);
}

.contact-content p {
  font-size: 20px;
  letter-spacing: .05em;
  text-align: center;
  color: var(--white);
  margin-bottom: 65px;
}

.form-tag {
  margin: 20px 0 40px !important;
}

.contact-form {
  padding: 2rem;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
}

.contact-form h3 {
  text-align: center;
  color: var(--accent);
  font-weight: 800 !important;
  font-size: 24px;
  margin-bottom: 25px;
}

.testimonial-box {
  background-color: var(--white);
  box-shadow: var(--shadow-lg);
  border-radius: var(--border-radius);
  padding: 2rem;
  margin-top: 30px;
  transition: var(--transition);
  border-left: 4px solid var(--accent);
}

.testimonial-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.profile-picture {
  display: inline-block;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  border: 3px solid var(--accent);
}

.review-one {
  background-image: url("./images/testimonial_profile.png");
}

.review-two {
  background-image: url("./images/testimonial_profile.png");
}

.personal-info {
  padding: 5px 0 20px 0;
  border-bottom: 1px solid var(--border-color);
}

.rating {
  background: linear-gradient(135deg, #f7b703, #e09f00);
  padding: 4px 12px;
  border-radius: 50px;
  color: var(--white);
  font-weight: 600;
}

.testimonial-box span {
  font-size: 20px;
  color: var(--white);
}

.testimonial-box small {
  color: #999;
  display: inline-block;
}

.testimonial-box h6 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: .05em;
  margin-top: 5px;
  margin-bottom: 0px;
}

.testimonial-box p {
  font-size: 16px;
  font-weight: 300;
  margin-top: 25px;
  line-height: 1.8;
  padding: 0px;
  letter-spacing: .05em;
}

.revlink {
  text-align: center;
  font-size: 1.2em;
  margin-top: 25px;
  font-weight: 400;
  letter-spacing: .05em;
  margin-bottom: 1rem;
}

.process-content h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
}

.expert-content h2 {
  margin-bottom: 20px;
}

.hidden-content p,
.expert-content p {
  letter-spacing: .05em;
}

/* Footer - Surface Doctor Style */
.page-footer {
  background: #fff;
  padding: 30px 0;
  border-top: 1px solid #ddd;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0;
}

.footer-links li {
  margin: 0;
  padding: 0 15px;
  border-right: 1px solid #ddd;
  line-height: 1.2;
}

.footer-links li:last-child {
  border-right: none;
}

.footer-links li a {
  color: #333;
  text-decoration: none;
  font-size: 13px;
  font-weight: normal;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.3s ease;
}

.footer-links li a:hover {
  color: #007c89;
  text-decoration: none;
}

.footer-links li a i {
  font-size: 14px;
  color: #666;
  margin-right: 5px;
}

.footer-links li a:hover i {
  color: #007c89;
}

/* Floating CTA - Surface Doctor Style */
.bw-floating-cta {
  display: none;
}

.bw-floating-cta a {
  display: block;
  width: 100%;
  text-align: center;
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 6px;
  margin: 5px;
}

.bw-floating-cta a,
.bw-floating-cta a:visited {
  color: white;
  text-decoration: none;
}

.bw-floating-cta a:hover,
.bw-floating-cta a:active {
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  .bw-floating-cta-wrapper {
    height: 140px;
  }

  .bw-floating-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background-color: #337ab7;
  }

  .trustpilot-list {
    flex-wrap: wrap !important;
    flex-direction: row !important;
    gap: 10px !important;
    justify-content: center !important;
    align-items: center !important;
  }
  
  .trustpilot-list li {
    white-space: nowrap !important;
    text-align: center;
    font-size: 12px;
  }
  
  .trustpilot-logo img {
    max-width: 150px;
  }

  .footer-links {
    flex-direction: column;
    gap: 10px;
  }

  .footer-links li {
    padding: 5px 0;
    border-right: none;
    border-bottom: 1px solid #ddd;
    width: 100%;
    text-align: center;
  }

  .footer-links li:last-child {
    border-bottom: none;
  }

  .footer-links li a {
    justify-content: center;
  }
}

/* Services Section */
.services-section {
  background: var(--white);
}

.services-header .section-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-color);
  max-width: 800px;
  margin: 0 auto;
}

.services-tabs-wrapper {
  margin-bottom: 2rem;
}

.services-cta {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
  padding: 3rem 2rem;
  color: var(--white);
  margin-top: 3rem;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.cta-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
}

.cta-subtitle {
  font-size: 1.1rem;
  color: var(--white);
  opacity: 0.9;
}

/* Testimonials Section */
.testimonials-section {
  background: var(--light-gray);
}

.testimonials-header .section-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-color);
  max-width: 600px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-left: 4px solid var(--accent);
  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.customer-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--black);
}

.service-type {
  color: var(--text-color);
  font-size: 0.9rem;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-color);
  font-style: italic;
  margin-bottom: 0;
}

.reviews-link {
  font-size: 1.1rem;
  color: var(--text-color);
}

.reviews-link a {
  color: var(--accent);
  transition: var(--transition);
}

.reviews-link a:hover {
  color: var(--accent-hover);
}

/* FAQs Section */
.faqs-section {
  background: var(--white);
}

.faqs-header .section-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-color);
  max-width: 600px;
  margin: 0 auto;
}

.faqs-content .btn {
  font-size: 1.1rem;
  font-weight: 500;
  padding: 1.25rem 1.5rem;
  border-radius: var(--border-radius);
  border: 2px solid var(--accent);
  background: var(--white);
  color: var(--accent);
  transition: var(--transition);
  text-align: left;
}

.faqs-content .btn:hover,
.faqs-content .btn:focus {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.faqs-content .card {
  border: none;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faqs-content .card-body {
  padding: 1.5rem;
  background: var(--light-gray);
}

.faqs-content .card-body p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-color);
  margin-bottom: 0;
}

/* Contact Section */
.contact-section {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
}

.contact-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.contact-subtitle {
  font-size: 1.2rem;
  color: var(--white);
  opacity: 0.95;
  max-width: 700px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.contact-phone-btn {
  display: inline-flex;
  align-items: center;
  padding: 1.5rem 2rem;
  background: var(--white);
  color: var(--accent);
  border-radius: var(--border-radius);
  text-decoration: none;
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
  gap: 1rem;
  font-weight: 600;
}

.contact-phone-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  color: var(--accent-hover);
}

.phone-icon-wrapper {
  background: var(--accent);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.phone-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.phone-label {
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.8;
}

.phone-number {
  font-size: 1.2rem;
  font-weight: 700;
}

.form-intro {
  color: var(--white);
  font-size: 1.1rem;
  opacity: 0.9;
}

.contact-form {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  max-width: 800px;
  margin: 0 auto;
}

.form-title {
  text-align: center;
  color: var(--accent);
  font-weight: 700;
  font-size: 1.75rem;
  margin-bottom: 2rem;
}

.quote-form .form-floating {
  margin-bottom: 1rem;
}

.quote-form .form-control,
.quote-form .form-select {
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 1rem;
  font-size: 1rem;
  transition: var(--transition);
}

.quote-form .form-control:focus,
.quote-form .form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 0.2rem rgba(92, 184, 92, 0.25);
}

.quote-form .form-floating > label {
  color: var(--text-color);
  font-weight: 500;
}

.quote-form .form-check {
  padding: 1rem;
  background: var(--light-gray);
  border-radius: var(--border-radius);
  margin-bottom: 1.5rem;
}

.quote-form .form-check-input:checked {
  background-color: var(--accent);
  border-color: var(--accent);
}

.quote-form .form-check-label {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-color);
}

.quote-form .form-check-label a {
  color: var(--accent);
  font-weight: 500;
}

.quote-form .form-check-label a:hover {
  color: var(--accent-hover);
}

/* Enhanced Legacy Styles */
.section-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-color);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-section {
    height: 50vh;
    min-height: 400px;
    max-height: 500px;
  }

  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }

  .section-space-sm {
    padding: 2rem 0;
  }

  .hero-cta-wrapper {
    padding: 1rem 0;
  }

  .hero-cta-location {
    font-size: 1.5rem;
  }

  .hero-cta-description {
    font-size: 1.1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .feature-item {
    margin-bottom: 1rem;
  }
  
  .cta-btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.9rem;
  }

  .services-cta {
    padding: 2rem 1rem;
    border-radius: 0; /* Remove border radius on mobile for better full-width appearance */
  }

  .cta-title-blck {
    font-size: 1.3rem;
  }

  .testimonial-card {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .faqs-content .btn {
    font-size: 1rem;
    padding: 1rem 1.25rem;
  }

  .services-tabs-wrapper .nav-pills .nav-link {
    font-size: 0.9rem;
    padding: 0.75rem 1rem;
  }

  .contact-title {
    font-size: 2rem;
  }

  .contact-subtitle {
    font-size: 1.1rem;
  }

  .contact-phone-btn {
    padding: 1.25rem 1.5rem;
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .phone-content {
    align-items: center;
  }

  .contact-form {
    padding: 2rem 1.5rem;
  }

  .form-title {
    font-size: 1.5rem;
  }

  .header-top-bar {
    padding: 0.25rem 0;
    text-align: center;
  }

  .header-top-bar .row {
    flex-direction: column;
    gap: 0.25rem;
    text-align: center;
  }

  .header-top-bar .col-md-6 {
    text-align: center !important;
  }

  .header-contact-info {
    text-align: center !important;
  }

  .header-location {
    font-size: 0.8rem !important;
    text-align: center;
  }

  .header-phone-btn {
    justify-content: center;
    gap: 0.25rem;
  }

  .header-phone-btn .call-text {
    font-size: 0.8rem;
  }

  .header-phone-btn .phone-number {
    font-size: 1rem;
  }

  .navbar-brand strong {
    font-size: 1.5rem;
  }

  .brand-tagline {
    font-size: 0.7rem;
  }

  .navbar-actions {
    margin-top: 1rem;
    justify-content: center;
  }

  .navbar-actions .btn {
    padding: 0.4rem 0.8rem;
    font-size: 0.9rem;
  }

  .navbar-logo {
    max-height: 40px;
  }
}

/* Alternative full-width CTA class */
.services-cta-fullwidth {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
  padding: 3rem 0;
  color: var(--white);
  margin-top: 3rem;
  width: 100%;
}

.services-cta-fullwidth .container {
  max-width: var(--container) !important;
}

/* Hero Process Styles */
.hero-process-title {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 2rem;
}

.hero-process-list {
  max-width: 500px;
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 0;
}

.step-number {
  background: var(--accent);
  color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.step-content {
  flex: 1;
}

.step-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--white);
  margin: 0;
  font-weight: 400;
}

.step-content p strong {
  font-weight: 700;
  color: var(--white);
}

.hero-content-wrapper {
  text-align: left;
}

/* Mobile responsive styles for hero process */
@media (max-width: 768px) {
  .hero-process-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }
  
  .process-step {
    padding: 1rem 0;
    gap: 0.75rem;
  }
  
  .step-number {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
  
  .step-content p {
    font-size: 1rem;
  }
  
  .hero-content-wrapper {
    padding: 1.5rem 1rem;
    border-radius: 10px;
  }
  
  .hero-section .col-lg-6:last-child {
    height: 250px;
  }
}

.footer-links li a i {
  margin-right: 0.5rem;
  font-size: 1rem;
  color: #666;
  transition: var(--transition);
}

.footer-links li a:hover i {
  color: var(--accent);
}

/* Trustpilot Section - Surface Doctor Style */
.trustpilot {
  background: #000;
  padding: 30px 0;
  border-top: 1px solid #ddd;
}

.trustpilot-logo {
  text-align: center;
}

.trustpilot-logo img {
  max-width: 200px;
  height: auto;
}

.trustpilot-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 30px;
  justify-content: flex-start;
}

.trustpilot-list li {
  font-size: 14px;
  color: #fff;
  font-weight: normal;
  white-space: nowrap;
  flex-shrink: 0;
}

.trustpilot-list li span {
  font-weight: bold;
  color: var(--accent);
}

/* Footer - Surface Doctor Style */
.page-footer {
  background: #fff;
  padding: 30px 0;
  border-top: 1px solid #ddd;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0;
}

.footer-links li {
  margin: 0;
  padding: 0 15px;
  border-right: 1px solid #ddd;
  line-height: 1.2;
}

.footer-links li:last-child {
  border-right: none;
}

.footer-links li a {
  color: #333;
  text-decoration: none;
  font-size: 13px;
  font-weight: normal;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.3s ease;
}

.footer-links li a:hover {
  color: #007c89;
  text-decoration: none;
}

.footer-links li a i {
  font-size: 14px;
  color: #666;
  margin-right: 5px;
}

.footer-links li a:hover i {
  color: #007c89;
}

/* Floating CTA - Surface Doctor Style */
.bw-floating-cta {
  display: none;
}

.bw-floating-cta a {
  display: block;
  width: 100%;
  text-align: center;
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 6px;
  margin: 5px;
}

.bw-floating-cta a,
.bw-floating-cta a:visited {
  color: white;
  text-decoration: none;
}

.bw-floating-cta a:hover,
.bw-floating-cta a:active {
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  .bw-floating-cta-wrapper {
    height: 140px;
  }

  .bw-floating-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background-color: #337ab7;
  }

  .trustpilot-list {
    flex-wrap: wrap !important;
    flex-direction: row !important;
    gap: 10px !important;
    justify-content: center !important;
    align-items: center !important;
  }
  
  .trustpilot-list li {
    white-space: nowrap !important;
    text-align: center;
    font-size: 12px;
  }
  
  .trustpilot-logo img {
    max-width: 150px;
  }

  .footer-links {
    flex-direction: column;
    gap: 10px;
  }

  .footer-links li {
    padding: 5px 0;
    border-right: none;
    border-bottom: 1px solid #ddd;
    width: 100%;
    text-align: center;
  }

  .footer-links li:last-child {
    border-bottom: none;
  }

  .footer-links li a {
    justify-content: center;
  }
}

/* Navbar Logo */
.navbar-logo {
  max-height: 50px;
  width: auto;
  transition: var(--transition);
}

.navbar-logo:hover {
  transform: scale(1.05);
}

/* Update navbar brand for logo */
.navbar-brand {
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
}

/* Mobile responsive adjustments */
@media (max-width: 991px) {
  .hero-section {
    background-position: center right;
    height: auto;
    min-height: 400px;
    padding: 2rem 0;
  }
  
  .hero-section .row {
    flex-direction: column-reverse;
  }
  
  .hero-section .col-lg-6:first-child {
    order: 2;
    margin-top: 2rem;
  }
  
  .hero-section .col-lg-6:last-child {
    order: 1;
    height: 300px;
    background: url(./images/hero.jpg) no-repeat center right / cover;
    border-radius: 15px;
    margin-bottom: 1rem;
  }
  
  .hero-content-wrapper {
    padding: 2rem 1.5rem;
    margin-top: 1rem;
  }
}

/* Surface Doctor Header Styles */
.page-header {
  background: #fff;
  padding: 20px 0;
  border-bottom: 1px solid #eee;
}

.logo img {
  max-width: 100%;
  height: auto;
}

.quick-contact {
  text-align: right;
}

.quick-contact-desc {
  font-size: 18px;
  color: #666;
  margin: 2px 0;
  padding: 0;
}

.quick-contact-num {
  font-size: 3rem;
  font-weight: 700;
  color: #6489bb;
  letter-spacing: -0.05em;
 
}

.quick-contact-num a {
  color: inherit;
  text-decoration: none;
}

.quick-contact-num a:hover {
  color: #4a6b9a;
}

/* Surface Doctor Hero Styles */
.page-section.hero {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover !important;
  background-position: center right !important;
  background-repeat: no-repeat !important;
  z-index: 1;
}

.hero-img {
  width: 100%;
}

.hero-img img {
  width: 100%;
  height: auto;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-text {
  background: var(--accent);
  padding: 40px 30px;
  border-radius: 10px;
  color: white;
  max-width: 500px;
}

.hero-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
}

.hero-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-list li {
  padding: 10px 0;
  font-size: 1.1rem;
  line-height: 1.6;
  position: relative;
  padding-left: 30px;
}

.hero-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 10px;
  font-weight: bold;
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

/* Surface Doctor CTA Box */
.cta-box {
  background: #f8f9fa;
  padding: 30px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

cta-title-blck {
  font-size: 1.5rem;
  font-weight: 300;
  color: #333;
  margin: 10px 0;
}
.cta-title {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--white);
  margin: 10px 0;
}

.text-thin {
  font-weight: 300;
}

.btn-default {
  background: var(--white);
  border-color: var(--text-color);
  color: var(--text-color);
}



.btn-default:hover {
  background: #5a6268;
  border-color: #545b62;
  color: white;
}

.btn-default-green {
  background: #59b659;
  border-color: #398439;
  color: white;
}



.btn-default-green:hover {
  background: #449d44;
  border-color: #398439;
  color: white;
}

.btn-success {
  background: var(--accent);
  border-color: var(--accent-hover);
}

.btn-success:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
}

.btn-lg {
  padding: 12px 24px;
  font-size: 1.1rem;
  border-radius: 6px;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  width: 100%;
}

/* Mobile responsiveness for Surface Doctor design */
@media (max-width: 767px) {
  .page-header {
    padding: 10px 0;
  }
  
  .page-header .row {
    text-align: center;
  }
  
  .page-header .col-md-4,
  .page-header .col-sm-6 {
    width: 100%;
    margin: 0;
    padding: 5px 15px;
    text-align: center !important;
  }
  
  .logo {
    text-align: center;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  
  .logo img {
    margin: 0 auto;
    padding-top: 0 !important;
    max-width: 200px;
  }
  
  .push {
    float: none !important;
    margin-top: 0;
    padding-top: 0;
  }
  
  .quick-contact {
    text-align: center;
    margin-top: 0;
  }
  
  .quick-contact-desc {
    font-size: 16px;
    margin: 2px 0;
    padding: 0;
  }
  
  .quick-contact-num {
    font-size: 1.8rem;
    margin: 5px 0;
  }
  
  /* Hero section mobile layout */
  .page-section.hero {
    display: flex;
    flex-direction: column;
    min-height: auto;
  }
  
  .hero-img {
    order: 1;
    width: 100%;
    margin-bottom: 0;
  }
  
  .hero-img img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  .page-section.hero .container {
    order: 2;
    position: static;
    z-index: auto;
    background: white;
    padding: 30px 15px;
  }
  
  .hero-text {
    padding: 30px 20px;
    margin: 0;
    background: var(--accent);
    border-radius: 10px;
  }
  
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-list li {
    font-size: 1rem;
  }
  
  .cta-box .col-md-4 {
    margin-bottom: 15px;
  }
  
  .cta-title {
    font-size: 1.2rem;
    text-align: center;
  }

  .cta-title-blck {
    font-size: 1.2rem;
    text-align: center;
    font-weight: 400;
  }
  
  /* Process content mobile layout - images side by side */
  .process-content + .row .col-md-2 {
    display: flex;
    flex-direction: row;
    gap: 15px;
    margin-bottom: 20px;
    width: 100%;
    max-width: 100%;
  }
  
  .process-content + .row .col-md-2 img {
    flex: 1;
    width: calc(50% - 7.5px);
    min-height: 250px;
    max-height: 300px;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }
  
  /* Specific styling for repair images */
  .process-content + .row .col-md-2 img[src*="repair-"] {
    min-height: 300px;
    max-height: 350px;
  }
  
  /* Reduce sink.jpg image size to match repair images width */

}

/* Bootstrap 3 responsive utility classes for Surface Doctor compatibility */
.hidden-xs {
  display: block !important;
}

.visible-xs {
  display: none !important;
}

@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
  
  .visible-xs {
    display: block !important;
  }
}

/* Bootstrap 3 grid system compatibility */
.col-md-offset-4 {
  margin-left: 33.33333333%;
}

@media (max-width: 991px) {
  .col-md-offset-4 {
    margin-left: 0;
  }
}

@media (max-width: 767px) {
  .col-md-offset-4 {
    margin-left: 0 !important;
  }
  
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.push {
  float: right;
}

@media (max-width: 767px) {
  .push {
    float: none;
  }
}

.img-responsive {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Extra small screens - hide header top bar to save space */
@media (max-width: 576px) {
  .header-top-bar {
    display: none;
  }
}