* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Roboto, system-ui, sans-serif;
}

body {
  background-color: #0a0a0a;
  color: #e0e0e0;
  line-height: 1.5;
}

/* ----- STICKY HEADER ----- */
.sticky-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 20px rgba(207, 175, 124, 0.15);
  padding: 0.8rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  border-bottom: 1px solid #CFAF7C;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-image-placeholder {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(207, 175, 124, 0.3);
  border: 1px solid #CFAF7C;
}

.logo-image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logo-text {
  font-weight: 700;
  font-size: 1.8rem;
  letter-spacing: 1px;
  color: #CFAF7C;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}



.call-btn-header {
  background-color: #CFAF7C;
  color: #0a0a0a;
  border: none;
  padding: 12px 28px;
  border-radius: 40px;
  font-size: 1.2rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 12px rgba(207, 175, 124, 0.3);
  transition: all 0.3s ease;
  cursor: pointer;
}

.call-btn-header i {
  color: #0a0a0a;
}

.call-btn-header:hover {
  background-color: #dbbca1;
  transform: scale(1.02);
  box-shadow: 0 6px 16px rgba(207, 175, 124, 0.5);
}

/* ----- main content ----- */
.page-content {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px 100px;
}

/* ----- sections ----- */


.section-title {
  font-size: 2.5rem;
  font-weight: 400;
  color: #CFAF7C;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  text-transform: capitalize;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.section-title:after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: #CFAF7C;
  margin: 16px auto 0;
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(207, 175, 124, 0.5);
}

/* ----- HERO SECTION ----- */
.hero {
  margin-top: 20px;
  margin-bottom: 60px;
}

.hero-container {
  display: flex;
  align-items: center;
  gap: 50px;
  background: linear-gradient(135deg, #000000 0%, #0a0a0a 100%);
  border-radius: 50px;
  padding: 50px;
  
}

.hero-content {
  flex: 1;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 500;
  color: #CFAF7C;
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
  margin-top: 50px;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: #e0e0e0;
  margin-bottom: 30px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 20px;
}

.hero-btn {
  padding: 9px 15px;
  border-radius: 50px;
  font-size: 1.3rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.hero-btn.primary {
  background-color: #CFAF7C;
  color: #0a0a0a;
  box-shadow: 0 4px 15px rgba(207, 175, 124, 0.3);
}

.hero-btn.primary:hover {
  background-color: #dbbca1;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(207, 175, 124, 0.5);
}

.hero-btn.secondary {
  background-color: #CFAF7C;
  color: #000000;
  border: 2px solid #000000;
}

.hero-btn.secondary:hover {
  background-color: #CFAF7C;
  color: #0a0a0a;
  transform: translateY(-3px);
}

.hero-image {
  flex: 1;
  height: 350px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 30px rgba(207, 175, 124, 0.2);
  border: 1px solid #CFAF7C;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.hero-image:hover .hero-img {
  transform: scale(1.05);
}

/* ----- about section ----- */
.about-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  align-items: center;
  background: #1a1a1a;
  border-radius: 40px;
  padding: 50px;
  border: 1px solid #CFAF7C;
  box-shadow: 0 10px 30px rgba(207, 175, 124, 0.1);
}

.about-text {
  flex: 1 1 400px;
}

.about-text h3 {
  font-size: 2.2rem;
  font-weight: 400;
  color: #CFAF7C;
  margin-bottom: 25px;
}

.about-text p {
  font-size: 1.1rem;
  color: #e0e0e0;
  margin-bottom: 20px;
  line-height: 1.6;
}

.about-highlight {
  background: transparent;
  color: #CFAF7C;
  padding: 10px 25px;
  border-radius: 60px;
  font-weight: 600;
  margin-top: 15px;
  border: 2px solid #CFAF7C;
}

.about-highlight i {
  margin-right: 8px;
}

.about-img {
  flex: 1 1 400px;
  height: 400px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 30px rgba(207, 175, 124, 0.2);
  border: 1px solid #CFAF7C;
}

.about-img-src {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ----- services section ----- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.service-card {
  background: #1a1a1a;
  border-radius: 30px;
  padding: 25px 25px 30px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(207, 175, 124, 0.1);
  transition: transform 0.3s ease;
  border: 1px solid #CFAF7C;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(207, 175, 124, 0.2);
  border-color: #dbbca1;
}

.service-image-placeholder {
  width: 100%;
  height: 200px;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 20px;
  border: 1px solid #CFAF7C;
}

.service-image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-image-placeholder img {
  transform: scale(1.1);
}

.service-icon {
  font-size: 2.5rem;
  color: #CFAF7C;
  margin: 10px 0;
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 12px;
  color: #CFAF7C;
}

.service-card p {
  color: #e0e0e0;
  margin-bottom: 15px;
  line-height: 1.5;
}

.price-tag {
  font-size: 1.3rem;
  font-weight: 600;
  color: #CFAF7C;
}

/* ----- why choose us ----- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  text-align: center;
          margin-bottom: 50px;
}

.why-item {
  background: #1a1a1a;
  border-radius: 30px;
  padding: 30px 20px;
  transition: all 0.3s ease;
  border: 1px solid #CFAF7C;
}

.why-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(207, 175, 124, 0.2);
  border-color: #dbbca1;
}

.why-image-placeholder {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 15px;
  border: 3px solid #CFAF7C;
}

.why-image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-item i {
  font-size: 2rem;
  color: #CFAF7C;
  margin: 10px 0;
}

.why-item h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #CFAF7C;
  margin-bottom: 10px;
}

.why-item p {
  color: #e0e0e0;
  line-height: 1.5;
}

/* ----- gallery section ----- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 25px;
          margin-bottom: 50px;
}

.gallery-item {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(207, 175, 124, 0.15);
  aspect-ratio: 4/3;
  cursor: pointer;
  border: 1px solid #CFAF7C;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.9), transparent);
  color: #CFAF7C;
  padding: 20px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay span {
  font-size: 1.2rem;
  font-weight: 500;
  display: block;
  text-align: center;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* ----- reviews section ----- */
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.review-card {
  background: #1a1a1a;
  padding: 30px 25px;
  border-radius: 30px;
  box-shadow: 0 10px 25px rgba(207, 175, 124, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
  border: 1px solid #CFAF7C;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(207, 175, 124, 0.2);
}

.customer-image-placeholder {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 15px;
  border: 3px solid #CFAF7C;
}

.customer-image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stars {
  color: #CFAF7C;
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.stars i {
  margin: 0 2px;
}

.review-text {
  font-size: 1rem;
  font-style: italic;
  color: #e0e0e0;
  margin-bottom: 15px;
  line-height: 1.6;
}

.customer {
  font-weight: 600;
  color: #CFAF7C;
  font-size: 1.1rem;
}

/* ----- map & address section ----- */
.map-section {
  background: #1a1a1a;
  border-radius: 40px;
  padding: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  border: 1px solid #CFAF7C;
  box-shadow: 0 10px 30px rgba(207, 175, 124, 0.1);
}

.map-col {
  flex: 2 1 500px;
  min-height: 350px;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  border: 1px solid #CFAF7C;
}

.map-image-placeholder {
  width: 100%;
  height: 100%;
  position: relative;
}

.map-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(10, 10, 10, 0.95);
  padding: 12px 25px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: #CFAF7C;
  box-shadow: 0 4px 15px rgba(207, 175, 124, 0.2);
  border: 1px solid #CFAF7C;
}

.map-overlay i {
  font-size: 1.3rem;
  color: #CFAF7C;
}

.address-col {
  flex: 1 1 300px;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(4px);
  border-radius: 30px;
  padding: 30px;
  border: 1px solid #CFAF7C;
}

.address-col strong {
  color: #CFAF7C;
  font-size: 1.4rem;
  font-weight: 600;
  display: block;
  margin-bottom: 20px;
}

.address-col strong i {
  margin-right: 10px;
  color: #CFAF7C;
}

.address-col p {
  margin: 15px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: #e0e0e0;
}

.address-col i {
  color: #CFAF7C;
  width: 25px;
  font-size: 1.1rem;
}

.studio-image-placeholder {
  width: 100%;
  height: 150px;
  border-radius: 20px;
  overflow: hidden;
  margin: 20px 0;
  box-shadow: 0 5px 15px rgba(207, 175, 124, 0.2);
  border: 1px solid #CFAF7C;
}

.studio-image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.studio-image-placeholder:hover img {
  transform: scale(1.05);
}

/* ----- sticky bottom buttons ----- */
.sticky-bottom-buttons {
  position: fixed; 
      bottom: 0; 
      left: 0; 
      width: 100%; 
      background: #000000; 
      padding: 10px;
      display: flex; 
      gap: 10px; 
      z-index: 9999; 
      border-top: 2px solid var(--gold-main);
      transform: translateZ(0);
}

.bottom-btn {
  flex: 1; 
  padding: 12px; 
  border-radius: 5px; 
  text-align: center; 
  font-weight: bold; 
  display: flex; 
  justify-content: center; 
  align-items: center; 
  gap: 8px; 
  transition: background 0.3s, color 0.3s, transform 0.2s;
}

.bottom-btn.call-bottom {
  background: #fc4529;
}

.bottom-btn.wa-bottom {
  background: #78e92c;
}

.bottom-btn i {
  color: #0a0a0a;
}

.bottom-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(207, 175, 124, 0.5);
  background: #e7a44c;
}

/* ----- footer ----- */
.footer-note {
  text-align: center;
  font-size: 0.9rem;
  padding: 30px 0;
  color: #CFAF7C;
  max-width: 1300px;
  margin: 0 auto;
}

/* ----- responsive design ----- */
@media (max-width: 768px) {
  .sticky-header {
    padding: 0.7rem 1rem;
  }
  
  .logo-text {
    font-size: 1.2rem;
  }
  
  .logo-text span {
    font-size: 0.8rem;
  }
  
  .call-btn-header {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .hero-container {
    flex-direction: column;
    padding: 30px;
  }
  
  .hero-title {
    font-size: 2.5rem;
    text-align: center;

  }
  
  .hero-subtitle {
    text-align: center;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-image {
    width: 100%;
    height: 300px;
  }

  
  .about-wrap {
    flex-direction: column;
    padding: 30px;
    margin-bottom: 50px;
  }
  
  .about-text h3 {
    font-size: 1.8rem;
    text-align: center;
  }
  
  .about-text p {
    text-align: center;
  }
  
  .about-highlight {
    display: block;
    text-align: center;
  }
  
  .about-img {
    width: 100%;
    height: 300px;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  
  .map-section {
    flex-direction: column;
    padding: 30px;
  }
  
  .map-overlay {
    font-size: 0.9rem;
    padding: 8px 15px;
  }
  
  .sticky-bottom-buttons {
    flex-direction: row;
    gap: 10px;
    padding: 15px;
  }
  
}

@media (max-width: 480px) {
  .logo-image-placeholder {
    width: 40px;
    height: 40px;
  }
  
  .logo-text {
    font-size: 1.4rem;
  }
  
  .logo-text span {
    font-size: 0.7rem;
  }
  
  .call-btn-header {
    padding: 6px 12px;
    font-size: 0.8rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .hero-title {
    font-size: 2rem;

  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }
  
  .hero-btn {
    text-align: center;
  }
  
  .about-text h3 {
    font-size: 1.5rem;
  }
  
  .about-text p {
    font-size: 1rem;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}