* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: #fff;
}

/* header */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  padding: 1.5rem 5.5rem;
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar.scrolled {

  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.navbar-container {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-logo {
  font-size: 24px;
  font-weight: 600;
  color: #f17714;
  text-decoration: none;
  align-items: center;
}

.navbar-logo img {
  height: 50px;
  width: auto;
}

.navbar-right {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.navbar-links {
  display: flex;
  gap: 3rem;
  list-style: none;
  align-items: center;
}

.navbar-links a {
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 400;
  transition: all 0.3s ease;
  position: relative;
}

.navbar-links a:hover {
  color: #ff8c00;
}

.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #ff8c00;
  transition: width 0.3s ease;
}

.navbar-links a:hover::after {
  width: 100%;
}

.navbar-contact-btn {
  background: #ff8c00;
  color: white;
  padding: 0.9rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
}

.navbar-contact-btn:hover {
  background: #e67e00;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
}

.navbar-contact-btn svg {
  width: 20px;
  height: 20px;
}

.navbar-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.navbar-mobile-toggle span {
  width: 28px;
  height: 3px;
  background: #fff;
  transition: all 0.3s ease;
  border-radius: 3px;
}

.navbar-mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.navbar-mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.navbar-mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.page-content {
  padding-top: 90px;
}

/* Hero */
.hero {
  position: relative;
  height: 100vh;
  background: url("../image/_.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  padding-left: 100px;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  max-width: 900px;
  z-index: 2;
}

.subtitle {
  color: #e0b36c;
  font-size: 14px;
  letter-spacing: 2px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 80px;
  margin: 20px 0;
  line-height: 1.1;
}

.hero p {
  font-size: 16px;
  line-height: 1.7;
  max-width: 540px;
  opacity: 0.9;
}

.btn {
  display: inline-block;
  margin-top: 35px;
  padding: 14px 38px;
  border: 2px solid #e0b36c;
  border-radius: 50px;
  color: #e0b36c;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s ease;
}

.btn:hover {
  background: #e0b36c;
  color: #000;
}

/* about */
.about-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 5rem 2rem;
  background: white;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-content {
  position: relative;
}

.section-label {
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #c9a96e;
  margin-bottom: 1rem;
  font-weight: 600;
}

.about-content h2 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 2rem;
  color: #1a1a1a;
  font-weight: 700;
}

.about-description {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 2.5rem;
}

.features-list {
  list-style: none;
  margin-bottom: 2.5rem;
}

.features-list li {
  padding: 0.75rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 1rem;
  color: #333;
  transition: color 0.3s ease;
}

.features-list li::before {
  content: '■';
  position: absolute;
  left: 0;
  color: #c9a96e;
  font-size: 0.8rem;
}

.features-list li:hover {
  color: #c9a96e;
}

.about-cta {
  width: fit-content;
  display: inline-block;
  padding: 1rem 2.5rem;
  background: #1a1a1a;
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: 2px solid #1a1a1a;
  font-weight: 600;
}

.show {
  display: inline-block;
}

.hidden {
  display: none;
}

.about-cta:hover {
  background: transparent;
  color: #1a1a1a;
  transform: translateX(5px);
}

.about-cta::after {
  content: ' →';
  margin-left: 0.5rem;
}

.about-visual {
  position: relative;
  height: 600px;
}

.main-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 70%;
  height: 75%;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  transition: transform 0.4s ease;
}

.main-image:hover {
  transform: scale(1.02);
}

.main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.experience-badge {
  position: absolute;
  top: 40%;
  left: 0;
  background: white;
  padding: 2rem 2.5rem;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  z-index: 2;
  transition: transform 0.3s ease;
}

.experience-badge:hover {
  transform: translateY(-5px);
}

.experience-badge h3 {
  font-size: 4rem;
  color: #c9a96e;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.experience-badge p {
  font-size: 0.95rem;
  color: #333;
  font-weight: 600;
}

.material-grid {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60%;
  height: 35%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.material-item {
  overflow: hidden;
  transition: transform 0.3s ease;
}

.material-item:hover {
  transform: scale(1.05);
  z-index: 1;
}

.material-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.small-preview {
  position: absolute;
  top: 0;
  left: 0;
  width: 25%;
  height: 30%;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.small-preview:hover {
  transform: scale(1.05);
}

.small-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* services */
.services-section {
  width: 100%;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  padding: 5rem 2rem;
  margin: 0;
  overflow: hidden;
}

.services-container {
  max-width: 1350px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-label {
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #d4af37;
  margin-bottom: 1rem;
  font-weight: 600;
}

.section-header h2 {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  font-family: 'Georgia', serif;
}

.section-header p {
  color: #ccc;
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.slider-wrapper {
  position: relative;
  padding: 0 60px;
}

.services-slider {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 2rem 0;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.services-slider::-webkit-scrollbar {
  display: none;
}

.service-card {
  min-width: 380px;
  height: 450px;
  flex-shrink: 0;
  scroll-snap-align: start;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 2rem;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.75) 0%, rgba(45, 45, 45, 0.75) 100%);
  z-index: 1;
}

.service-card:hover {
  transform: scale(1.02);
}

.service-card:hover::before {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.8) 0%, rgba(255, 196, 153, 0.8) 100%);
}

.service-content {
  position: relative;
  z-index: 2;
}

.service-number {
  font-size: 5rem;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 700;
  font-family: 'Georgia', serif;
  line-height: 1;
  margin-bottom: 1rem;
}

.service-icon {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.service-icon svg {
  width: 35px;
  height: 35px;
  fill: white;
}

.service-content h3 {
  font-size: 1.8rem;
  color: white;
  margin-bottom: 1rem;
  font-weight: 600;
}

.service-content p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  max-width: 300px;
  margin: 0 auto;
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
}

.slider-btn {
  width: 50px;
  height: 50px;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-btn:hover {
  background: #d4af37;
  border-color: #d4af37;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 2rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: #d4af37;
  width: 30px;
  border-radius: 5px;
}

.services-section {
  
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
  color: white;
}

.section-label {
  font-size: 0.85rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #ff6b35;
  margin-bottom: 1rem;
  font-weight: 600;
}

.section-header h2 {
  font-size: 3.5rem;
  font-weight: 600;
  font-family: 'Georgia', serif;
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.scroll-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 55px;
  height: 55px;
  background: #ff6b35;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
  z-index: 100;
}

.scroll-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.6);
  background: #e55a28;
}

.scroll-to-top::before {
  content: '↑';
  color: white;
  font-size: 1.6rem;
  font-weight: bold;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background: white;
  padding: 3.5rem 2.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #ff6b35, #c17a3a);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.icon-wrapper {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #fff5f0 0%, #ffe8dc 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  position: relative;
  transition: all 0.4s ease;
}

.service-card:hover .icon-wrapper {
  transform: scale(1.1) rotate(10deg);
  background: linear-gradient(135deg, #ff6b35 0%, #c17a3a 100%);
}

.service-icon {
  width: 45px;
  height: 45px;
  transition: all 0.4s ease;
}

.service-card:hover .service-icon {
  filter: brightness(0) invert(1);
}

.service-card h3 {
  font-size: 1.6rem;
  color: #1a1a1a;
  margin-bottom: 1rem;
  font-weight: 600;
  transition: color 0.3s ease;
}

.service-card:hover h3 {
  color: #ff6b35;
}

.service-card p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #666;
}

.service-number {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 3rem;
  font-weight: 700;
  color: #f5f5f5;
  font-family: 'Georgia', serif;
  transition: color 0.3s ease;
}

.service-card:hover .service-number {
  color: #ffe8dc;
}

/* Icons using CSS */
.icon-design {
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23c17a3a"><path d="M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM20.71 7.04c.39-.39.39-1.02 0-1.41l-2.34-2.34c-.39-.39-1.02-.39-1.41 0l-1.83 1.83 3.75 3.75 1.83-1.83z"/></svg>') no-repeat center;
  background-size: contain;
}

.icon-kitchen {
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23c17a3a"><path d="M10 20v-6h4v6h5v-8h3L12 3 2 12h3v8z"/></svg>') no-repeat center;
  background-size: contain;
}

.icon-team {
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23c17a3a"><path d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"/><path d="M19 13h-2v-2h-2v2h-2v2h2v2h2v-2h2z"/></svg>') no-repeat center;
  background-size: contain;
}

.icon-trusted {
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23c17a3a"><path d="M1 21h22L12 2 1 21zm12-3h-2v-2h2v2zm0-4h-2v-4h2v4z"/></svg>') no-repeat center;
  background-size: contain;
}

.icon-cost {
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23c17a3a"><path d="M11.8 10.9c-2.27-.59-3-1.2-3-2.15 0-1.09 1.01-1.85 2.7-1.85 1.78 0 2.44.85 2.5 2.1h2.21c-.07-1.72-1.12-3.3-3.21-3.81V3h-3v2.16c-1.94.42-3.5 1.68-3.5 3.61 0 2.31 1.91 3.46 4.7 4.13 2.5.6 3 1.48 3 2.41 0 .69-.49 1.79-2.7 1.79-2.06 0-2.87-.92-2.98-2.1h-2.2c.12 2.19 1.76 3.42 3.68 3.83V21h3v-2.15c1.95-.37 3.5-1.5 3.5-3.55 0-2.84-2.43-3.81-4.7-4.4z"/></svg>') no-repeat center;
  background-size: contain;
}

.icon-award {
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23c17a3a"><path d="M19 5h-2V3H7v2H5c-1.1 0-2 .9-2 2v1c0 2.55 1.92 4.63 4.39 4.94.63 1.5 1.98 2.63 3.61 2.96V19H7v2h10v-2h-4v-3.1c1.63-.33 2.98-1.46 3.61-2.96C19.08 12.63 21 10.55 21 8V7c0-1.1-.9-2-2-2zM5 8V7h2v3.82C5.84 10.4 5 9.3 5 8zm14 0c0 1.3-.84 2.4-2 2.82V7h2v1z"/></svg>') no-repeat center;
  background-size: contain;
}

.areas-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 2rem;
  text-align: center;
}

.section-header {
  margin-bottom: 4rem;
}

.section-subtitle {
  color: #ff6b35;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.section-subtitle::before,
.section-subtitle::after {
  content: '';
  width: 60px;
  height: 3px;
  background: #ff6b35;
}

.section-title {
  font-size: 2.8rem;
  color: navajowhite;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.area-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  position: relative;
}

.area-card::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 250px;
  height: 250px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><path d="M20,80 Q40,20 80,40 Q120,60 140,30 Q160,10 180,50 Q190,80 170,100 Q140,130 120,140 Q90,150 60,130 Q30,110 20,80 Z" fill="%234CAF50" opacity="0.15"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.area-card:hover::before {
  opacity: 1;
}

.area-card:nth-child(1) {
  position: relative;
}

.area-card:nth-child(1)::after {
  content: '';
  position: absolute;
  top: -80px;
  left: -120px;
  width: 300px;
  height: 300px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300"><path d="M50,150 Q80,50 150,80 Q220,110 250,70 Q280,30 290,100 Q300,150 260,200 Q220,250 150,240 Q80,230 40,180 Q20,140 50,150 Z" fill="%234CAF50" opacity="0.1"/></svg>') no-repeat;
  background-size: contain;
  z-index: -1;
  pointer-events: none;
}

.area-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.area-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.area-card:hover .area-image {
  transform: scale(1.1);
}

.area-image-container {
  overflow: hidden;
  position: relative;
}

.area-content {
  padding: 2rem 1.5rem;
  position: relative;
  z-index: 2;
}

.area-title {
  font-size: 1.5rem;
  color: #0066cc;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.3;
}

.area-description {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.7;
}

/* Why Choose Us Section */
.why-choose-us {
padding: 4rem 2rem;
  background: #f9fafb;
}

.why-container {
  max-width: 1200px;
  margin: 0 auto;
}

.why-header {
  text-align: center;
  margin-bottom: 3rem;
}

.why-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.why-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  align-items: center;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-card {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  fill: white;
}

.feature-icon-1 { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
.feature-icon-2 { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); }
.feature-icon-3 { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }
.feature-icon-4 { background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%); }

.feature-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.feature-content p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}

.why-image {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.why-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Before After Section */
.before-after-section {
  padding: 5rem 2rem;
  background: #292929;
  color: white;
}

.ba-container {
  height: 70vh;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.ba-content-left {
  padding-right: 2rem;
}

.ba-label {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #ff6b35;
  margin-bottom: 1rem;
  font-weight: 600;
}

.ba-content-left h2 {
  font-size: 3.8rem;
  font-weight: 700;
  margin-bottom: 2rem;
  line-height: 1.2;
  font-family: Georgia, serif;
}

.ba-content-left h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.ba-content-left p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.ba-cta-button {
  display: inline-block;
  padding: 0.875rem 2rem;
  background: transparent;
  color: #e0b36c;
  text-decoration: none;
  border: 2px solid #ff6b35;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.ba-cta-button:hover {
  background: #4facfe;
  color: white;
  transform: translateY(-2px);
}

.ba-images-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.ba-slider-wrapper {
  position: relative;
  width: 100%;
  height: 500px;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.ba-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ba-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ba-after {
  clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
  transition: clip-path 0.3s ease;
}

.ba-slider {
  position: absolute;
  top: 0;
  left: 50%;
  width: 3px;
  height: 100%;
  background: white;
  transform: translateX(-50%);
  z-index: 10;
  transition: left 0.3s ease;
}

.ba-slider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.ba-slider::after {
  content: '⟷';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 24px;
  color: #1a1a1a;
  font-weight: bold;
  z-index: 1;
}

.ba-label-tag {
  position: absolute;
  bottom: 1.5rem;
  padding: 0.5rem 1rem;
  background: rgba(0,0,0,0.7);
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  z-index: 5;
}

.ba-label-before { left: 1.5rem; }
.ba-label-after { right: 1.5rem; }

.cta-section {
  background-color: #ffffff;
  padding: 120px 20px;
  border-top: 1px solid #eee;
}

.cta-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.cta-title {
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 800;
  color: #111;
  margin-bottom: 30px;
  line-height: 1.1;
}

.cta-text {
  max-width: 600px;
  margin: 0 auto 50px;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
}

.cta-button {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background-color: #111;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 2px;
  transition: all 0.3s ease;
  margin-bottom: 10px;
}


.cta-button:hover {
  background-color: #333;
  transform: translateY(-2px);
}

/* footer */
.footer {
  background: #2d2420;
  padding: 5rem 2rem 2rem;
  position: relative;
}

.footer-content {
  max-width: 1300px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 2rem;
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.footer-logo {
  width: 40px;
  height: 40px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23c9a96e"><path d="M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM9 17H7v-7h2v7zm4 0h-2V7h2v10zm4 0h-2v-4h2v4z"/></svg>') no-repeat center;
  background-size: contain;
  flex-shrink: 0;
}

.footer-brand-content h2 {
  font-size: 1.8rem;
  color: white;
  margin-bottom: 1rem;
  font-weight: 400;
}

.footer-brand-content p {
  color: #a0a0a0;
  line-height: 1.7;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.newsletter-form {
  position: relative;
  margin-top: 1.5rem;
}

.newsletter-form input {
  width: 100%;
  padding: 1rem 3.5rem 1rem 1rem;
  background: white;
  border: none;
  color: #333;
  font-size: 0.9rem;
}

.newsletter-form input::placeholder {
  color: #999;
}

.newsletter-form input:focus {
  outline: none;
}

.newetter-form button {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: #c9a96e;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0.5rem;
}

.newsletter-form button:hover {
  transform: translateY(-50%) translateX(3px);
}

.footer-column h3 {
  font-size: 1rem;
  color: white;
  margin-bottom: 2rem;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-column h3::before {
  content: '';
  width: 12px;
  height: 12px;
  background: #c9a96e;
  display: block;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 1rem;
  position: relative;
}

.footer-links li a {
  color: #a0a0a0;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 300;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links li a:hover {
  color: white;
  transform: translateX(5px);
}

.contact-info {
  list-style: none;
}

.contact-item {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.contact-icon svg {
  width: 100%;
  height: 100%;
  fill: #c9a96e;
}

.contact-item p,
.contact-item a {
  color: #a0a0a0;
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.6;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a0a0a0;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #c9a96e;
  border-color: #c9a96e;
  color: white;
}

.footer-copyright {
  color: #a0a0a0;
  font-size: 0.85rem;
  font-weight: 300;
}

.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: #c9a96e;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.2rem;
  z-index: 100;
  text-decoration: none;
}

.back-to-top:hover {
  background: #b8945d;
  transform: translateY(-3px);
}

/* ========================================
   RESPONSIVE MEDIA QUERIES ONLY
   Add these at the END of your style.css file
======================================== */

/* Large Tablets and Laptops (1200px) */
@media (max-width: 1200px) {
  .nav-container {
    margin: 0 2rem;
  }

  .hero {
    padding-left: 50px;
  }

  .hero h1 {
    font-size: 65px;
  }

  .about-container,
  .ba-container {
    gap: 3rem;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablets (1024px) */
@media (max-width: 1024px) {
  .nav-container {
    margin: 0 1.5rem;
  }

  .nav-links {
    gap: 2rem;
  }

  .hero {
    padding-left: 40px;
  }

  .hero h1 {
    font-size: 55px;
  }

  .about-container {
    grid-template-columns: 1fr;
  }

  .about-visual {
    height: 500px;
    max-width: 600px;
    margin: 0 auto;
  }

  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-content {
    grid-template-columns: 1fr;
  }

  .why-image {
    order: -1;
  }

  .ba-container {
    grid-template-columns: 1fr;
    height: auto;
  }

  .ba-content-left {
    padding-right: 0;
  }

  .ba-images-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .ba-slider-wrapper {
    height: 350px;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile and Small Tablets (900px) */
@media (max-width: 900px) {
  .navbar{
    /* background-color: #000; */
  }
  .nav-links,
  .cta-buttons {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 999;
  }

  .nav-links.active,
  .cta-buttons.active {
    transform: translateX(0);
  }

  .navbar-right.active{
    background-color: #000;
  }

  .cta-buttons {
    top: auto;
    bottom: 0;
    padding: 1.5rem 2rem;
    background: rgba(0, 0, 0, 0.98);
  }

  .nav-links a {
    color: white !important;
    font-size: 1.1rem;
  }

  .call-btn {
    color: white !important;
  }

  .mobile-toggle {
    display: flex;
  }

  .mobile-toggle span {
    background: #fff;
  }

  nav.scrolled .mobile-toggle span {
    background: #0066cc;
  }

  .hero {
    padding-left: 30px;
    padding-right: 30px;
  }

  .hero h1 {
    font-size: 45px;
  }

  .about-section {
    padding: 3rem 1.5rem;
  }

  .about-content h2 {
    font-size: 2.2rem;
  }

  .about-visual {
    height: 450px;
  }

  .main-image {
    width: 75%;
    height: 70%;
  }

  .experience-badge {
    padding: 1.5rem 2rem;
    top: 35%;
  }

  .experience-badge h3 {
    font-size: 3rem;
  }

  .small-preview {
    width: 30%;
    height: 25%;
  }

  .services-section {
    padding: 4rem 1rem;
  }

  .section-header h2 {
    font-size: 2.5rem;
  }

  .slider-wrapper {
    padding: 0 30px;
  }

  .service-card {
    min-width: 300px;
    height: 400px;
  }

  .areas-section {
    padding: 4rem 1.5rem;
  }

  .areas-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .why-choose-us {
    padding: 4rem 1.5rem;
  }

  .why-header h2 {
    font-size: 2rem;
  }

  .before-after-section {
    padding: 4rem 1.5rem;
  }

  .ba-content-left h2 {
    font-size: 2.5rem;
  }

  .ba-content-left h3 {
    font-size: 1.2rem;
  }

  .ba-images-container {
    grid-template-columns: 1fr;
  }

  .ba-slider-wrapper {
    height: 300px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .cta-section {
    padding: 80px 20px;
  }

  .cta-title {
    font-size: 3rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-bottom {
    flex-direction: column-reverse;
    gap: 2rem;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }
}

/* Mobile (768px) */
@media (max-width: 768px) {
  .hero {
    height: 80vh;
    padding: 0 20px;
    /* align-items: flex-end; */
    padding-bottom: 3rem;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero p {
    font-size: 15px;
  }

  .about-visual {
    height: 400px;
  }
  .small-preview {
    position: relative;
    top: 2;
    
  }

  .main-image {
    position: relative;
    width: 80%;
    height: 65%;
    margin: 10px 10px 10px 40px;
  }

  .experience-badge {
    font-size: 2.5rem;
    margin-top: 80px ;
  }

  .experience-badge h3 {
    font-size: 2.5rem;
  }

  .service-card {
    min-width: 280px;
    height: 380px;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .area-image {
    height: 200px;
  }

  .why-image {
    min-height: 300px;
  }

  .ba-slider-wrapper {
    height: 280px;
  }

  .cta-title {
    font-size: 2.5rem;
  }

  .back-to-top {
    width: 45px;
    height: 45px;
    bottom: 1.5rem;
    right: 1.5rem;
  }
}

/* Small Mobile (480px) */
@media (max-width: 480px) {
  .navbar {
    padding: 2rem 1.5rem;
  }

  .navbar-logo img {
    height: 40px;
  }

  .navbar-right {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  /* background: rgba(216, 193, 78, 0.98); */
  backdrop-filter: blur(10px);
  flex-direction: column;
  padding: 2rem;
  gap: 2rem;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  }

  .navbar-right.active {
    transform: translateX(0);
  }

  .navbar-links {
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
  }

  .navbar-links li {
    width: 100%;
    text-align: center;
  }

  .navbar-links a {
    font-size: 1.3rem;
  }

  .navbar-contact-btn {
    width: 100%;
    justify-content: center;
    font-size: 1.2rem;
  }

  .navbar-mobile-toggle {
    display: flex;
  }

  .hero {
    height: 80vh;
    min-height: 500px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 14px;
  }

  .btn {
    padding: 12px 28px;
    font-size: 13px;
  }
  
  .show{
    display: none;
  }

  .hidden{
    display: block;
  }

  .about-section,
  .services-section,
  .areas-section,
  .why-choose-us,
  .before-after-section,
  .cta-section {
    padding: 3rem 1rem;
  }

  .about-visual {
    height: 350px;
  }

  .experience-badge {
    padding: 1rem 1.5rem;
  }

  .experience-badge h3 {
    font-size: 2rem;
  }

  .section-header h2 {
    font-size: 1.75rem;
  }

  .slider-wrapper {
    padding: 0 20px;
  }

  .service-card {
    min-width: 260px;
    height: 360px;
    padding: 2rem 1.5rem;
  }

  .service-number {
    font-size: 4rem;
  }

  .service-icon {
    width: 60px;
    height: 60px;
  }

  .service-icon svg {
    width: 30px;
    height: 30px;
  }

  .service-content h3 {
    font-size: 1.5rem;
  }

  .service-content p {
    font-size: 0.9rem;
  }

  .slider-btn {
    width: 40px;
    height: 40px;
  }

  .section-subtitle {
    font-size: 0.75rem;
  }

  .section-subtitle::before,
  .section-subtitle::after {
    width: 30px;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .area-title {
    font-size: 1.2rem;
  }

  .area-description {
    font-size: 0.875rem;
  }

  .feature-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .ba-content-left h2 {
    font-size: 2rem;
  }

  .ba-content-left h3 {
    font-size: 1rem;
  }

  .ba-content-left p {
    font-size: 0.95rem;
  }

  .ba-slider-wrapper {
    height: 250px;
  }

  .ba-slider::before {
    width: 48px;
    height: 48px;
  }

  .ba-label-tag {
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
  }

  .cta-title {
    font-size: 2rem;
  }

  .cta-text {
    font-size: 1rem;
  }

  .footer {
    padding: 3rem 1rem 1.5rem;
  }

  .footer-brand-content h2 {
    font-size: 1.5rem;
  }

  .footer-brand-content p {
    font-size: 0.85rem;
  }

  .footer-column h3 {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }
}

/* Extra Small Mobile (360px) */
@media (max-width: 360px) {
  .hero h1 {
    font-size: 28px;
  }

  .service-card {
    min-width: 240px;
    height: 340px;
  }

  .ba-slider-wrapper {
    height: 220px;
  }

  .area-image {
    height: 180px;
  }
}

/* Landscape Orientation */
@media (max-height: 600px) and (orientation: landscape) {
  .hero {
    height: 100vh;
    align-items: center;
  }

  .nav-links,
  .cta-buttons {
    height: calc(100vh - 70px);
    overflow-y: auto;
  }
}