/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #ffffff;
  color: #1e2a2a;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ============================================
   ANIMATIONS & GLOBAL UTILITIES
   ============================================ */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(25px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up {
  animation: fadeUp 0.9s cubic-bezier(0.2, 0.9, 0.4, 1.1) forwards;
}

.gold-text {
  background: linear-gradient(135deg, #c7a252 0%, #e4bc7c 40%, #b88644 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #1e2f1c;
  color: white;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 48px;
  text-decoration: none;
  transition: all 0.4s ease;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
}

.btn-primary {
  background: linear-gradient(105deg, #b87a3a, #9b5a2a);
  box-shadow: 0 12px 22px -8px rgba(155, 90, 42, 0.3);
}

.btn-primary:hover {
  transform: translateY(-4px);
  background: linear-gradient(105deg, #c88a48, #ac6732);
  box-shadow: 0 20px 28px -10px rgba(155, 90, 42, 0.4);
}

.btn-outline-gold {
  background: transparent;
  border: 1.5px solid #c8a156;
  color: #c8a156;
}

.btn-outline-gold:hover {
  background: #c8a156;
  color: #1a2a18;
  border-color: #c8a156;
}

.btn-small {
  padding: 8px 24px;
  font-size: 0.8rem;
}

.btn-gold {
  background: #c8a156;
  color: #1f2a1c;
  font-weight: bold;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  padding: 20px 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(200, 170, 110, 0.25);
  transition: all 0.3s;
}

.navbar .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.logo span {
  background: linear-gradient(125deg, #aa7a3c, #e9c48b);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  text-decoration: none;
  color: #2c3a2b;
  font-weight: 500;
  margin: 0 12px;
  transition: 0.25s;
  position: relative;
}

.nav-links a:after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0%;
  height: 2px;
  background: #c8a156;
  transition: 0.3s;
}

.nav-links a:hover:after,
.nav-links a.active:after {
  width: 100%;
}

.nav-links a.active {
  color: #c8a156;
}

.get-quote-btn {
  background: #c8a156;
  color: #1e2a1e;
  padding: 8px 20px;
  border-radius: 40px;
  font-weight: 600;
  margin-left: 15px;
}

.get-quote-btn:hover {
  background: #b88a3a;
  color: white;
}

/* ============================================
   PAGE HEADER & BREADCRUMB
   ============================================ */
.page-header {
  background: radial-gradient(circle at 30% 20%, rgba(255, 245, 230, 0.9), #fffcf7);
  padding: 80px 0 60px;
  text-align: center;
}

.page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.breadcrumb {
  color: #8a7a64;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.breadcrumb a {
  color: #9b673b;
  text-decoration: none;
}

/* ============================================
   SERVICE CARDS (STANDARD)
   ============================================ */
.services-section {
  padding: 80px 0;
}

.service-card {
  display: flex;
  flex-wrap: wrap;
  background: #ffffff;
  border-radius: 40px;
  margin-bottom: 50px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  border: 1px solid #efe2d0;
  transition: all 0.4s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 40px -15px rgba(0, 0, 0, 0.12);
  border-color: #dcb67a;
}

.service-image {
  flex: 0.9;
  min-height: 320px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

.service-content {
  flex: 1.2;
  padding: 48px 44px;
}

.service-icon {
  font-size: 2.5rem;
  color: #bc8542;
  margin-bottom: 16px;
}

.service-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: #2c3a2b;
}

.service-description {
  color: #5a6a52;
  line-height: 1.6;
  margin-bottom: 24px;
  font-size: 1rem;
}

.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 24px 0;
}

.feature-tag {
  background: #faf2e6;
  padding: 6px 16px;
  border-radius: 40px;
  font-size: 0.8rem;
  font-weight: 500;
  color: #9b673b;
}

.service-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid #f0e6dc;
}

.price-badge {
  font-size: 1.6rem;
  font-weight: 700;
  color: #c8a156;
}

.price-badge small {
  font-size: 0.9rem;
  font-weight: 400;
  color: #8a7a64;
}

/* ============================================
   PRICING SECTION (TOGGLE & CARDS)
   ============================================ */
.pricing-toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.toggle-label {
  font-weight: 500;
  color: #5a6a52;
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 30px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #e0d4c4;
  transition: 0.4s;
  border-radius: 30px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 24px;
  width: 24px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #c8a156;
}

input:checked + .slider:before {
  transform: translateX(30px);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin: 50px 0;
}

.pricing-card {
  background: #ffffff;
  border-radius: 40px;
  padding: 40px 32px;
  transition: all 0.4s ease;
  border: 1px solid #efe2d0;
  position: relative;
  overflow: hidden;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 40px -20px rgba(0, 0, 0, 0.15);
  border-color: #dcb67a;
}

.popular-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(105deg, #c8a156, #b88a3a);
  color: white;
  padding: 5px 15px;
  border-radius: 30px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.card-icon {
  font-size: 2.8rem;
  color: #bc8542;
  margin-bottom: 20px;
}

.pricing-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.price {
  font-size: 2.8rem;
  font-weight: 700;
  color: #c8a156;
  margin: 20px 0 8px;
}

.price small {
  font-size: 1rem;
  font-weight: 400;
  color: #8a7a64;
}

.price-period {
  color: #8a7a64;
  font-size: 0.85rem;
  margin-bottom: 24px;
}

.features-list {
  list-style: none;
  margin: 30px 0;
}

.features-list li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid #f0e6dc;
  font-size: 0.9rem;
  color: #4a5a42;
}

.features-list li i {
  color: #c8a156;
  width: 20px;
}

.card-footer {
  margin-top: 30px;
  text-align: center;
}

.service-pricing-section {
  background: #fef9f2;
  padding: 80px 0;
}

.service-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 50px;
}

.service-price-card {
  background: white;
  border-radius: 28px;
  padding: 28px;
  text-align: center;
  transition: 0.3s;
  border: 1px solid #efe2d0;
}

.service-price-card:hover {
  transform: translateY(-5px);
  border-color: #dcb67a;
}

.service-price-card i {
  font-size: 2rem;
  color: #bc8542;
  margin-bottom: 15px;
}

.service-price-card h4 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.service-price {
  font-size: 1.6rem;
  font-weight: 700;
  color: #c8a156;
  margin: 15px 0;
}

/* ============================================
   HERO SECTION (PREMIUM)
   ============================================ */
.hero-premium {
  background: radial-gradient(circle at 10% 30%, rgba(255, 245, 230, 0.8), #fffcf7);
  padding: 80px 0 100px;
  position: relative;
}

.hero-grid {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.hero-badge {
  background: rgba(200, 161, 86, 0.15);
  backdrop-filter: blur(4px);
  padding: 6px 20px;
  border-radius: 60px;
  font-weight: 600;
  font-size: 0.85rem;
  color: #9b673b;
  display: inline-block;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: 4.2rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.gold-stat {
  display: flex;
  gap: 40px;
  margin: 35px 0 25px;
  flex-wrap: wrap;
}

.stat-item {
  font-weight: 700;
  font-size: 2rem;
  color: #2c4725;
}

.stat-item span {
  font-size: 0.9rem;
  font-weight: 400;
  color: #7a6a53;
  display: block;
}

.hero-image-card {
  background: rgba(255, 250, 240, 0.7);
  border-radius: 48px;
  padding: 20px;
  backdrop-filter: blur(2px);
  border: 1px solid rgba(200, 170, 100, 0.5);
  text-align: center;
  box-shadow: 0 25px 40px -20px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.hero-image-card img {
  width: 100%;
  border-radius: 32px;
  margin-bottom: 15px;
  transition: transform 0.4s ease;
}

.hero-image-card img:hover {
  transform: scale(1.02);
}

/* ============================================
   LUXURY SERVICE CARDS (GRID)
   ============================================ */
.service-luxury-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin: 50px 0;
}

.luxury-card {
  background: white;
  border-radius: 32px;
  padding: 0;
  transition: all 0.35s ease;
  border: 1px solid #efe2d0;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.02);
  overflow: hidden;
}

.luxury-card:hover {
  transform: translateY(-12px);
  border-color: #dcb67a;
  box-shadow: 0 30px 35px -15px rgba(0, 0, 0, 0.12);
}

.card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.luxury-card:hover .card-img {
  transform: scale(1.05);
}

.card-content {
  padding: 28px 24px 32px;
}

.card-content i {
  font-size: 2.2rem;
  color: #bc8542;
  margin-bottom: 12px;
  display: inline-block;
}

/* ============================================
   PROCESS STEPS
   ============================================ */
.process-steps {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}

.step-elegant {
  background: #ffffffea;
  flex: 1;
  min-width: 220px;
  padding: 38px 25px;
  border-radius: 40px;
  text-align: center;
  transition: 0.25s;
  border-bottom: 3px solid #e9cfa7;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.step-elegant img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  margin-bottom: 20px;
}

/* ============================================
   PRICE CARD LUXURY
   ============================================ */
.price-card-lux {
  background: #ffffff;
  border-radius: 48px;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}

.price-card-lux:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #c8a156, #e9c48b);
  transform: scaleX(0);
  transition: transform 0.4s;
}

.price-card-lux:hover:before {
  transform: scaleX(1);
}

.price-card-lux.popular {
  background: linear-gradient(145deg, #fffcf5, #fff7ed);
  border: 1px solid #e4ca9e;
  transform: scale(1.02);
}

/* ============================================
   QUOTE FORM (GOLD STYLE)
   ============================================ */
.quote-gold-form {
  background: #1e2a1b;
  border-radius: 56px;
  padding: 56px 48px;
  color: white;
  box-shadow: 0 25px 45px -12px rgba(0, 0, 0, 0.3);
}

.quote-gold-form input,
.quote-gold-form select,
.quote-gold-form textarea {
  background: #2c3828;
  border: 1px solid #c8aa6e;
  color: #fef3e0;
  border-radius: 60px;
  padding: 14px 22px;
  width: 100%;
  margin-bottom: 16px;
}

.quote-gold-form input::placeholder,
.quote-gold-form textarea::placeholder {
  color: #bcae8a;
}

/* ============================================
   GALLERY ROW
   ============================================ */
.gallery-row {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.gallery-item {
  flex: 1;
  min-width: 180px;
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.3s;
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin: 60px 0 50px;
}

.info-card {
  background: #fefaf5;
  border-radius: 32px;
  padding: 40px 28px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #efe2d0;
}

.info-card:hover {
  transform: translateY(-8px);
  border-color: #dcb67a;
  box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.08);
}

.info-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #f5ede2, #ede3d4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.info-icon i {
  font-size: 2rem;
  color: #bc8542;
}

.info-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  font-weight: 600;
}

.info-card p {
  color: #5a6a52;
  line-height: 1.6;
}

.info-card a {
  color: #bc8542;
  text-decoration: none;
  font-weight: 500;
}

.info-card a:hover {
  color: #9b5a2a;
}

.contact-main {
  padding: 60px 0 80px;
  background: #ffffff;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}

.contact-form-wrapper {
  flex: 1.2;
  background: #fefaf5;
  border-radius: 48px;
  padding: 48px;
  border: 1px solid #efe2d0;
}

.contact-form-wrapper h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 12px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 16px 20px;
  border: 1px solid #e0d4c4;
  border-radius: 28px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  background: white;
  transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #c8a156;
  box-shadow: 0 0 0 3px rgba(200, 161, 86, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.map-wrapper {
  flex: 0.9;
  background: #fefaf5;
  border-radius: 48px;
  overflow: hidden;
  border: 1px solid #efe2d0;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  min-height: 450px;
  border: 0;
}

.hours-section {
  background: #fef9f2;
  padding: 60px 0;
}

.hours-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
}

.hours-content {
  flex: 1;
}

.hours-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 20px;
}

.hours-list {
  list-style: none;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #e0d4c4;
  font-size: 1rem;
  flex-wrap: wrap;
  gap: 8px;
}

.hours-list li span:first-child {
  font-weight: 500;
  color: #2c3a2b;
}

.hours-list li span:last-child {
  color: #8a7a64;
}

.emergency-badge {
  margin-top: 30px;
  padding: 20px;
  background: white;
  border-radius: 28px;
  text-align: center;
  border: 1px solid #dcb67a;
}

/* ============================================
   ABOUT PAGE STYLES
   ============================================ */
.about-section {
  padding: 80px 0;
  border-bottom: 1px solid #f0e6dc;
}

.about-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 60px;
}

.about-content {
  flex: 1.2;
}

.about-image {
  flex: 0.9;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.1);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s;
}

.about-image:hover img {
  transform: scale(1.02);
}

.section-tag {
  display: inline-block;
  background: rgba(200, 161, 86, 0.12);
  padding: 6px 18px;
  border-radius: 60px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #9b673b;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.about-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 24px;
  color: #2c3a2b;
}

.about-content p {
  color: #4a5a42;
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 1rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  margin-top: 50px;
}

.value-card {
  text-align: center;
  padding: 40px 24px;
  background: #fefaf5;
  border-radius: 32px;
  transition: all 0.3s;
  border: 1px solid #efe2d0;
}

.value-card:hover {
  transform: translateY(-8px);
  border-color: #dcb67a;
  box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.08);
}

.value-icon {
  font-size: 2.8rem;
  color: #bc8542;
  margin-bottom: 20px;
}

.value-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  font-weight: 600;
}

.value-card p {
  color: #6b7a64;
  line-height: 1.6;
}

.stats-bar {
  background: #1e2a1b;
  color: white;
  padding: 70px 0;
  text-align: center;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px;
}

.stat-number {
  font-size: 3.2rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  color: #e4bc7c;
}

.stat-label {
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #cbc1aa;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.team-member {
  text-align: center;
}

.member-image {
  border-radius: 50%;
  width: 180px;
  height: 180px;
  object-fit: cover;
  margin: 0 auto 20px;
  border: 4px solid #e4bc7c;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* ============================================
   CTA BANNER (MAIN - DARK)
   ============================================ */
.cta-banner {
  background: linear-gradient(115deg, #1e2a1b, #2a3a25);
  border-radius: 60px;
  padding: 60px 40px;
  text-align: center;
  margin: 60px 0;
  color: white;
}

/* ============================================
   CTA BANNER (LIGHT VARIANT - FOR ABOUT/ALTERNATE)
   ============================================ */
.cta-banner-light {
  background: linear-gradient(115deg, #fff3e6, #ffffff);
  border-radius: 60px;
  padding: 60px 40px;
  text-align: center;
  margin: 60px 0;
  border: 1px solid #f3e2cf;
  color: #1e2a2a;
}

/* ============================================
   PREMIUM FOOTER STYLES
   ============================================ */
.footer-premium {
  background: #0f1a0d;
  border-top: 2px solid rgba(200, 161, 86, 0.4);
  margin-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 48px;
  padding: 70px 0 50px;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #e2c9a3;
  margin-bottom: 20px;
  letter-spacing: -0.3px;
}

.footer-logo i {
  color: #c8a156;
  margin-right: 8px;
}

.footer-description {
  color: #cbc1aa;
  line-height: 1.7;
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(200, 161, 86, 0.12);
  border-radius: 50%;
  color: #e2c9a3;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-social a:hover {
  background: #c8a156;
  color: #0f1a0d;
  transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #e2c9a3;
  margin-bottom: 24px;
  position: relative;
  display: inline-block;
}

.footer-links h4:after,
.footer-contact h4:after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background: #c8a156;
}

.footer-links ul,
.contact-details {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #cbc1aa;
  text-decoration: none;
  transition: all 0.25s ease;
  font-size: 0.95rem;
  display: inline-block;
  position: relative;
}

.footer-links a:hover {
  color: #e2c9a3;
  transform: translateX(5px);
}

.contact-details li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #cbc1aa;
  margin-bottom: 16px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.contact-details i {
  color: #c8a156;
  font-size: 1.1rem;
  margin-top: 3px;
  min-width: 20px;
}

.footer-bottom {
  border-top: 1px solid #2f3b28;
  padding: 25px 0;
  margin-top: 10px;
}

.bottom-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-bottom p {
  color: #aa9f82;
  font-size: 0.85rem;
  margin: 0;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.footer-legal a {
  color: #aa9f82;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: #c8a156;
}

.separator {
  color: #4a5a3a;
  font-size: 0.8rem;
}

/* ============================================
   LEGAL PAGES (Privacy, Terms, Disclaimer)
   ============================================ */

.legal-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #2c3a28;
  margin: 35px 0 15px;
  padding-bottom: 8px;
  border-bottom: 2px solid #ede3d4;
}

.legal-content h2:first-of-type {
  margin-top: 0;
}

.legal-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: #3d4a38;
  margin: 25px 0 10px;
}

.legal-content p {
  font-size: 0.98rem;
  line-height: 1.8;
  color: #4a5a3a;
  margin-bottom: 14px;
}

.legal-content ul {
  margin: 10px 0 18px 24px;
  color: #4a5a3a;
  font-size: 0.95rem;
  line-height: 1.9;
}

.legal-content ul li {
  margin-bottom: 6px;
}

.legal-content a {
  color: #9b633a;
  text-decoration: underline;
  transition: color 0.2s;
}

.legal-content a:hover {
  color: #c8a156;
}

.legal-updated {
  background: #faf2e6;
  display: inline-block;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.9rem;
  color: #6b5c47;
  margin-bottom: 10px;
}

.legal-contact {
  background: #faf2e6;
  padding: 24px 30px;
  border-radius: 16px;
  margin-top: 20px;
  border: 1px solid #ede3d4;
}

.legal-contact p {
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.legal-contact i {
  color: #9b633a;
  width: 20px;
  margin-right: 8px;
}

/* ============================================
   RESPONSIVE MEDIA QUERIES
   ============================================ */

/* Tablet and small desktop (max-width: 1024px) */
@media (max-width: 1024px) {
  .container {
    padding: 0 24px;
  }

  .page-header h1 {
    font-size: 3rem;
  }

  .hero h1 {
    font-size: 3.5rem;
  }

  .service-content {
    padding: 36px 32px;
  }

  .service-image {
    min-height: 280px;
  }

  .pricing-card {
    padding: 32px 24px;
  }

  .price {
    font-size: 2.5rem;
  }

  .contact-form-wrapper,
  .quote-gold-form {
    padding: 40px 32px;
  }
}

/* Tablet (max-width: 900px) */
@media (max-width: 900px) {
  .navbar .container {
    flex-direction: column;
    text-align: center;
  }

  .nav-links {
    justify-content: center;
    margin-top: 12px;
  }

  .get-quote-btn {
    margin-left: 0;
  }

  .page-header {
    padding: 60px 0 40px;
  }

  .page-header h1 {
    font-size: 2.5rem;
  }

  .services-section,
  .service-pricing-section,
  .about-section {
    padding: 60px 0;
  }

  .service-card {
    flex-direction: column;
  }

  .service-content {
    padding: 32px 28px;
  }

  .service-image {
    min-height: 240px;
  }

  .service-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .pricing-grid {
    gap: 24px;
  }

  .pricing-card {
    padding: 28px 20px;
  }

  .price {
    font-size: 2.2rem;
  }

  .hero-premium {
    padding: 60px 0 80px;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .gold-stat {
    gap: 24px;
  }

  .stat-item {
    font-size: 1.6rem;
  }

  .process-steps {
    gap: 20px;
  }

  .step-elegant {
    min-width: 200px;
    padding: 28px 20px;
  }

  .contact-grid {
    flex-direction: column;
  }

  .contact-form-wrapper {
    padding: 32px 28px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .map-wrapper iframe {
    min-height: 350px;
  }

  .hours-list li {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .about-grid {
    flex-direction: column;
    gap: 40px;
  }

  .about-content h2 {
    font-size: 2rem;
  }

  .values-grid {
    gap: 24px;
  }

  .value-card {
    padding: 32px 20px;
  }

  .stats-grid {
    gap: 40px;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .team-grid {
    gap: 30px;
  }

  .cta-banner,
  .cta-banner-light {
    padding: 40px 24px;
    margin: 40px 0;
    border-radius: 40px;
  }

  .footer-grid {
    gap: 40px;
    padding: 50px 0 40px;
  }

  .footer-logo {
    font-size: 1.6rem;
  }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }

  .navbar {
    padding: 16px 0;
  }

  .logo {
    font-size: 1.6rem;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 8px;
  }

  .nav-links a {
    margin: 0 8px;
    font-size: 0.9rem;
  }

  .get-quote-btn {
    padding: 6px 16px;
    font-size: 0.85rem;
  }

  .page-header h1 {
    font-size: 2rem;
  }

  .breadcrumb {
    font-size: 0.8rem;
  }

  .service-card {
    margin-bottom: 30px;
    border-radius: 32px;
  }

  .service-content {
    padding: 24px 20px;
  }

  .service-content h2 {
    font-size: 1.6rem;
  }

  .service-icon {
    font-size: 2rem;
  }

  .feature-tag {
    font-size: 0.75rem;
    padding: 4px 12px;
  }

  .price-badge {
    font-size: 1.3rem;
  }

  .pricing-toggle {
    gap: 12px;
    margin: 30px 0;
  }

  .toggle-label {
    font-size: 0.9rem;
  }

  .pricing-grid {
    gap: 20px;
    margin: 30px 0;
  }

  .pricing-card {
    padding: 24px 20px;
    border-radius: 32px;
  }

  .card-icon {
    font-size: 2.2rem;
  }

  .pricing-card h3 {
    font-size: 1.5rem;
  }

  .price {
    font-size: 2rem;
  }

  .price small {
    font-size: 0.85rem;
  }

  .features-list li {
    font-size: 0.85rem;
    padding: 8px 0;
  }

  .service-pricing-grid {
    gap: 20px;
  }

  .service-price-card {
    padding: 20px;
  }

  .service-price-card h4 {
    font-size: 1.2rem;
  }

  .service-price {
    font-size: 1.4rem;
  }

  .hero-premium {
    padding: 40px 0 60px;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 4px 16px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .gold-stat {
    gap: 16px;
    margin: 20px 0;
  }

  .stat-item {
    font-size: 1.3rem;
  }

  .stat-item span {
    font-size: 0.75rem;
  }

  .hero-image-card {
    border-radius: 32px;
    padding: 12px;
  }

  .hero-image-card img {
    border-radius: 24px;
  }

  .service-luxury-grid {
    gap: 20px;
    margin: 30px 0;
  }

  .card-img {
    height: 180px;
  }

  .card-content {
    padding: 20px 16px 24px;
  }

  .card-content i {
    font-size: 1.8rem;
  }

  .process-steps {
    flex-direction: column;
    align-items: stretch;
  }

  .step-elegant {
    min-width: auto;
    padding: 24px 20px;
  }

  .step-elegant img {
    width: 50px;
    height: 50px;
  }

  .quote-gold-form {
    padding: 28px 20px;
    border-radius: 40px;
  }

  .quote-gold-form input,
  .quote-gold-form select,
  .quote-gold-form textarea {
    padding: 12px 18px;
    font-size: 0.9rem;
  }

  .gallery-item {
    min-width: 140px;
  }

  .gallery-item img {
    height: 150px;
  }

  .contact-info-grid {
    gap: 20px;
    margin: 40px 0;
  }

  .info-card {
    padding: 28px 20px;
  }

  .info-icon {
    width: 55px;
    height: 55px;
  }

  .info-icon i {
    font-size: 1.5rem;
  }

  .info-card h3 {
    font-size: 1.2rem;
  }

  .contact-main {
    padding: 40px 0 60px;
  }

  .contact-form-wrapper h2 {
    font-size: 1.6rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 12px 16px;
    font-size: 0.9rem;
  }

  .hours-section {
    padding: 40px 0;
  }

  .hours-content h2 {
    font-size: 1.6rem;
  }

  .emergency-badge {
    padding: 16px;
  }

  .about-section {
    padding: 40px 0;
  }

  .section-tag {
    font-size: 0.7rem;
  }

  .about-content h2 {
    font-size: 1.8rem;
  }

  .about-content p {
    font-size: 0.95rem;
  }

  .values-grid {
    gap: 20px;
    margin-top: 30px;
  }

  .value-card {
    padding: 24px 16px;
  }

  .value-icon {
    font-size: 2.2rem;
  }

  .value-card h3 {
    font-size: 1.2rem;
  }

  .stats-bar {
    padding: 50px 0;
  }

  .stats-grid {
    gap: 30px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-label {
    font-size: 0.75rem;
  }

  .team-grid {
    gap: 24px;
    margin-top: 30px;
  }

  .member-image {
    width: 140px;
    height: 140px;
  }

  .cta-banner,
  .cta-banner-light {
    padding: 32px 20px;
    border-radius: 32px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 0 30px;
    text-align: center;
  }

  .footer-links h4:after,
  .footer-contact h4:after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-social {
    justify-content: center;
  }

  .contact-details li {
    justify-content: center;
  }

  .bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal {
    justify-content: center;
  }
}

/* Small mobile (max-width: 480px) */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .page-header h1 {
    font-size: 1.8rem;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .service-content h2 {
    font-size: 1.4rem;
  }

  .pricing-card h3 {
    font-size: 1.3rem;
  }

  .price {
    font-size: 1.8rem;
  }

  .contact-form-wrapper h2 {
    font-size: 1.4rem;
  }

  .about-content h2 {
    font-size: 1.6rem;
  }

  .footer-logo {
    font-size: 1.4rem;
  }
}

.logo-link {
    text-decoration: none;
    display: inline-block;
    color: inherit;
}

.logo-link:hover {
    text-decoration: none;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2f4f4f;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.logo span {
    color: #bc8542;
}

.logo-link:hover .logo {
    opacity: 0.9;
}

.artisan-process {
    background: #fef9f2;
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 10px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.step-elegant {
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    text-align: center;
    border: 1px solid rgba(188,133,66,.25);
    transition: all .3s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,.05);
}

.step-elegant:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,.12);
}

.step-elegant img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.step-elegant h3 {
    margin: 20px 20px 10px;
    color: #2f4f4f;
    font-size: 1.3rem;
}

.step-elegant p {
    padding: 0 20px 25px;
    color: #666;
    line-height: 1.7;
}

/* ============================================
   PREMIUM PORTFOLIO SECTION
   ============================================ */
.portfolio-premium {
    padding: 80px 0;
    background: #ffffff;
}

.portfolio-header {
    text-align: center;
    margin-bottom: 60px;
}

.portfolio-badge {
    display: inline-block;
    background: rgba(200, 161, 86, 0.12);
    padding: 6px 20px;
    border-radius: 60px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #9b673b;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.portfolio-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1e2a2a;
}

.portfolio-subtitle {
    max-width: 600px;
    margin: 0 auto;
    color: #5a6a52;
    font-size: 1rem;
    line-height: 1.6;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-bottom: 50px;
}

.portfolio-item {
    background: #ffffff;
    border-radius: 28px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    border: 1px solid #efe2d0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.02);
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 40px -15px rgba(0, 0, 0, 0.12);
    border-color: #dcb67a;
}

.portfolio-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.08);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 26, 13, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
    transform: translateY(15px);
    transition: transform 0.4s ease;
}

.portfolio-item:hover .overlay-content {
    transform: translateY(0);
}

.overlay-content i {
    font-size: 2rem;
    color: #c8a156;
    margin-bottom: 8px;
    display: block;
}

.overlay-content span {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.portfolio-info {
    padding: 20px 20px 24px;
    text-align: center;
}

.portfolio-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: #2c3a2b;
}

.portfolio-info p {
    color: #8a7a64;
    font-size: 0.85rem;
}

.portfolio-cta {
    text-align: center;
    margin-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .portfolio-premium {
        padding: 50px 0;
    }
    .portfolio-title {
        font-size: 2rem;
    }
    .portfolio-grid {
        gap: 24px;
    }
    .portfolio-info h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .portfolio-grid {
        gap: 20px;
    }
    .portfolio-info {
        padding: 16px;
    }
}

.service-image {
    width: 40%;
    min-height: 320px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.08);
}