/* Outdoor Kitchen Elegant Styles */
:root {
  --primary-color: #0078e3;
  --secondary-color: #f8b500;
  --accent-color: #ff6b6b;
  --dark-blue: #005bb5;
  --light-blue: #e6f3ff;
  --dark-gray: #333333;
  --medium-gray: #666666;
  --light-gray: #f5f5f5;
  --white: #ffffff;
  --gradient-primary: linear-gradient(135deg, #0078e3, #005bb5);
  --gradient-gold: linear-gradient(135deg, #f8b500, #ffd700);
  --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

/* Hero Section Enhancements */
.service-hero {
  position: relative;
  overflow: hidden;
}

.hero-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--gradient-gold);
  color: var(--dark-gray);
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--box-shadow);
  z-index: 10;
  animation: float 3s ease-in-out infinite;
}

.hero-badge i {
  color: var(--dark-gray);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
  margin-bottom: 30px;
}

.hero-stat {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--box-shadow);
}

.hero-stat i {
  color: var(--primary-color);
  font-size: 24px;
}

.hero-stat-content {
  display: flex;
  flex-direction: column;
}

.hero-stat-number {
  font-weight: 700;
  font-size: 20px;
  color: var(--dark-gray);
}

.hero-stat-text {
  font-size: 14px;
  color: var(--medium-gray);
}

.hero-buttons {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.hero-buttons .btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  font-weight: 600;
  transition: var(--transition);
  border-radius: 50px;
}

.hero-buttons .btn-primary {
  background: var(--gradient-primary);
  border: none;
}

.hero-buttons .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 120, 227, 0.3);
}

.hero-buttons .btn-secondary {
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.hero-buttons .btn-secondary:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-3px);
}

.hero-shape {
  position: absolute;
  z-index: 1;
  opacity: 0.5;
}

.hero-shape-1 {
  top: 10%;
  left: 5%;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--primary-color);
  animation: float 6s ease-in-out infinite;
}

.hero-shape-2 {
  bottom: 10%;
  right: 5%;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--secondary-color);
  animation: float 8s ease-in-out infinite;
}

.hero-shape-3 {
  top: 40%;
  right: 15%;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--accent-color);
  animation: float 7s ease-in-out infinite;
}

/* Introduction Section Enhancements */
.service-details {
  padding: 80px 0;
  background-color: var(--white);
}

.section-badge {
  display: inline-block;
  background: var(--light-blue);
  color: var(--primary-color);
  padding: 6px 16px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 15px;
}

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

.section-header {
  margin-bottom: 40px;
}

.intro-content {
  max-width: 900px;
  margin: 0 auto 50px;
  text-align: center;
  line-height: 1.8;
}

.image-feature-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.main-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  height: 100%;
}

.main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.main-image:hover img {
  transform: scale(1.05);
}

.main-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.image-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--white);
  color: var(--dark-gray);
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  z-index: 2;
  box-shadow: var(--box-shadow);
}

.key-benefits {
  background: var(--light-blue);
  border-radius: 12px;
  padding: 30px;
  box-shadow: var(--box-shadow);
}

.key-benefits h3 {
  margin-bottom: 25px;
  text-align: center;
  font-size: 24px;
  position: relative;
  padding-bottom: 15px;
}

.key-benefits h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gradient-gold);
  border-radius: 3px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.benefit-card {
  background: var(--white);
  border-radius: 12px;
  padding: 20px;
  transition: var(--transition);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow);
  border-top: 3px solid var(--primary-color);
}

.benefit-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--light-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.benefit-icon i {
  color: var(--primary-color);
  font-size: 24px;
}

.benefit-card h4 {
  margin-bottom: 10px;
  font-size: 18px;
  color: var(--dark-gray);
}

.benefit-card p {
  font-size: 14px;
  color: var(--medium-gray);
  line-height: 1.6;
}

/* Responsive styles for the new layout */
@media (max-width: 992px) {
  .image-feature-wrapper {
    grid-template-columns: 1fr;
  }
  
  .main-image {
    height: 400px;
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .main-image {
    height: 300px;
  }
}

/* Kitchen Features Section */
.kitchen-features {
  padding: 80px 0;
  background-color: var(--light-blue);
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--gradient-gold);
  border-radius: 3px;
}

.types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.type-card {
  background: var(--white);
  border-radius: 12px;
  padding: 30px;
  transition: var(--transition);
  box-shadow: var(--box-shadow);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.type-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.type-card:hover {
  transform: translateY(-10px);
}

.type-card:hover::before {
  transform: scaleX(1);
}

.type-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--light-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.type-icon i {
  font-size: 30px;
  color: var(--primary-color);
}

.type-card h3 {
  margin-bottom: 15px;
  font-size: 20px;
}

/* Gallery Section */
.kitchen-gallery {
  padding: 80px 0;
  background-color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 250px;
  box-shadow: var(--box-shadow);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: var(--transition);
}

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

.gallery-title {
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}

.gallery-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

/* Design Process Section */
.design-process {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.process-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.process-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: var(--gradient-primary);
  transform: translateX(-50%);
}

.process-step {
  display: flex;
  margin-bottom: 50px;
}

.process-step:nth-child(odd) {
  flex-direction: row;
}

.process-step:nth-child(even) {
  flex-direction: row-reverse;
}

.process-content {
  width: 45%;
  background: var(--white);
  padding: 30px;
  border-radius: 12px;
  box-shadow: var(--box-shadow);
  position: relative;
}

.process-content::after {
  content: '';
  position: absolute;
  top: 20px;
  width: 20px;
  height: 20px;
  background: var(--white);
  transform: rotate(45deg);
}

.process-step:nth-child(odd) .process-content::after {
  right: -10px;
}

.process-step:nth-child(even) .process-content::after {
  left: -10px;
}

.process-number {
  position: absolute;
  top: 10px;
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  z-index: 2;
  left: 50%;
  transform: translateX(-50%);
}

.process-step:nth-child(odd) .process-content {
  margin-right: auto;
}

.process-step:nth-child(even) .process-content {
  margin-left: auto;
}

.process-image {
  width: 45%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.process-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Testimonials Section */
.testimonials {
  padding: 80px 0;
  background-color: var(--white);
  position: relative;
  overflow: hidden;
}

.testimonials-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/paver-patio.jpeg');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 1;
}

.testimonial-card {
  background: var(--white);
  border-radius: 12px;
  padding: 30px;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  border-top: 5px solid transparent;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  border-top-color: var(--primary-color);
}

.testimonial-quote {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 20px;
  position: relative;
  padding-left: 30px;
}

.testimonial-quote::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 60px;
  color: var(--primary-color);
  opacity: 0.3;
  font-family: Georgia, serif;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--light-blue);
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-avatar i {
  font-size: 24px;
  color: var(--primary-color);
}

.testimonial-info h4 {
  font-size: 16px;
  margin-bottom: 5px;
}

.testimonial-info p {
  font-size: 14px;
  color: var(--medium-gray);
}

/* CTA Section Enhancements */
.service-cta {
  position: relative;
  padding: 80px 0;
  background: var(--gradient-primary);
  overflow: hidden;
}

.cta-shape {
  position: absolute;
  z-index: 1;
  opacity: 0.1;
}

.cta-shape-1 {
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--white);
}

.cta-shape-2 {
  bottom: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: var(--white);
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
}

.cta-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 20px;
}

.cta-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 30px 0;
}

.cta-feature {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cta-feature i {
  color: var(--secondary-color);
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}

.cta-buttons .btn {
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition);
}

.cta-buttons .btn-primary {
  background: var(--secondary-color);
  color: var(--dark-gray);
}

.cta-buttons .btn-primary:hover {
  background: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

.cta-buttons .btn-outline {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}

.cta-buttons .btn-outline:hover {
  background: var(--white);
  color: var(--primary-color);
  transform: translateY(-3px);
}

.cta-guarantee {
  margin-top: 30px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 15px 30px;
}

.cta-guarantee h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  margin-bottom: 10px;
}

.cta-guarantee h4 i {
  color: var(--secondary-color);
}

.cta-guarantee p {
  font-size: 14px;
  opacity: 0.8;
}

/* FAQ Section Enhancements */
.faq-section {
  padding: 80px 0;
  background-color: var(--light-gray);
  position: relative;
  overflow: hidden;
}

.faq-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: var(--primary-color);
  opacity: 0.05;
  z-index: 0;
}

.faq-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: var(--secondary-color);
  opacity: 0.05;
  z-index: 0;
}

/* FAQ Masonry Layout */
.faq-masonry {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

/* FAQ Box Base Styles */
.faq-box {
  background: var(--white);
  border-radius: 15px;
  padding: 30px;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.faq-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.faq-box-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--light-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.faq-box-icon i {
  color: var(--primary-color);
  font-size: 22px;
}

.faq-box h3 {
  margin: 0 0 20px 0;
  font-size: 20px;
  color: var(--dark-gray);
  line-height: 1.4;
}

.faq-box-content {
  flex-grow: 1;
}

.faq-box-content p {
  margin-top: 0;
  line-height: 1.6;
}

/* Featured FAQ Box */
.faq-box-featured {
  grid-column: span 2;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border-left: 5px solid var(--primary-color);
}

@media (max-width: 768px) {
  .faq-box-featured {
    grid-column: span 1;
  }
}

/* Image FAQ Box */
.faq-box-image {
  color: var(--white);
  background-size: cover;
  background-position: center;
  position: relative;
}

.faq-box-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8));
  border-radius: 15px;
  z-index: 0;
}

.faq-box-image .faq-box-icon,
.faq-box-image h3,
.faq-box-image .faq-box-content {
  position: relative;
  z-index: 1;
}

.faq-box-image .faq-box-icon {
  background: rgba(255, 255, 255, 0.2);
}

.faq-box-image .faq-box-icon i {
  color: var(--white);
}

.faq-box-image h3 {
  color: var(--white);
}

/* Tip FAQ Box */
.faq-box-tip {
  background: linear-gradient(135deg, #fff9e6, #fff5d6);
  border-left: 5px solid var(--secondary-color);
}

.faq-box-tip .faq-box-icon {
  background: rgba(248, 181, 0, 0.1);
}

.faq-box-tip .faq-box-icon i {
  color: var(--secondary-color);
}

/* Timeline FAQ Box */
.faq-box-timeline {
  background: linear-gradient(135deg, #e6f3ff, #d1e9ff);
  border-left: 5px solid var(--primary-color);
}

/* Checklist FAQ Box */
.faq-box-checklist {
  background: linear-gradient(135deg, #e6ffe6, #d1ffd1);
  border-left: 5px solid #28a745;
}

.faq-box-checklist .faq-box-icon {
  background: rgba(40, 167, 69, 0.1);
}

.faq-box-checklist .faq-box-icon i {
  color: #28a745;
}

/* Price Tiers */
.price-tiers {
  display: flex;
  gap: 15px;
  margin-top: 25px;
  flex-wrap: wrap;
}

.price-tier {
  flex: 1;
  min-width: 120px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  background: var(--white);
}

.price-tier:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.price-tier-header {
  padding: 15px;
  text-align: center;
  color: var(--white);
}

.price-tier-header.basic {
  background: linear-gradient(135deg, #6c757d, #495057);
}

.price-tier-header.mid {
  background: linear-gradient(135deg, var(--primary-color), var(--dark-blue));
}

.price-tier-header.luxury {
  background: linear-gradient(135deg, var(--secondary-color), #e0a800);
}

.price-tier-header h4 {
  margin: 0 0 5px 0;
  font-size: 18px;
}

.price-tier-header .price {
  font-weight: 700;
  font-size: 20px;
}

.price-tier-features {
  padding: 15px;
  margin: 0;
  list-style-type: none;
}

.price-tier-features li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 14px;
}

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

/* Material Tags */
.material-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.material-tag {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
}

.material-tag:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
}

/* Contractor Grid */
.contractor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.contractor-item {
  text-align: center;
  transition: var(--transition);
}

.contractor-item:hover {
  transform: translateY(-5px);
}

.contractor-logo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  margin: 0 auto 10px;
}

.contractor-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark-gray);
}

/* Tip Callout */
.tip-callout {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background: rgba(248, 181, 0, 0.1);
  border-radius: 10px;
  padding: 20px;
  margin-top: 20px;
}

.tip-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20px;
}

.tip-content {
  flex-grow: 1;
}

.tip-content h4 {
  margin: 0 0 5px 0;
  color: var(--secondary-color);
  font-size: 18px;
}

.tip-content p {
  margin: 0;
  font-size: 14px;
}

/* Timeline Visual */
.timeline-visual {
  display: flex;
  justify-content: space-between;
  margin-top: 25px;
  position: relative;
}

.timeline-visual::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary-color);
  opacity: 0.3;
  z-index: 0;
}

.timeline-step {
  position: relative;
  z-index: 1;
  text-align: center;
  flex: 1;
}

.timeline-marker {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-color);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  margin: 0 auto 15px;
}

.timeline-info h4 {
  margin: 0 0 5px 0;
  font-size: 16px;
  color: var(--dark-gray);
}

.timeline-info p {
  margin: 0;
  font-size: 14px;
  color: var(--primary-color);
  font-weight: 600;
}

/* Benefit Checklist */
.benefit-checklist {
  list-style-type: none;
  padding: 0;
  margin: 20px 0 0 0;
}

.benefit-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.benefit-checklist li:last-child {
  border-bottom: none;
}

.benefit-checklist li i {
  color: #28a745;
  font-size: 16px;
}

/* FAQ CTA */
.faq-cta {
  text-align: center;
  margin-top: 40px;
  padding: 30px;
  background: var(--gradient-primary);
  border-radius: 15px;
  color: var(--white);
}

.faq-cta p {
  font-size: 18px;
  margin-bottom: 20px;
}

.faq-cta .btn {
  background: var(--white);
  color: var(--primary-color);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
}

.faq-cta .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .faq-masonry {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .faq-masonry {
    grid-template-columns: 1fr;
  }
  
  .price-tiers {
    flex-direction: column;
  }
  
  .timeline-visual {
    flex-direction: column;
    gap: 20px;
  }
  
  .timeline-visual::before {
    display: none;
  }
  
  .contractor-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Styles */
@media (max-width: 768px) {
  .faq-tab-btn {
    font-size: 14px;
    padding: 10px 16px;
  }
  
  .price-range {
    flex-direction: column;
  }
  
  .benefits-list {
    grid-template-columns: 1fr;
  }
  
  .materials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Animations */
@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

/* Responsive Styles */
@media (max-width: 992px) {
  .service-content {
    grid-template-columns: 1fr;
  }
  
  .service-benefits {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-step {
    flex-direction: column !important;
  }
  
  .process-content, .process-image {
    width: 100%;
    margin: 0 0 20px 0;
  }
  
  .process-line {
    display: none;
  }
  
  .process-number {
    position: relative;
    margin-bottom: 20px;
    left: auto;
    transform: none;
  }
}

@media (max-width: 768px) {
  .hero-stats {
    justify-content: center;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .types-grid {
    grid-template-columns: 1fr;
  }
}
