/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}


body {
 background: linear-gradient(
      rgba(247, 194, 169, 0.267), 
      rgba(255, 208, 177, 0.404)
    ),
    url('images/bg5.jpg') no-repeat center center fixed;
  background-size: cover; 
}

/* VARIABLES */
:root {
  --primary-orange:  #ff7a18;
  --dark-text: #1e1e1e;
  --light-bg: #ffffff;
  --border-light: rgba(0, 0, 0, 0.05);
}

/* NAVBAR */
.navbar {
  width: 100%;
  background:linear-gradient(
      rgb(247, 242, 240), 
      rgba(241, 232, 226, 0.979)
    );
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border-light);
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 1px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo img {
  height: 90px;
  object-fit: contain;
}

/* NAV LINKS */
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  position: relative;
  text-decoration: none;
  color: var(--dark-text);
  font-size: 15px;
  font-weight: 500;
  transition: color 0.3s ease;
}

/* HOVER UNDERLINE ANIMATION */
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: var(--primary-orange);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--primary-orange);
}

.nav-links a:hover::after {
  width: 100%;
}

/* CTA BUTTON */
.nav-cta {
  padding: 12px 20px;
  border-radius: 6px;
  background: var(--primary-orange);
  color: #fff !important;
  font-weight: 600;
  transition: all 0.3s ease;
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  background: #e86810;
}

/* MOBILE MENU ICON */
.menu-toggle {
  display: none;
  font-size: 22px;
  cursor: pointer;
  color: var(--dark-text);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav-links {
    position: absolute;
    top: 75px;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid var(--border-light);
    display: none;
    animation: slideDown 0.4s ease forwards;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}

/* SLIDE ANIMATION */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* HERO SECTION */
.hero {
  background: #fff;
  padding: 20px 24px;
}

.hero-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap; /* Makes it responsive */
}

/* HERO CONTENT */
.hero-content {
  flex: 1 1 500px;
}

.hero-content h1 {
  font-size: clamp(32px, 4vw, 49px);
  font-weight: 700;
  color: #1e1e1e;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-content h1 span {
  color: #ff7a18;
}

.hero-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 32px;
}

/* CTA BUTTONS */
.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.btn-primary {
  background: #ff7a18;
  color: #fff;
  padding: 14px 26px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #e86810;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255,122,24,0.25);
}

.btn-secondary {
  padding: 14px 26px;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.322);
  text-decoration: none;
  color: #1e1e1e;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  border-color: #ff7a18;
  color: #ff7a18;
}

/* HERO PROOF */
.hero-proof {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.hero-proof div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-proof strong {
  font-size: 18px;
  color: #1e1e1e;
}

.hero-proof span {
  font-size: 14px;
  color: #777;
}

.hero-proof i {
  font-size: 20px;
  color: #ff7a18;
  margin-bottom: 6px;
}

/* HERO IMAGE */
.hero-image {
  flex: 1 1 450px;
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  height: 80vh;
  border-radius: 12px;
  animation: fadeUp 0.9s ease forwards;
}

/* ANIMATION */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .hero-container {
    flex-direction: column-reverse; /* Image stacks below content */
    text-align: center;
  }

  .hero-proof {
    justify-content: center;
  }

  .hero-proof div {
    align-items: center;
  }

  .hero-image {
 display: none;
}

}


/* SERVICES SECTION */
.services {
  background: #ffffff9f;
  padding: 80px 24px;
}

.services-container {
  max-width: 1100px;
  margin: auto;
}

/* SECTION HEADER */
.section-header {
  max-width: 600px;
  margin-bottom: 50px;
}

.section-tag {
  display: inline-block;
  margin-bottom: 12px;
  color: #ff7a18;
  font-size: 13px;
  font-weight: 600;
}

.section-header h2 {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 700;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 16px;
  line-height: 1.7;
}

/* SERVICES GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

/* SERVICE CARD */
.service-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 32px 24px;
  border-radius: 14px;
  transition: all 0.35s ease;
}

.service-card i {
  font-size: 26px;
  color: #ff7a18;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #1e1e1e;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #666;
}

/* HOVER EFFECT */
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
  border-color: rgba(255, 122, 24, 0.3);
}

/* ANIMATION */
.fade-up {
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 0.8s ease forwards;
}

/* RESPONSIVE */
@media (max-width: 1000px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* PRICING SECTION */
.pricing {
   background: linear-gradient(
      rgba(253, 253, 252, 0.103), 
      rgba(252, 251, 251, 0.178)
    ),
    url('images/old-painted-textured-surface-backdrop.jpg') no-repeat center center;
  background-size: cover; 
  padding: 90px 24px;
}

.pricing-container {
  max-width: 1100px;
  margin: auto;
}

.section-header-title {
 color: #fff;
}

/* PRICING GRID */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.pricing-card {
  background: #ffffffee;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 18px;
  padding: 36px 28px;
  transition: all 0.35s ease;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.06);
}

/* FEATURED */
.pricing-card.featured {
  border: 2px solid #ff7a18;
  transform: scale(1.03);
}

.badge {
  position: absolute;
  top: -14px;
  left: 24px;
  background: #ff7a18;
  color: #fff;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 20px;
}

/* TEXT */
.pricing-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #1e1e1e;
  margin-bottom: 8px;
}

.pricing-desc {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}

.price {
  font-size: 32px;
  font-weight: 700;
  color: #ff7a18;
  margin-bottom: 24px;
}

/* FEATURES */
.pricing-card ul {
  list-style: none;
  margin-bottom: 30px;
}

.pricing-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #444;
  margin-bottom: 12px;
}

.pricing-card i {
  color: #ff7a18;
}

/* BUTTONS */
.btn-outline {
  display: inline-block;
  width: 100%;
  text-align: center;
  padding: 14px 0;
  border-radius: 10px;
  border: 1px solid #ff7a18;
  color: #ff7a18;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: #ff7a18;
  color: #fff;
}

.pricing-card .btn-primary {
  width: 100%;
  text-align: center;
}

/* RESPONSIVE */
@media (max-width: 1000px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card.featured {
    transform: none;
  }
}


/* PROCESS SECTION */
.process {
  background: #fffffff5;
  padding: 90px 24px;
}

.process-container {
  max-width: 1100px;
  margin: auto;
}

/* SECTION HEADER */
.process .section-header {
  max-width: 600px;
  margin-bottom: 60px;
}

.process .section-header h2 {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 700;
  color: #1e1e1e;
  margin-bottom: 16px;
}

.process .section-header p {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
}

/* PROCESS STEPS GRID */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* STEP CARD */
.process-step {
  background: #fafafa;
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.35s ease;
}

.process-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
  border-color: rgba(255, 122, 24, 0.3);
}

/* STEP ICON */
.step-icon {
  background: #ff7a18;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 20px auto;
}

/* STEP HEADLINE */
.process-step h3 {
  font-size: 18px;
  font-weight: 600;
  color: #1e1e1e;
  margin-bottom: 12px;
}

/* STEP DESCRIPTION */
.process-step p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* ANIMATION */
.fade-up {
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 0.8s ease forwards;
}

/* RESPONSIVE */
@media (max-width: 1000px) {
  .process-steps {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* FINAL CTA / CONTACT */
.final-cta {
  background: #ffffff93;
  padding: 100px 24px;
  border-top: 1px solid rgba(0,0,0,0.05);
}

.cta-container {
  max-width: 800px;
  margin: auto;
  text-align: center;
}

/* HEADLINE */
.final-cta .section-tag {
  display: inline-block;
  color: #ff7a18;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
}

.final-cta h2 {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 700;
  color: #1e1e1e;
  margin-bottom: 16px;
}

.final-cta p {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 32px;
}

/* CTA BUTTON */
.cta-btn {
  font-size: 16px;
  padding: 16px 28px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255,122,24,0.25);
}

/* CONTACT FORM */
.cta-form {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta-form input,
.cta-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 8px;
  font-size: 14px;
  color: #1e1e1e;
  resize: none;
}

.cta-form input:focus,
.cta-form textarea:focus {
  outline: none;
  border-color: #ff7a18;
  box-shadow: 0 0 6px rgba(255,122,24,0.25);
}

.cta-form button {
  padding: 14px 0;
  border-radius: 10px;
  border: none;
  background: #ff7a18;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-form button:hover {
  background: #e86810;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255,122,24,0.25);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .final-cta {
    padding: 80px 16px;
  }
}


.footer {
  position: relative;
  background: url("footer-bg.jpg") center/cover fixed;
  color: #eaeaea;
  padding: 80px 20px 20px;
  overflow: hidden;
  border-top: 5px ridge #ff7a18;
}

.footer-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(43, 42, 42, 0.9),
    rgba(0, 0, 0, 0.6)
  );
  z-index: 0;
}

.footer-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.footer-col h3 {
  margin-bottom: 15px;
  font-size: 18px;
  position: relative;
}

.footer-col h3::after {
  content: "";
  width: 40px;
  height: 2px;
  background: #ff7a18;
  display: block;
  margin-top: 6px;
}

.footer-logo {
  width: 300px;
  margin-top: 18px;
  margin-bottom: 15px;
  border-radius: 1rem;
  animation: float 4s ease-in-out infinite;
}

.footer-col p,
.footer-col a {
  font-size: 14px;
  color: #dcdcdc;
  line-height: 1.7;
}

.footer-col a {
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 600;
}

.footer-col a:hover {
  color: #ff7a18;
}

/* SOCIAL ICONS */
.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fafafa;
  font-size: 30px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.icon:hover {
  background: transparent;
  border: 1px solid rgb(247, 242, 240);
}
.icon i {
  color: #ff7a18;
  font-size: 20px;
  font-weight: 600;
}


/* QUICK LINKS */
.links ul {
  list-style: none;
}

.links li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.3s;
}

.links li:hover {
  transform: translateX(8px);
}

/* CONTACT */
.contact i {
  color: #ff7a18;
  margin-right: 8px;
}

/* FOOTER BOTTOM */
.footer-bottom {
  padding: 20px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
  height: 10vh;
  font-size: 15px;
  color: #fff;
  background: #0c0d11;
}

/* FLOATING ANIMATION */
@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}
