/* Hero Section (service pages) */
.service-hero {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
  text-align: center;
  padding: 3rem 1rem;
  background: #f9faf7; /* soft olive tint */
  position: relative;
}

body{
  letter-spacing: 1px;
}

.service-hero-content {
  max-width: 700px;
}

.service-icon {
  font-size: 4rem;
  color: #b7831d;
  margin-bottom: 1.5rem;
  display: block;
}

.service-title {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #2b2b2b;
}

.service-subtitle {
  font-size: 1.3rem;
  color: #444a56;
  line-height: 1.7;
}

/* Add subtle background shapes (drops + circles) */
.service-hero::before,
.service-hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  opacity: 0.12;
}

.dropdown { position: relative; }
.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fdfcfa;
  min-width: 220px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  border-radius: 8px;
  z-index: 999;
}
.dropdown-content li { list-style:none; }
.dropdown-content a { 
  font-size: 20px; 
  padding: 0.48rem 1rem; 
  display:block; 
  color:#2b2b2b; 
  text-decoration:none; 
  transition: all 0.3s ease;
}
.dropdown-content a:hover { background:#b7831d; color:#fff; }


.service-hero::before {
  width: 180px;
  height: 180px;
  background: #b7831d;
  top: 10%;
  left: 15%;
}

.service-hero::after {
  width: 120px;
  height: 120px;
  background: #f3daa8;
  bottom: 12%;
  right: 20%;
}
/* Service Intro Section */
.service-intro {
  padding: 5rem 2rem;
  background: #fff;
}

.service-intro-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.service-text {
  flex: 1 1 500px;
}

.service-text h2 {
  font-size: 2.2rem;
  color: #2b2b2b;
  margin-bottom: 1.5rem;
}

.service-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #444a56;
  margin-bottom: 1.2rem;
}

.service-visuals {
  flex: 1 1 350px;
  position: relative;
  text-align: center;
}

.service-icon-big {
  font-size: 6rem;
  color: #f3ca7a;
  display: block;
  margin-bottom: 1rem;
}

.service-icon-small {
  font-size: 3rem;
  color: #f3ca7a;
  position: absolute;
}

.service-icon-small:first-of-type {
  top: 10%;
  left: 20%;
}

.service-icon-small:last-of-type {
  bottom: 15%;
  right: 15%;
}
/* Bold Statement Section */
.bold-statement {
  background: linear-gradient(135deg, #ffedc8, #f9f8f5);
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.bold-container {
  max-width: 900px;
  margin: 0 auto;
}

.bold-statement h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #2b2b2b;
  margin-bottom: 1.5rem;
}

.bold-statement h2 .highlight {
  color: #b7831d;
}

.bold-statement p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #444a56;
  margin-bottom: 2rem;
}

.bold-statement .magnetic {
  font-size: 1.8rem;
  font-weight: 700;
  color: #b7831d;
  animation: popIn 1.2s ease forwards;
}

/* Subtle animation */
@keyframes popIn {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
/* Testimonial Box */
.testimonial-box {
  padding: 5rem 2rem;
  display: flex;
  justify-content: center;
  background: #faf2e3;
}

.testimonial-container {
  max-width: 800px;
  background: #fff;
  border-radius: 15px;
  padding: 3rem 2rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  text-align: center;
  position: relative;
}

.quote-icon {
  font-size: 3rem;
  color: #b7831d;
  margin-bottom: 1.5rem;
}

.testimonial-text {
  font-size: 1.1rem;
  font-style: italic;
  color: #444a56;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.author h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2b2b2b;
  margin-bottom: 0.2rem;
}

.author p {
  font-size: 1rem;
  color: #555;
}
/* Reasons Section */
.reasons {
  padding: 5rem 2rem;
  background: #f6f7f2;
  text-align: center;
}

.reasons-container {
  max-width: 1100px;
  margin: 0 auto;
}

.reasons-title {
  font-size: 2rem;
  font-weight: 500;
  color: #2b2b2b;
  margin-bottom: 3rem;
  line-height: 1.4;
}

.reasons-title .highlight {
  color: #b7831d;
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.reason-box {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reason-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

.reason-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: #b7831d;
  margin-bottom: 1rem;
}
/* Persuasive CTA Section */
.cta-promo {
  background: linear-gradient(rgba(107, 142, 35, 0.1), rgba(107, 142, 35, 0.1));
  padding: 5rem 2rem;
  text-align: center;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #2b2b2b;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.cta-title .highlight {
  color: #b7831d;
}

.cta-subtitle {
  font-size: 1.2rem;
  color: #444a56;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
/* Footer Section */
.footer {
  background: url('img4.jpg') center/cover no-repeat; /* vintage style */
  position: relative;
  color: #fff;
  min-height: 400px; /* reduced height */
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-overlay {
  background: rgba(0,0,0,0.65); /* dark overlay */
  width: 100%;
  padding: 3rem 2rem; /* reduce padding */
  display: flex;
  justify-content: center;
  border-radius: 0; /* remove rounded corners */
}

.footer-inner {
  max-width: 800px;
  text-align: center;
}

.footer-name {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-respect {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-socials {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  color: #b7831d;
}

.footer-links {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.footer-links a {
  color: #fff;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #6b8e23;
}

.footer-copy {
  font-size: 0.9rem;
  color: #ddd;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-name {
    font-size: 1.6rem;
  }
  .footer-respect,
  .footer-socials,
  .footer-links,
  .footer-copy {
    font-size: 0.95rem;
  }
}
.footer-socials {
  font-size: 1.25rem;
  font-weight: 600;
  color: #6b8e23;
  text-align: center;
  margin-bottom: 1rem;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.social-icons a img {
  width: 32px;
  height: 32px;
  filter: brightness(1); /* white by default */
  transition: transform 0.3s ease;
}

.social-icons a img:hover,
.social-icons a img:focus {
  transform: scale(1.3); /* enlarge on hover for prominence */
}
