/* Sharma Infratech - Luxury Gold Theme for Main Content */

/* ══ PAGE BANNERS ══ */
.page-banner {
  background: linear-gradient(135deg, #0b0905 0%, #1a1410 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.page-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #c9a84c, transparent);
}

.page-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 100% at 50% 0%, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.page-banner .container {
  position: relative;
  z-index: 2;
}

.page-banner h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 600;
  color: #f5f1eb;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.page-banner p {
  font-family: 'Jost', sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: rgba(245,241,235,0.6);
  letter-spacing: 0.5px;
}

/* ══ SECTION HEADERS ══ */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 600;
  color: #1a1410;
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #c9a84c, transparent);
}

.section-header p {
  font-family: 'Jost', sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* ══ SERVICE CARDS ══ */
.services-section {
  padding: 80px 0;
  background: #fafaf8;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
}

.service-card {
  background: #fff;
  padding: 40px 30px;
  border: 1px solid rgba(201,168,76,0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #8b6914, #c9a84c);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  border-color: rgba(201,168,76,0.3);
  box-shadow: 0 10px 40px rgba(201,168,76,0.12);
  transform: translateY(-5px);
}

.service-icon {
  width: 70px;
  height: 70px;
  border: 1.5px solid rgba(201,168,76,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.3s;
  position: relative;
}

.service-icon::before,
.service-icon::after {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  transition: opacity 0.3s;
  opacity: 0;
}

.service-icon::before {
  top: -1px; left: -1px;
  border-top: 2px solid #c9a84c;
  border-left: 2px solid #c9a84c;
}

.service-icon::after {
  bottom: -1px; right: -1px;
  border-bottom: 2px solid #c9a84c;
  border-right: 2px solid #c9a84c;
}

.service-card:hover .service-icon::before,
.service-card:hover .service-icon::after {
  opacity: 1;
}

.service-icon i {
  font-size: 32px;
  color: #c9a84c;
  transition: transform 0.3s;
}

.service-card:hover .service-icon i {
  transform: scale(1.1);
}

.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  color: #1a1410;
  margin-bottom: 12px;
}

.service-card p {
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #c9a84c;
  text-decoration: none;
  transition: gap 0.3s;
}

.service-link:hover {
  gap: 12px;
  text-decoration: none;
}

.service-link i {
  transition: transform 0.3s;
}

.service-link:hover i {
  transform: translateX(3px);
}

/* ══ BUTTONS ══ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, #8b6914, #c9a84c);
  color: #fff;
  border: 1px solid transparent;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #9d7a1a, #d4b35c);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(201,168,76,0.25);
}

.btn-primary span,
.btn-primary i {
  position: relative;
  z-index: 1;
}

.btn-secondary {
  background: transparent;
  color: #c9a84c;
  border: 1.5px solid rgba(201,168,76,0.4);
}

.btn-secondary:hover {
  background: rgba(201,168,76,0.08);
  border-color: #c9a84c;
}

/* ══ FORMS ══ */
.contact-form,
.lead-form {
  background: #fff;
  padding: 40px;
  border: 1px solid rgba(201,168,76,0.15);
  position: relative;
}

.contact-form::before,
.lead-form::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #c9a84c, transparent);
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #666;
  margin-bottom: 10px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  color: #1a1410;
  background: #fafaf8;
  border: 1px solid rgba(201,168,76,0.2);
  transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #c9a84c;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(201,168,76,0.08);
}

/* ══ CTA SECTION ══ */
.cta-section {
  background: linear-gradient(135deg, #0b0905 0%, #1a1410 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 100% at 50% 50%, rgba(201,168,76,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 600;
  color: #f5f1eb;
  margin-bottom: 16px;
}

.cta-content p {
  font-family: 'Jost', sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: rgba(245,241,235,0.6);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ══ CONTACT INFO ITEMS ══ */
.contact-info-item {
  background: #fff;
  padding: 30px;
  border: 1px solid rgba(201,168,76,0.15);
  text-align: center;
  transition: all 0.3s;
}

.contact-info-item:hover {
  border-color: rgba(201,168,76,0.3);
  box-shadow: 0 8px 30px rgba(201,168,76,0.1);
}

.contact-info-item i {
  font-size: 32px;
  color: #c9a84c;
  margin-bottom: 16px;
}

.contact-info-item h3 {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 8px;
}

.contact-info-item p,
.contact-info-item a {
  font-family: 'Jost', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #1a1410;
  text-decoration: none;
}

.contact-info-item a:hover {
  color: #c9a84c;
}

/* ══ RESPONSIVE ══ */
@media (max-width: 768px) {
  .page-banner h1 {
    font-size: 36px;
  }
  
  .section-header h2 {
    font-size: 32px;
  }
  
  .cta-content h2 {
    font-size: 32px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-form,
  .lead-form {
    padding: 30px 20px;
  }
}
