@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css');

:root {
  --primary-blue: #1e40af;
  --secondary-blue: #3b82f6;
  --accent-teal: #14b8a6;
  --light-gray: #f3f4f6;
  --dark-gray: #374151;
  --white: #ffffff;
  --text-dark: #111827;
  --text-light: #6b7280;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--white);
}

.text-white strong,
.text-white b,
.text-light strong,
.text-light b,
[class*="text-"] strong,
[class*="text-"] b {
  color: inherit;
}

.navbar {
  background-color: var(--white) !important;
  border-bottom: 1px solid rgba(55, 65, 81, 0.1);
  padding: 1rem 0;
}

.navbar-brand {
  font-weight: 700;
  color: var(--primary-blue) !important;
  font-size: 1.5rem;
  text-decoration: none;
}

.navbar-brand span {
  color: var(--accent-teal);
}

.nav-link {
  color: var(--text-dark) !important;
  font-weight: 500;
  transition: color 0.3s ease;
  margin: 0 0.5rem;
}

.nav-link:hover {
  color: var(--secondary-blue) !important;
}

.btn-primary {
  background-color: var(--primary-blue);
  border-color: var(--primary-blue);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #1d4ed8;
  border-color: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
}

.btn-secondary {
  background-color: transparent;
  border-color: var(--primary-blue);
  color: var(--primary-blue);
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background-color: var(--primary-blue);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
}

.hero-section .btn-secondary {
  background-color: var(--white);
  color: var(--primary-blue);
  border-color: var(--primary-blue);
}

.hero-section .btn-secondary:hover {
  background-color: var(--primary-blue);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(30, 64, 175, 0.4);
}

.btn-light {
  background-color: var(--light-gray);
  border-color: var(--light-gray);
  color: var(--text-dark);
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.btn-light:hover {
  background-color: #e5e7eb;
  border-color: #e5e7eb;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(55, 65, 81, 0.15);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  position: relative;
}

.section-title:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background-color: var(--accent-teal);
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-light);
  margin-bottom: 3rem;
  font-weight: 400;
}

.hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 0;
  background-size: cover;
  background-position: center;
}

.hero-section-main {
  min-height: 100vh;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

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

.hero-section-compact {
  min-height: 50vh;
  padding: 4rem 0;
}

.hero-content {
  max-width: 800px;
  z-index: 2;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 2rem;
  font-weight: 300;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.service-card {
  background-color: var(--white);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  border: none;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.service-card-img {
  height: 200px;
  object-fit: cover;
}

.service-card-body {
  padding: 1.5rem;
}

.service-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.service-card-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.service-card-description {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.testimonial-card {
  background-color: var(--white);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border-left: 4px solid var(--accent-teal);
  height: 100%;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary-blue);
}

.team-member {
  text-align: center;
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
}

.team-member-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 4px solid var(--light-gray);
}

.team-member-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.team-member-position {
  color: var(--text-light);
  font-weight: 500;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background-color: var(--primary-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--white);
  font-size: 1.5rem;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.feature-description {
  color: var(--text-light);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.contact-info-icon {
  color: var(--primary-blue);
  font-size: 1.5rem;
  margin-right: 1rem;
  margin-top: 0.25rem;
}

.form-control {
  border-radius: 0.5rem;
  border: 2px solid #e5e7eb;
  padding: 1rem;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

footer {
  background-color: var(--text-dark);
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.footer-link {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
  margin-bottom: 0.5rem;
}

.footer-link:hover {
  color: var(--white);
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s ease;
  margin-right: 0.5rem;
}

.footer-social-link:hover {
  background-color: var(--primary-blue);
  transform: translateY(-2px);
}

.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(55, 65, 81, 0.95);
  color: var(--white);
  padding: 1rem 2rem;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.cookie-consent-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.cookie-consent-text {
  flex: 1;
  margin-right: 1rem;
}

.cookie-consent-buttons {
  display: flex;
  gap: 0.5rem;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .navbar-brand {
    font-size: 1.25rem;
  }
  
  .cookie-consent-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-consent-text {
    margin-right: 0;
    margin-bottom: 0.5rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .btn {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
}

.bathroom-showcase {
  background-color: var(--light-gray);
  padding: 4rem 0;
  margin: 4rem 0;
}

.process-step {
  text-align: center;
  position: relative;
  padding: 2rem;
}

.process-step:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--accent-teal);
  transform: translateY(-50%);
}

.process-step-icon {
  width: 80px;
  height: 80px;
  background-color: var(--primary-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--white);
  font-size: 2rem;
}

.process-step-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-teal);
  margin-bottom: 0.5rem;
}

.process-step-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.process-step-description {
  color: var(--text-light);
}

.faq-item {
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  background-color: var(--white);
  padding: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: var(--light-gray);
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--primary-blue);
}

.faq-question.active::after {
  content: '−';
}

.faq-answer {
  background-color: var(--white);
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.show {
  padding: 1.5rem;
  max-height: 500px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.portfolio-item {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  height: 300px;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.portfolio-item:hover img {
  transform: scale(1.05);
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(30, 64, 175, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-overlay-content {
  text-align: center;
  color: var(--white);
  padding: 2rem;
}

.portfolio-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.portfolio-category {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
}

/* Process page specific styles */
.process-benefits {
  background-color: var(--light-gray);
  padding: 2rem;
  border-radius: 1rem;
  margin-top: 2rem;
}

.benefits-list {
  list-style: none;
  padding: 0;
}

.benefits-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(55, 65, 81, 0.1);
}

.benefits-list li:last-child {
  border-bottom: none;
}

.process-stats {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
}

.stat-item {
  text-align: center;
  padding: 1rem;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-blue);
  display: block;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-top: 0.5rem;
}

.process-guarantee {
  background-color: var(--white);
  padding: 1.5rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  margin-top: 2rem;
}

.guarantee-icon {
  width: 60px;
  height: 60px;
  background-color: var(--accent-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--white);
  font-size: 1.5rem;
}

.process-timeline {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.process-step-large {
  background-color: var(--white);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border-left: 4px solid var(--accent-teal);
}

.step-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent-teal);
  opacity: 0.3;
  position: absolute;
  top: -1rem;
  left: -2rem;
  z-index: 1;
}

.step-content {
  position: relative;
  padding-left: 3rem;
}

.step-icon {
  width: 60px;
  height: 60px;
  background-color: var(--primary-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--white);
  font-size: 1.5rem;
}

.step-details {
  background-color: var(--light-gray);
  padding: 1.5rem;
  border-radius: 0.5rem;
  margin-top: 1rem;
}

.step-details h6 {
  color: var(--primary-blue);
  margin-bottom: 1rem;
  font-weight: 600;
}

.step-details ul {
  list-style: none;
  padding: 0;
}

.step-details li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(55, 65, 81, 0.1);
}

.step-details li:last-child {
  border-bottom: none;
}

.communication-methods {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.communication-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.comm-icon {
  width: 50px;
  height: 50px;
  background-color: var(--primary-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.comm-content {
  flex: 1;
}

.comm-content h6 {
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.expectations-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.expectation-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.expectation-icon {
  width: 40px;
  height: 40px;
  background-color: var(--primary-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  flex-shrink: 0;
}

.expectation-content {
  flex: 1;
}

.expectation-content h6 {
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.quality-step {
  text-align: center;
  padding: 2rem;
  background-color: var(--white);
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.quality-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-teal);
  opacity: 0.3;
  display: block;
  margin-bottom: 1rem;
}

.quality-standards {
  background-color: var(--light-gray);
  padding: 2rem;
  border-radius: 1rem;
  margin-top: 2rem;
}

.standards-list {
  list-style: none;
  padding: 0;
}

.standards-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(55, 65, 81, 0.1);
}

.standards-list li:last-child {
  border-bottom: none;
}

.process-cta {
  background-color: var(--primary-blue);
  color: var(--white);
  text-align: center;
  padding: 4rem 0;
}

.process-cta .section-title {
  color: var(--white);
}

.process-cta .section-subtitle {
  color: rgba(255, 255, 255, 0.9);
}

.process-cta .btn {
  margin: 0 0.5rem;
}

.process-cta .text-muted {
  color: rgba(255, 255, 255, 0.8);
  margin-top: 1rem;
}

/* FAQ page specific styles */
.faq-contact {
  background-color: var(--light-gray);
  padding: 2rem;
  border-radius: 1rem;
  margin-top: 2rem;
  text-align: center;
}

.faq-contact h5 {
  color: var(--primary-blue);
  margin-bottom: 1rem;
  font-weight: 600;
}

.contact-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.contact-option-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--primary-blue);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 300px;
  justify-content: center;
}

.contact-option-link:hover {
  background-color: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
}

.faq-stats {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
}

.faq-guarantee {
  background-color: var(--white);
  padding: 1.5rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  margin-top: 2rem;
}

.faq-guarantee h6 {
  color: var(--primary-blue);
  margin-bottom: 1rem;
  font-weight: 600;
  font-size: 1rem;
}

/* Contact page specific styles */
.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  margin-top: 2rem;
}

.contact-card h4 {
  color: var(--primary-blue);
  margin-bottom: 1rem;
  font-weight: 600;
}

.service-request-form {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

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

.service-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(55, 65, 81, 0.1);
}

.service-features li:last-child {
  border-bottom: none;
}

.service-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.service-benefits {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .contact-option-link {
    max-width: none;
  }
  
  .service-actions {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .contact-options {
       gap: 0.5rem;
  }
}

/* Scroll to top button styles */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: none;
    z-index: 999;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    background-color: var(--primary-blue);
    border: none;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
}

.back-to-top:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 64, 175, 0.4);
}

.footer-links {
  display: flex;
  justify-content: space-around;
}