* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #f8f5f0;
  --bg-light: #fffdf9;
  --white: #ffffff;
  --primary: #b68d5a;
  --text: #2d2d2d;
  --light-text: #2d2d2d;
  --border: #ece7de;
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  --radius: 24px;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  width: 100%;
}

p {
  color: var(--text);
}

h1,
h2,
h3,
h4 {
  font-family: 'Playfair Display', serif;
}

.container {
  width: 90%;
  max-width: 1300px;
  margin: auto;
}

section {
  padding: 50px 0;
  position: relative;
}

.topbar {
  background: var(--primary);
  color: white;
  text-align: center;
  padding: 12px;
  font-size: 14px;
  letter-spacing: 0.5px;
}

header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
}

.logo {
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  font-family: 'Playfair Display', serif;
}

.logo span {
  color: var(--primary);
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  transition: 0.3s;
}

.nav-links a:hover {
  color: var(--primary);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--text);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: white;
  z-index: 999999;
  padding: 25px 25px 40px;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
  transition: 0.4s ease;
  display: flex;
  flex-direction: column;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.mobile-menu-logo {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  font-size: 36px;
  cursor: pointer;
  color: var(--text);
  line-height: 1;
  flex-shrink: 0;
}

.mobile-nav-links {
  list-style: none;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  padding: 0;
}

.mobile-nav-links a {
  text-decoration: none;
  font-size: 20px;
  color: var(--text);
  font-weight: 500;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.35s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 10px 25px rgba(182, 141, 90, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
}

.btn-secondary {
  border: 1px solid var(--border);
  color: var(--text);
  background: white;
}

.hero {
  padding: 0;
  overflow: hidden;
  position: relative;
}

.hero-slide {
  height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-slide .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(248, 245, 240, 0.95) 0%, rgba(248, 245, 240, 0.7) 50%, rgba(248, 245, 240, 0.2) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content>div {
  width: 50%;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--primary);
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 80px;
}

.tag {
  display: inline-block;
  padding: 10px 18px;
  background: #f0e7db;
  border-radius: 100px;
  color: var(--primary);
  margin-bottom: 25px;
  font-weight: 600;
  font-size: 14px;
}

.hero h1 {
  font-size: 72px;
  line-height: 1.1;
  margin-bottom: 25px;
}

.hero p {
  font-size: 18px;
  color: var(--light-text);
  line-height: 1.8;
  margin-bottom: 35px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.hero-points div {
  background: white;
  padding: 14px 20px;
  border-radius: 100px;
  box-shadow: var(--shadow);
  font-size: 14px;
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  border-radius: 40px;
  box-shadow: var(--shadow);
  animation: float 4s ease-in-out infinite;
}

.floating-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(182, 141, 90, 0.12);
  z-index: -1;
  filter: blur(20px);
}

.shape1 {
  width: 180px;
  height: 180px;
  top: -40px;
  right: -40px;
}

.shape2 {
  width: 120px;
  height: 120px;
  bottom: -30px;
  left: -30px;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-12px);
  }

  100% {
    transform: translateY(0px);
  }
}

.stats {
  background: white;
  border-radius: 40px;
  padding: 50px;
  box-shadow: var(--shadow);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stats h2 {
  font-size: 48px;
  color: var(--primary);
  margin-bottom: 10px;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h2 {
  font-size: 54px;
  margin-bottom: 20px;
}

.section-title p {
  max-width: 700px;
  margin: auto;
  color: var(--light-text);
  line-height: 1.8;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: white;
  padding: 40px;
  border-radius: var(--radius);
  transition: 0.4s;
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
  box-shadow: var(--shadow);
}

.service-card:hover {
  transform: translateY(-12px);
  border-color: var(--primary);
  box-shadow: 0 20px 40px rgba(182, 141, 90, 0.15);
}

.service-card:hover .service-icon {
  background: var(--primary);
  color: white;
  transform: scale(1.1) rotate(5deg);
}

.service-card::before {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  background: rgba(182, 141, 90, 0.08);
  border-radius: 50%;
  top: -40px;
  right: -40px;
}

.service-icon {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  background: #f5eee4;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  font-size: 28px;
  transition: 0.4s ease;
}

.service-card h3 {
  font-size: 28px;
  margin-bottom: 18px;
}

.service-card p {
  color: var(--light-text);
  line-height: 1.8;
}

.new-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.new-service-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: 0.4s;
}

.new-service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
}

.new-service-img-wrapper {
  overflow: hidden;
}

.new-service-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: 0.5s;
  display: block;
}

.new-service-card:hover .new-service-img {
  transform: scale(1.05);
}

.new-service-content {
  padding: 35px;
}

.new-service-content h3 {
  font-size: 26px;
  margin-bottom: 15px;
}

.new-service-content p {
  color: var(--light-text);
  line-height: 1.8;
  margin: 0;
}

.gallery {
  background: var(--bg-light);
}

.before-after {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.before-after img {
  width: 100%;
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.choose-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 70px;
  align-items: center;
}

.choose-grid p {
  color: var(--text);
}

.choose-grid img {
  width: 100%;
  border-radius: 40px;
  box-shadow: var(--shadow);
}

.feature-list {
  display: grid;
  gap: 22px;
  margin-top: 35px;
}

.feature-item {
  background: white;
  padding: 24px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.feature-item span {
  color: var(--primary);
  font-size: 24px;
}

.fabric-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
}

.fabric-card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  cursor: pointer;
}

.fabric-card img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: 0.5s;
  display: block;
}

.fabric-card:hover img {
  transform: scale(1.08);
}

.fabric-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 25px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  color: white;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.timeline-step {
  background: white;
  padding: 40px;
  border-radius: 30px;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
}

.timeline-step h3 {
  font-size: 70px;
  color: rgba(182, 141, 90, 0.15);
  margin-bottom: 20px;
}

.testimonial-card {
  background: white;
  padding: 40px;
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.testimonial-card p {
  color: var(--light-text);
  line-height: 1.8;
  margin: 25px 0;
}

.stars {
  color: #f5b301;
  font-size: 18px;
}

.faq {
  max-width: 900px;
  margin: auto;
}

.faq-item {
  background: white;
  margin-bottom: 20px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.faq-question {
  padding: 28px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  padding: 0 28px 28px;
  color: var(--light-text);
  display: none;
  line-height: 1.8;
}

.cta {
  background: linear-gradient(135deg, #f8f1e7, #fffdf9);
  border-radius: 40px;
  padding: 90px;
  text-align: center;
}

.cta h2 {
  font-size: 60px;
  margin-bottom: 20px;
}

.cta p {
  max-width: 700px;
  margin: auto;
  color: var(--light-text);
  line-height: 1.8;
  margin-bottom: 35px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  align-items: center;
}

.contact-form {
  background: white;
  padding: 50px;
  border-radius: 40px;
  box-shadow: var(--shadow);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 16px;
  margin-bottom: 20px;
  font-family: inherit;
  outline: none;
}

.contact-image img {
  width: 100%;
  border-radius: 40px;
  box-shadow: var(--shadow);
}

footer {
  background: white;
  padding: 40px 0;
  text-align: center;
  border-top: 1px solid var(--border);
}

.whatsapp-float {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #25d366;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  text-decoration: none;
  z-index: 999;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  animation: pulse 2s infinite;
}

.floating-actions {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.float-call {
  width: 50px;
  height: 50px;
  background: #ff3b30;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(255, 59, 48, 0.4);
}

.float-top {
  width: 50px;
  height: 50px;
  background: #222;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

@media(max-width: 991px) {
  .float-top {
    display: none;
  }

  .floating-actions {
    bottom: 20px;
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }

  70% {
    box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 30px;
  border-radius: 20px;
  width: calc(100% - 40px);
  max-width: 500px;
  max-height: 85vh;
  overflow-y: auto;
  z-index: 9999;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.2);
  display: none;
  box-sizing: border-box;
}

.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 9998;
  display: none;
}

.popup-close {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
  font-size: 24px;
}

@media(max-width: 991px) {

  .hero-grid,
  .choose-grid,
  .contact-grid,
  .services-grid,
  .new-services-grid,
  .stats-grid,
  .timeline,
  .before-after,
  .fabric-grid {
    grid-template-columns: 1fr;
  }

  .hero h1,
  .section-title h2,
  .cta h2 {
    font-size: 42px;
  }

  .hero-content>div {
    width: 100%;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .header-btn {
    display: none !important;
  }

  .cta {
    padding: 60px 30px;
  }

  .contact-form {
    padding: 35px;
  }
}

.image-comparison-slider {
  --position: 50%;
  position: relative;
  width: 100%;
  height: 600px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 40px;
}

.comparison-before,
.comparison-after {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.comparison-before {
  clip-path: polygon(0 0, var(--position) 0, var(--position) 100%, 0 100%);
  z-index: 2;
}

.comparison-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 4;
  cursor: ew-resize;
  margin: 0;
}

.comparison-line {
  position: absolute;
  top: 0;
  left: var(--position);
  bottom: 0;
  width: 4px;
  background: white;
  z-index: 3;
  transform: translateX(-50%);
  pointer-events: none;
}

.comparison-button {
  position: absolute;
  top: 50%;
  left: var(--position);
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  pointer-events: none;
  color: var(--text);
  font-size: 16px;
}

.tag-before,
.tag-after {
  position: absolute;
  top: 20px;
  padding: 8px 24px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  color: white;
  z-index: 3;
  letter-spacing: 1px;
}

.tag-before {
  left: 20px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
}

.tag-after {
  right: 20px;
  background: #00b894;
  /* Teal color matching the screenshot */
}

@media(max-width: 991px) {
  .image-comparison-slider {
    height: 400px;
  }
}

.work-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.work-card {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  box-shadow: var(--shadow);
}

.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  /* Hides the black letterbox borders baked into the images */
  transition: transform 0.4s ease;
  display: block;
}

.work-card:hover img {
  transform: scale(1.18);
}

@media(max-width: 991px) {
  .work-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 500px) {
  .work-gallery-grid {
    grid-template-columns: 1fr;
  }
}

.process-wrapper {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 60px;
  text-align: center;
}

.process-line {
  position: absolute;
  top: 50px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: rgba(182, 141, 90, 0.2);
  z-index: 1;
}

.process-step {
  width: 22%;
  position: relative;
  z-index: 2;
}

.process-icon-box {
  width: 100px;
  height: 100px;
  background: linear-gradient(rgba(182, 141, 90, 0.1), rgba(182, 141, 90, 0.1)), var(--bg);
  border-radius: 50%;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--primary);
  position: relative;
}

.process-number {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 30px;
  height: 30px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
  border: 4px solid var(--bg);
}

.process-step h4 {
  font-size: 20px;
  margin-bottom: 12px;
}

.process-step p {
  font-size: 14px;
  color: var(--light-text);
  line-height: 1.6;
}

@media(max-width: 991px) {
  .process-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .process-line {
    display: none;
  }

  .process-step {
    width: 100%;
  }
}

.mySwiper {
  padding-bottom: 60px;
}

.swiper-pagination-bullet-active {
  background: var(--primary) !important;
}

.site-footer {
  padding: 80px 0 30px;
  background: var(--bg);
  overflow: hidden;
  text-align: left;
  /* Overriding global footer text-align */
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand p {
  color: var(--text);
  line-height: 1.8;
  max-width: 90%;
  font-weight: 500;
  opacity: 0.85;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 18px;
  margin-bottom: 25px;
  font-weight: 700;
  color: var(--text);
}

.footer-links ul,
.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 15px;
  color: var(--text);
  font-weight: 500;
  opacity: 0.85;
}

.footer-contact ul li {
  margin-bottom: 15px;
  color: var(--text);
  font-weight: 500;
  opacity: 0.85;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
}

.footer-contact ul li a {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
}

.footer-links ul li a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links ul li a:hover {
  color: var(--primary);
  opacity: 1;
}

.footer-contact ul li i {
  margin-right: 10px;
  color: var(--primary);
  width: 16px;
  text-align: center;
  opacity: 1;
}

.footer-contact ul li a {
  color: inherit;
  text-decoration: none;
  display: inline;
}

.footer-socials {
  margin-top: 20px;
  display: flex;
  gap: 15px;
}

.footer-socials a {
  color: var(--primary);
  font-size: 20px;
  transition: opacity 0.3s;
}

.footer-socials a:hover {
  opacity: 0.7;
}

.footer-massive-text {
  width: 100%;
  text-align: center;
  font-size: 15vw;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #1a1a1a;
  line-height: 0.8;
  white-space: nowrap;
  margin-bottom: 30px;
  padding: 0 20px;
}

.footer-bottom-bar {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: var(--text);
  opacity: 0.8;
  font-weight: 500;
}

.footer-bottom-bar p {
  margin: 0;
}

.footer-bottom-bar a {
  color: inherit;
  text-decoration: none;
}

@media(max-width: 991px) {
  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-brand p {
    max-width: 100%;
  }

  .footer-massive-text {
    font-size: 18vw;
  }
}

@media(max-width: 500px) {
  .footer-top-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom-bar {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .feature-list {
    margin-top: 0;
  }
}

.popup-form input,
.popup-form select,
.popup-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 12px;
  font-family: inherit;
  outline: none;
  font-size: 14px;
  transition: border-color 0.3s;
  background: var(--bg-light);
  box-sizing: border-box;
}

.popup-form input:focus,
.popup-form select:focus,
.popup-form textarea:focus {
  border-color: var(--primary);
}



/* Premium Text Reveal CSS */
.reveal-text {
  visibility: hidden;
}

.reveal-text span {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}

.reveal-text span span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 0.9s cubic-bezier(0.2, 1, 0.2, 1);
  visibility: visible;
}

.reveal-text.in-view {
  visibility: visible;
}

.reveal-text.in-view span span {
  transform: translateY(0);
}

@media(max-width: 991px) {
  .hero-slide {
    height: 65vh !important;
  }

  .hero .swiper-button-next::after,
  .hero .swiper-button-prev::after {
    font-size: 24px !important;
  }

  .choose-grid {
    gap: 20px !important;
  }

  #about .section-title h2 {
    font-size: 32px !important;
  }

  .hero-buttons .btn {
    padding: 12px 18px;
    font-size: 14px;
  }

  .hero-buttons {
    flex-wrap: nowrap;
    gap: 10px;
  }
}