/* Claymorphism Theme for Arabian Pleat Collection */

body, html {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', Arial, sans-serif;
  background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
  min-height: 100vh;
}

.clay-bg {
  min-height: 100vh;
  background: linear-gradient(120deg, #f8fafc 0%, #e0e7ff 100%);
  padding: 0 0 40px 0;
}

.clay-hero {
  max-width: 900px;
  margin: 0 auto 32px auto;
  padding: 48px 24px 32px 24px;
  background: #f1f5ff;
  border-radius: 40px;
  box-shadow: 0 8px 32px 0 rgba(60, 60, 120, 0.10), 0 1.5px 0 #fff inset;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  top: 20px;
}

.clay-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #4f46e5;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.clay-desc {
  font-size: 1.2rem;
  color: #64748b;
  margin-bottom: 0;
}

.clay-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.clay-card {
  background: #f4f7ff;
  border-radius: 32px;
  box-shadow: 0 8px 32px 0 rgba(60, 60, 120, 0.13), 0 1.5px 0 #fff inset, 0 0 0 1.5px #e0e7ff;
  padding: 28px 22px 22px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 270px;
  max-width: 320px;
  width: 100%;
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
}

.clay-card:hover {
  box-shadow: 0 16px 48px 0 rgba(60, 60, 120, 0.18), 0 2.5px 0 #fff inset, 0 0 0 2px #c7d2fe;
  transform: translateY(-6px) scale(1.025);
}

.clay-card-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #3730a3;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.product-specs {
  color: #64748b;
  font-size: 1rem;
  margin-bottom: 18px;
}

.product-specs i {
  color: #818cf8;
  margin-right: 7px;
}

.clay-image {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 18px;
}

.clay-image img {
  width: 100%;
  aspect-ratio: 1.5/1;
  border-radius: 10px;
  box-shadow: 0 4px 18px 0 rgba(60, 60, 120, 0.10), 0 1.5px 0 #fff inset;
  background: #e0e7ff;
}

.clay-btn {
  background: linear-gradient(120deg, #e0e7ff 0%, #c7d2fe 100%);
  color: #3730a3;
  font-weight: 600;
  border: none;
  border-radius: 24px;
  box-shadow: 0 4px 16px 0 rgba(60, 60, 120, 0.10), 0 1.5px 0 #fff inset;
  padding: 12px 32px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: box-shadow 0.18s, background 0.18s, transform 0.18s;
  outline: none;
}

.clay-btn:hover, .clay-btn:focus {
  background: linear-gradient(120deg, #c7d2fe 0%, #e0e7ff 100%);
  box-shadow: 0 8px 32px 0 rgba(60, 60, 120, 0.16), 0 2.5px 0 #fff inset;
  transform: translateY(-2px) scale(1.04);
}

@media (max-width: 900px) {
  .clay-section {
    gap: 20px;
    padding: 16px 4px;
  }
  .clay-hero {
    padding: 32px 10px 20px 10px;
  }
}

@media (max-width: 600px) {
  .clay-section {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .clay-card {
    min-width: 0;
    max-width: 98vw;
    padding: 18px 8px 14px 8px;
  }
  .clay-hero {
    border-radius: 24px;
    padding: 18px 4px 10px 4px;
  }
  .clay-title {
    font-size: 1.5rem;
  }
}

/* --- Refined Header --- */
.header {
  background: linear-gradient(90deg, #03a9f4 0%, #b388ff 100%);
  box-shadow: 0 2px 12px 0 #03a9f422;
  border-bottom: 2px solid #03a9f4;
  padding: 0.4rem 0;
  position: relative;
  z-index: 100;
}
.header .nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.2rem;
}
.header .logo {
  font-size: 1.45rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.03em;
  text-shadow: 0 1px 6px #b388ff33;
}
.header .nav-links {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}
.header .nav-links a {
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: color 0.2s, background 0.2s, box-shadow 0.2s;
  padding: 0.35rem 0.9rem;
  border-radius: 1rem;
  display: inline-block;
}
.header .nav-links a:hover, .header .nav-links a.active {
  background: #fff;
  color: #03a9f4;
  box-shadow: 0 1px 6px #03a9f422;
}
.header .megamenu-wrapper {
  position: relative;
}
.header .megamenu {
  position: absolute;
  top: 110%;
  left: 0;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 4px 24px 0 #03a9f422;
  padding: 0.7rem 0.7rem 0.7rem 0.7rem;
  min-width: 230px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all 0.22s cubic-bezier(.4,2,.3,1);
  z-index: 1000;
  border: 1.5px solid #e3f0ff;
}
.header .megamenu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header .megamenu-content {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.header .megamenu-content a {
  color: #2c1857;
  font-weight: 500;
  font-size: 0.98rem;
  padding: 0.5rem 0.7rem;
  border-radius: 0.7rem;
  transition: all 0.18s;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.header .megamenu-content a i {
  color: #03a9f4;
  font-size: 1.05rem;
  opacity: 0.7;
  min-width: 1.1em;
}
.header .megamenu-content a:hover {
  background: #f0f7ff;
  color: #03a9f4;
  transform: translateX(3px);
}
.header .mobile-menu-btn {
  display: none;
  color: #fff;
  font-size: 1.3rem;
  cursor: pointer;
  padding: 0.3rem 0.7rem;
  align-items: center;
}
@media (max-width: 900px) {
  .header .nav-container { padding: 0 0.5rem; }
  .header .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 220px;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
    padding: 2rem 1rem;
    transition: right 0.3s cubic-bezier(.4,2,.3,1);
    box-shadow: -4px 0 24px 0 #03a9f422;
    gap: 0.2rem;
    z-index: 2000;
    display: flex;
  }
  .header .nav-links.open {
    right: 0;
  }
  .header .nav-links a,
  .header .megamenu-toggle {
    width: 100%;
    text-align: left;
    padding-left: 0.5rem;
    margin: 0.2rem 0;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    color: black;
  }
  .header .megamenu {
    position: static;
    box-shadow: none;
    padding: 0.2rem 0 0.2rem 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    border: none;
    background: none;
    margin: 0;
  }
  .header .megamenu.open {
    display: block;
  }
  .header .megamenu-content {
    flex-direction: column;
    gap: 0;
  }
  .header .megamenu-content a {
    padding-left: 1.5rem;
    font-size: 1rem;
    color: #2c1857;
    background: none;
    border-radius: 0.5rem;
    margin: 0.1rem 0;
    display: block;
  }
  .header .mobile-menu-btn {
    display: flex;
    margin-left: 0.7rem;
    z-index: 2100;
  }
  /* Optional: Add overlay for mobile menu */
  .mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(44,24,87,0.18);
    z-index: 1500;
    transition: opacity 0.2s;
  }
  .mobile-menu-overlay.open {
    display: block;
    opacity: 1;
  }
}
@media (max-width: 600px) {
  .header .logo { font-size: 1.1rem; }
  .header .nav-links { width: 100%; }
}

/* --- Amazing CTA Section --- */
.cta-section, .amazing-cta {
  background: linear-gradient(90deg, #03a9f4 0%, #b388ff 100%);
  color: #fff;
  text-align: center;
  padding: 3.5rem 1.5rem 3rem 1.5rem;
  border-radius: 2rem;
  box-shadow: 0 8px 32px 0 #03a9f455;
  margin: 3rem auto 2rem auto;
  max-width: 900px;
  position: relative;
}
.cta-section h2, .amazing-cta h2 {
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 1.2rem;
  letter-spacing: 0.03em;
}
.cta-section p, .amazing-cta p {
  font-size: 1.18rem;
  margin-bottom: 2rem;
  color: #e0e0e0;
}
.cta-section .cta-btn, .amazing-cta .cta-btn {
  background: #fff;
  color: #03a9f4;
  font-weight: 700;
  font-size: 1.15rem;
  border: none;
  border-radius: 1.2rem;
  padding: 0.9rem 2.2rem;
  cursor: pointer;
  box-shadow: 0 2px 8px #03a9f422;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.cta-section .cta-btn:hover, .amazing-cta .cta-btn:hover {
  background: #b388ff;
  color: #fff;
  box-shadow: 0 4px 16px #b388ff55;
}

@media (max-width: 900px) {
  .cta-section, .amazing-cta { padding: 2rem 0.7rem; }
}
@media (max-width: 600px) {
  .cta-section h2, .amazing-cta h2 { font-size: 1.3rem; }
}

/* --- Amazing Enquiry Modal --- */
.enquiry-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(44, 24, 87, 0.25);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.enquiry-modal.open {
  display: flex;
}
.enquiry-modal-content {
  background: linear-gradient(120deg, #fff 80%, #f8fbff 100%);
  border-radius: 2rem;
  box-shadow: 0 8px 32px 0 #03a9f455, 0 2px 24px 0 #b388ff22;
  padding: 2.5rem 2rem 2rem 2rem;
  max-width: 400px;
  width: 95%;
  position: relative;
  animation: fadeInUp 0.4s cubic-bezier(.4,2,.3,1);
  border: 2.5px solid #03a9f4;
}
.enquiry-modal-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  font-size: 1.5rem;
  color: #03a9f4;
  cursor: pointer;
  background: #fff;
  border-radius: 50%;
  padding: 0.3rem 0.5rem;
  box-shadow: 0 2px 8px #03a9f422;
  transition: background 0.2s, color 0.2s;
}
.enquiry-modal-close:hover {
  background: #03a9f4;
  color: #fff;
}
.enquiry-modal-content h2 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #2c1857;
  margin-bottom: 1.2rem;
  letter-spacing: 0.01em;
  text-align: center;
}
.enquiry-modal-content form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.enquiry-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.enquiry-form-group label {
  font-weight: 600;
  color: #03a9f4;
  margin-bottom: 0.2rem;
  font-size: 1.02rem;
}
.enquiry-form-group input {
  padding: 0.7rem 1rem;
  border: 1.5px solid #e0e0e0;
  border-radius: 0.8rem;
  font-size: 1.05rem;
  background: #f8fbff;
  transition: border 0.2s;
}
.enquiry-form-group input:focus {
  border: 1.5px solid #03a9f4;
  outline: none;
}
.enquiry-submit-btn {
  background: linear-gradient(90deg, #03a9f4 0%, #b388ff 100%);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  border: none;
  border-radius: 1.2rem;
  padding: 0.8rem 2rem;
  cursor: pointer;
  box-shadow: 0 2px 8px #03a9f422;
  margin-top: 0.7rem;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.enquiry-submit-btn:hover {
  background: #b388ff;
  color: #fff;
  box-shadow: 0 4px 16px #b388ff55;
}
.enquiry-success-message, .enquiry-error-message {
  margin-top: 1rem;
  padding: 0.8rem 1.2rem;
  border-radius: 1rem;
  font-weight: 600;
  text-align: center;
  font-size: 1.05rem;
}
.enquiry-success-message {
  background: #00e67633;
  color: #00e676;
  border: 1.5px solid #00e676;
}
.enquiry-error-message {
  background: #b388ff33;
  color: #b388ff;
  border: 1.5px solid #b388ff;
}
@media (max-width: 600px) {
  .enquiry-modal-content {
    padding: 1.2rem 0.5rem 1rem 0.5rem;
    max-width: 98vw;
  }
  .enquiry-modal-close {
    top: 0.5rem;
    right: 0.5rem;
  }
}
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(40px);}
  100% { opacity: 1; transform: none;}
}

/* --- Wow Footer --- */

/* EasyZoom polish */
.easyzoom {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 18px 0 rgba(60, 60, 120, 0.10), 0 1.5px 0 #fff inset;
  background: #e0e7ff;
  transition: box-shadow 0.2s;
}
.easyzoom img {
  display: block;
  width: 100%;
  border-radius: 12px;
  transition: transform 0.25s cubic-bezier(.4,2,.3,1);
}
.easyzoom:hover img {
  transform: scale(1.04);
  box-shadow: 0 8px 32px 0 #03a9f422;
}
.easyzoom-flyout {
  border-radius: 12px !important;
  box-shadow: 0 8px 32px 0 #03a9f455 !important;
  border: 2px solid #03a9f4 !important;
} 
  .footer {
    background: #f1f1f1;
    color: #333;
    padding: 60px 20px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }

  .footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 30px;
  }

  .footer-section {
    flex: 1 1 250px;
  }

  .footer h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #007bff;
  }

  .footer p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 10px;
  }

  .footer i {
    color: #03a4ed;
    margin-right: 8px;
  }

  .social-links a {
    display: inline-block;
    margin-right: 12px;
    font-size: 1.1rem;
    color: #555;
    transition: color 0.3s;
  }

  .social-links a:hover {
    color: #03a4ed;
  }

  .footer-categories {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .footer-categories li {
    margin-bottom: 8px;
  }

  .footer-categories a {
    text-decoration: none;
    color: #333;
    font-size: 0.95rem;
    transition: color 0.3s;
  }

  .footer-categories a:hover {
    color: #03a4ed;
  }

  .footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    font-size: 0.9rem;
    color: #777;
  }

  @media (max-width: 768px) {
    .footer-content {
      flex-direction: column;
      gap: 30px;
    }

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

    .social-links {
      justify-content: center;
    }
  }


  .map-section {
    padding: 60px 20px;
    background: #f9f9f9;
    text-align: center;
  }

  .map-section h2 {
    font-size: 2.4rem;
    color: #1a1a1a;
    margin-bottom: 10px;
  }

  .map-section p {
    color: #555;
    font-size: 1rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

  .map-container {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
  }

  .map-container iframe {
    display: block;
    width: 100%;
    height: 500px;
    border: none;
  }

  @media (max-width: 768px) {
    .map-section h2 {
      font-size: 2rem;
    }

    .map-container iframe {
      height: 350px;
    }
  }
  a {
  text-decoration: none !important;
}

.upgraded-faq {
  padding: 80px 20px;
  background: linear-gradient(to right, #f8fbff, #ffffff);
  font-family: 'Segoe UI', sans-serif;
}

.faq-container {
  max-width: 1000px;
  margin: 0 auto;
}

.faq-heading {
  text-align: center;
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 10px;
}

.faq-subtitle {
  text-align: center;
  font-size: 1rem;
  color: #666;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.faq-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}

.faq-item {
  background: #fff;
  padding: 25px 30px;
  border-radius: 12px;
  border: 1px solid #e0e7f0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.faq-question {
  font-size: 1.2rem;
  color: #007bff;
  margin-bottom: 10px;
}

.faq-answer {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .faq-heading {
    font-size: 2rem;
  }

  .faq-subtitle {
    font-size: 0.95rem;
  }

  .faq-question {
    font-size: 1.1rem;
  }

  .faq-answer {
    font-size: 0.95rem;
  }
}
.i4ewOd-pzNkMb-tJHJj {
  display: none !important;
}
