/* ===== PLUMBER GALAL - Deferred Styles ===== */
/* Scrollbar */
::-webkit-scrollbar {
  width: 8px
}

::-webkit-scrollbar-track {
  background: #f4f4f4
}

::-webkit-scrollbar-thumb {
  background: #000;
  border-radius: 8px
}

/* ===== Why Us Section ===== */
.why-us {
  padding: 4rem 2rem;
  background: #fafafa
}

.why-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: center
}

.why-img {
  position: relative
}

.why-img img {
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .1);
  aspect-ratio: 5/4;
  object-fit: cover
}

.why-badge {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: #000;
  color: #fff;
  padding: .6rem 1.2rem;
  border-radius: 12px;
  text-align: center
}

.why-badge strong {
  display: block;
  font-size: 1.5rem;
  color: #f1b320
}

.why-badge span {
  font-size: .7rem;
  opacity: .8
}

.why-content h2 {
  font-size: 1.6rem;
  font-weight: 900;
  margin: .5rem 0;
  color: #0a0a0a
}

.why-content>p {
  color: #555;
  line-height: 1.9;
  margin-bottom: 1.5rem
}

.features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem
}

.feature-item {
  display: flex;
  gap: .7rem;
  align-items: flex-start;
  padding: .8rem;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #eee;
  transition: .3s
}

.feature-item:hover {
  border-color: #f1b320;
  box-shadow: 0 4px 15px rgba(0, 0, 0, .05)
}

.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.feature-text h4 {
  font-size: .9rem;
  font-weight: 700;
  color: #0a0a0a;
  margin-bottom: .1rem
}

.feature-text p {
  font-size: .75rem;
  color: #888
}

/* ===== Testimonials ===== */
.testimonials-section {
  padding: 4rem 2rem;
  background: #fff
}

.testimonials-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem
}

.testimonial-card {
  background: #fafafa;
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid #eee;
  transition: .3s
}

.testimonial-card:hover {
  border-color: #f1b320;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, .06)
}

.quote-icon {
  font-size: 2.5rem;
  color: #f1b320;
  line-height: 1;
  margin-bottom: .3rem;
  font-family: Georgia, serif
}

.testimonial-text {
  font-size: .9rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 1rem
}

.client-info {
  display: flex;
  gap: .7rem;
  align-items: center
}

.client-avatar {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 900;
  flex-shrink: 0
}

.client-details h4 {
  font-size: .9rem;
  font-weight: 700;
  color: #0a0a0a
}

.client-details p {
  font-size: .75rem;
  color: #888
}

.rating {
  color: #f1b320;
  font-size: .8rem;
  letter-spacing: 1px
}

.thank-you-note {
  text-align: center;
  padding: 2rem;
  background: #fafafa;
  border-radius: 16px;
  margin: 2rem auto 0;
  max-width: 600px;
  border: 1px solid #eee
}

.thank-you-note h3 {
  color: #000;
  font-size: 1.1rem;
  margin-bottom: .3rem
}

.thank-you-note p {
  color: #666;
  font-size: .85rem
}

/* ===== FAQ ===== */
.faq {
  padding: 4rem 2rem;
  background: #fafafa
}

.faq-inner {
  max-width: 750px;
  margin: 0 auto
}

.faq-item {
  background: #fff;
  border-radius: 14px;
  margin-bottom: .8rem;
  border: 1px solid #eee;
  overflow: hidden;
  transition: .3s
}

.faq-item.active {
  border-color: #f1b320;
  box-shadow: 0 4px 15px rgba(0, 0, 0, .05)
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  color: #0a0a0a;
  gap: 1rem
}

.faq-question span {
  font-size: .95rem
}

.faq-q-icon {
  font-size: .7rem;
  color: #f1b320;
  transition: .3s;
  flex-shrink: 0
}

.faq-item.active .faq-q-icon {
  transform: rotate(180deg)
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.5rem;
  transition: max-height .3s, padding .3s;
  color: #555;
  font-size: .9rem;
  line-height: 1.8
}

/* ===== Articles ===== */
.articles {
  padding: 4rem 2rem;
  background: #fff
}

.articles-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem
}

.article-card {
  background: #fafafa;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #eee;
  transition: .3s
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
  border-color: #f1b320
}

.article-img {
  height: 180px;
  overflow: hidden
}

.article-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .4s
}

.article-card:hover .article-img img {
  transform: scale(1.05)
}

.article-content {
  padding: 1.2rem
}

.article-meta {
  display: flex;
  gap: 1rem;
  font-size: .75rem;
  color: #888;
  margin-bottom: .5rem
}

.article-content h3 {
  font-size: 1rem;
  font-weight: 800;
  color: #0a0a0a;
  margin-bottom: .4rem;
  line-height: 1.5
}

.article-content p {
  font-size: .85rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: .7rem
}

/* ===== Contact ===== */
.contact {
  padding: 4rem 2rem;
  background: #000;
  color: #fff
}

.contact-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start
}

.contact-info h2 {
  font-size: 1.6rem;
  font-weight: 900;
  margin-bottom: .5rem
}

.contact-info>p {
  color: rgba(255, 255, 255, .7);
  margin-bottom: 1.5rem;
  line-height: 1.8
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem
}

.contact-item {
  display: flex;
  gap: .8rem;
  align-items: flex-start
}

.contact-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.contact-item h4 {
  font-size: .9rem;
  font-weight: 700;
  margin-bottom: .1rem
}

.contact-item p {
  font-size: .85rem;
  color: rgba(255, 255, 255, .6)
}

.contact-item a {
  color: #f1b320
}

.contact-form-box {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 20px;
  padding: 2rem
}

.contact-form-box h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
  color: #fff
}

.form-group {
  margin-bottom: 1rem
}

.form-group label {
  display: block;
  font-size: .85rem;
  color: rgba(255, 255, 255, .7);
  margin-bottom: .3rem;
  font-weight: 500
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .7rem 1rem;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 10px;
  color: #fff;
  font-size: .9rem;
  font-family: inherit;
  transition: .3s
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #f1b320;
  background: rgba(255, 255, 255, .12)
}

.form-group textarea {
  min-height: 100px;
  resize: vertical
}

.form-group select option {
  background: #000;
  color: #fff
}

.submit-btn {
  width: 100%;
  padding: .8rem;
  background: #f1b320;
  color: #000;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: .3s
}

.submit-btn:hover {
  background: #e5a500;
  transform: translateY(-1px)
}

/* ===== Map ===== */
.map-section {
  padding: 2rem
}

.map-inner {
  max-width: 1200px;
  margin: 0 auto
}

.map-inner h2 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  text-align: center;
  color: #0a0a0a
}

.map-inner iframe {
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .1)
}

/* ===== Footer ===== */
footer {
  background: #0a0a0a;
  color: #fff;
  padding: 3rem 2rem 0
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2rem
}

.footer-col h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .8rem;
  color: #fff
}

.footer-col>p {
  font-size: .85rem;
  color: rgba(255, 255, 255, .6);
  line-height: 1.8
}

.social-links {
  margin-top: 1rem;
  display: flex;
  gap: .6rem
}

.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: .3s
}

.social-links a:hover {
  background: #f1b320;
  transform: translateY(-2px)
}

.footer-links {
  list-style: none
}

.footer-links li a {
  display: block;
  padding: .3rem 0;
  font-size: .85rem;
  color: rgba(255, 255, 255, .6);
  transition: .2s
}

.footer-links li a:hover {
  color: #f1b320;
  padding-right: .3rem
}

.footer-bottom {
  text-align: center;
  padding: 1.5rem 0;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: .8rem;
  color: rgba(255, 255, 255, .4)
}

.footer-bottom a {
  color: rgba(255, 255, 255, .4)
}

.footer-bottom a:hover {
  color: #f1b320
}

/* ===== Call Button ===== */
#call-button {
  position: fixed;
  bottom: 25px;
  left: 25px;
  width: 55px;
  height: 55px;
  background: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .3);
  z-index: 998;
  transition: .3s;
  animation: pulse 2s infinite
}

.call-icon {
  width: 26px;
  height: 26px
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, .4)
  }

  70% {
    box-shadow: 0 0 0 12px rgba(0, 0, 0, 0)
  }

  100% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0)
  }
}

/* ===== Responsive Bottom ===== */
@media(max-width:900px) {
  .why-inner {
    grid-template-columns: 1fr
  }

  .contact-container {
    grid-template-columns: 1fr
  }

  .footer-container {
    grid-template-columns: 1fr 1fr
  }

  .features-list {
    grid-template-columns: 1fr
  }

  .testimonials-grid {
    grid-template-columns: 1fr
  }
}

@media(max-width:600px) {
  .articles-grid {
    grid-template-columns: 1fr
  }

  .footer-container {
    grid-template-columns: 1fr
  }

  .stats-inner {
    grid-template-columns: repeat(2, 1fr)
  }
}

/* ======= Area Pages ======= */
.breadcrumb {
  background: #f8f8f8;
  padding: .8rem 2rem;
  margin-top: 80px;
  font-size: .9rem;
  border-bottom: 1px solid #eee
}

.breadcrumb-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap
}

.breadcrumb a {
  color: #000;
  text-decoration: none;
  font-weight: 500
}

.breadcrumb a:hover {
  color: #f1b320
}

.breadcrumb span {
  color: #888
}

.area-hero {
  background: linear-gradient(135deg, #000 0%, #1a1a1a 50%, #222 100%);
  color: #fff;
  padding: 5rem 2rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden
}

.area-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 50%, rgba(241, 179, 32, .1), transparent 60%)
}

.area-hero-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1
}

.area-hero .badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(241, 179, 32, .15);
  border: 1px solid rgba(241, 179, 32, .3);
  padding: .5rem 1.2rem;
  border-radius: 50px;
  font-size: .9rem;
  margin-bottom: 1.5rem;
  color: #f1b320
}

.area-hero h1 {
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 1rem;
  line-height: 1.5
}

.area-hero h1 span {
  color: #f1b320
}

.area-hero>p,
.area-hero-inner>p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, .85);
  margin-bottom: 2rem
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap
}

.area-content {
  padding: 3rem 2rem
}

.area-content-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: start
}

.area-text h2 {
  font-size: 1.6rem;
  font-weight: 800;
  margin: 2rem 0 1rem;
  color: #000;
  padding-bottom: .5rem;
  border-bottom: 2px solid #f1b320;
  display: inline-block
}

.area-text h2:first-child {
  margin-top: 0
}

.area-text h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 1.5rem 0 .5rem;
  color: #1a1a1a
}

.area-text p {
  line-height: 1.9;
  color: #333;
  margin-bottom: 1rem
}

.area-text ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem
}

.area-text ul li {
  padding: .6rem 0 .6rem 1.5rem;
  position: relative;
  border-bottom: 1px solid #f0f0f0
}

.area-text ul li::before {
  content: '✓';
  position: absolute;
  right: auto;
  left: 0;
  top: .6rem;
  color: #f1b320;
  font-weight: 700
}

[dir="rtl"] .area-text ul li {
  padding: .6rem 1.5rem .6rem 0
}

[dir="rtl"] .area-text ul li::before {
  right: 0;
  left: auto
}

.area-sidebar {
  position: sticky;
  top: 100px
}

.sidebar-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
  border: 1px solid #eee
}

.sidebar-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: .5rem;
  color: #000
}

.sidebar-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  background: #000;
  color: #fff;
  padding: .8rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: .3s
}

.sidebar-cta:hover {
  opacity: .9;
  transform: translateY(-1px)
}

.sidebar-card ul {
  list-style: none;
  padding: 0;
  margin: 0
}

.sidebar-card ul li {
  border-bottom: 1px solid #f0f0f0
}

.sidebar-card ul li a {
  display: flex;
  align-items: center;
  gap: .4rem;
  padding: .6rem 0;
  color: #333;
  text-decoration: none;
  font-size: .95rem;
  transition: .2s
}

.sidebar-card ul li a:hover {
  color: #f1b320;
  padding-right: .3rem
}

.area-services-mini {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem
}

.mini-svc {
  display: inline-block;
  background: #f8f8f8;
  border: 1px solid #eee;
  padding: .4rem .8rem;
  border-radius: 8px;
  font-size: .85rem;
  color: #333;
  text-decoration: none;
  transition: .2s
}

.mini-svc:hover {
  background: #000;
  color: #fff;
  border-color: #000
}

@media(max-width:900px) {
  .area-content-inner {
    grid-template-columns: 1fr;
    gap: 2rem
  }

  .area-sidebar {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem
  }
}

@media(max-width:600px) {
  .area-hero {
    padding: 4rem 1rem 3rem
  }

  .area-hero h1 {
    font-size: 1.6rem
  }

  .hero-btns {
    flex-direction: column
  }

  .area-sidebar {
    grid-template-columns: 1fr
  }

  .breadcrumb {
    padding: .6rem 1rem;
    font-size: .8rem
  }
}