/* NAVBAR BASE */
.smart-navbar {
  background-color: #fef4ea;
  padding: 14px 0;
  transition: all 0.4s ease;
  box-shadow: 0 8px 30px rgba(0,0,0,0.05);
  z-index: 999;
}

/* LOGO */
.smart-navbar .navbar-brand {
  font-size: 1.5rem;
  color: #1c1c1c;
  letter-spacing: 0.5px;
}

.smart-navbar .navbar-brand span {
  color: #c97a2b;
}

/* NAV LINKS */
.smart-navbar .nav-link {
  position: relative;
  font-weight: 500;
  color: #333;
  padding: 6px 0;
  transition: all 0.35s ease;
}

/* UNDERLINE ANIMATION */
.smart-navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #c97a2b, #ffb066);
  transition: width 0.4s ease;
  border-radius: 10px;
}

/* HOVER EFFECT */
.smart-navbar .nav-link:hover {
  color: #c97a2b;
  transform: translateY(-2px);
}

.smart-navbar .nav-link:hover::after,
.smart-navbar .nav-link.active::after {
  width: 100%;
}

/* CTA BUTTON */
.smart-btn {
  background: linear-gradient(135deg, #c97a2b, #ffb066);
  color: #fff;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600;
  border: none;
  transition: all 0.4s ease;
  box-shadow: 0 10px 25px rgba(201,122,43,0.25);
}

.smart-btn:hover {
  background: linear-gradient(135deg, #b56a1f, #ff9a3d);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(201,122,43,0.4);
  color: #fff;
}

/* MOBILE FIX */
.navbar-toggler {
  border: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* HERO SECTION */
.smart-hero {
  min-height: 100vh;
  width: 100%;
  background: linear-gradient(135deg, #e38080, #f0a1a1);
  padding: 120px 0 80px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* BADGE */
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 14px;
  margin-bottom: 20px;
}

/* TITLE */
.hero-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

/* TEXT */
.hero-text {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 35px;
  opacity: 0.95;
}

/* BUTTONS */
.hero-buttons .btn {
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.4s ease;
}

.hero-btn-primary {
  background: #ffffff;
  color: #e38080;
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

.hero-btn-primary:hover {
  transform: translateY(-4px);
  background: #fef4ea;
}

.hero-btn-outline {
  border: 2px solid #fff;
  color: #fff;
  margin-left: 15px;
}

.hero-btn-outline:hover {
  background: #fff;
  color: #e38080;
}

/* HERO CARD */
.hero-card {
  background: #ffffff;
  color: #333;
  padding: 35px;
  border-radius: 22px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.2);
  animation: floatCard 5s ease-in-out infinite;
}

/* FEATURES */
.hero-feature {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  font-weight: 500;
}

.hero-feature i {
  font-size: 1.3rem;
  color: #e38080;
}

/* STATS */
.hero-stats {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  text-align: center;
}

.hero-stats h5 {
  font-weight: 800;
  color: #e38080;
}

/* FLOAT ANIMATION */
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .hero-title {
    font-size: 2.4rem;
  }

  .hero-card {
    margin-top: 40px;
  }
}

/* WHO WE ARE SECTION */
.smart-about {
  width: 100%;
  background-color: #fef4ea;
  padding: 100px 0;
  position: relative;
}

/* HEADER */
.about-tag {
  display: inline-block;
  background: rgba(227,128,128,0.15);
  color: #e38080;
  padding: 6px 18px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 12px;
}

.about-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: #222;
}

.about-subtitle {
  max-width: 700px;
  margin: 0 auto;
  color: #555;
  line-height: 1.7;
}

/* LEFT CONTENT */
.about-content h4 {
  font-weight: 700;
  margin-bottom: 18px;
  color: #222;
}

.about-content p {
  line-height: 1.8;
  color: #444;
  margin-bottom: 18px;
}

/* HIGHLIGHTS */
.about-highlights {
  margin-top: 25px;
}

.highlight {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-weight: 500;
}

.highlight span {
  color: #e38080;
  font-weight: bold;
}

/* RIGHT CARDS */
.about-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.about-card {
  background: #ffffff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* HOVER EFFECT */
.about-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #e38080, #f2b1b1);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.about-card:hover::before {
  opacity: 0.08;
}

.about-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.about-card h5 {
  position: relative;
  z-index: 1;
  font-weight: 700;
  margin-bottom: 12px;
  color: #222;
}

.about-card p {
  position: relative;
  z-index: 1;
  color: #555;
  line-height: 1.7;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .about-title {
    font-size: 2.1rem;
  }

  .about-cards {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }
}

/* SERVICES SECTION */
.smart-services {
  width: 100%;
  background-color: #f6acab;
  padding: 100px 0;
}

/* HEADER */
.services-tag {
  display: inline-block;
  background: rgba(255,255,255,0.35);
  padding: 6px 18px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  color: #7a1f1f;
  margin-bottom: 12px;
}

.services-title {
  font-size: 2.6rem;
  font-weight: 800;
  color: #3b0f0f;
}

.services-subtitle {
  max-width: 750px;
  margin: 12px auto 0;
  color: #4a1a1a;
  line-height: 1.7;
}

/* SERVICE BOX */
.service-box {
  background: #ffffff;
  padding: 32px;
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
  height: 100%;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* WIDE BOX */
.wide-box {
  padding: 36px;
}

/* HOVER EFFECT */
.service-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #f6acab, #ffd3d3);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-box:hover::before {
  opacity: 0.15;
}

.service-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.15);
}

/* TITLES */
.service-box h5 {
  position: relative;
  font-weight: 700;
  margin-bottom: 18px;
  color: #3b0f0f;
}

/* LIST */
.service-box ul {
  position: relative;
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.service-box ul li {
  padding: 6px 0;
  font-weight: 500;
  color: #5a2a2a;
  transition: transform 0.3s ease;
}

.service-box ul li:hover {
  transform: translateX(6px);
  color: #b23b3b;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .services-title {
    font-size: 2.1rem;
  }
}

/*why choose us*/
.why-choose-us {
  width: 100%;
  background-color: #fef4ea;
  overflow: hidden;
}

.intro-strip {
  padding: 70px 20px;
  background: linear-gradient(135deg, #fef4ea, #fff);
}

.intro-strip h2 {
  font-size: 2.5rem;
}

.intro-strip p {
  max-width: 700px;
  margin: auto;
  font-size: 1.05rem;
  color: #555;
}

.why-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 35px 25px;
  height: 100%;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.why-card .icon {
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.why-card h5 {
  font-weight: 700;
  margin-bottom: 12px;
}

.why-card p {
  font-size: 0.95rem;
  color: #666;
}

.why-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

.trust-bar {
  background: #fff;
  padding: 50px 20px;
  border-top: 1px solid rgba(0,0,0,0.05);
}

.trust-bar h4 {
  font-weight: 700;
}

.trust-bar p {
  font-size: 0.95rem;
  color: #555;
}


/* SECTION */
.smart-update {
  width: 100%;
  background-color: #f7adac;
  padding: 100px 0;
}

/* HEADER */
.update-tag {
  display: inline-block;
  background: rgba(255,255,255,0.35);
  padding: 6px 18px;
  border-radius: 50px;
  font-weight: 600;
  color: #7a1f1f;
  margin-bottom: 12px;
}

.update-title {
  font-size: 2.6rem;
  font-weight: 800;
  color: #3b0f0f;
}

.update-subtitle {
  max-width: 650px;
  margin: 12px auto 0;
  color: #4a1a1a;
  line-height: 1.7;
}

/* FORM CARD */
.update-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

/* LABELS & INPUTS */
.form-label {
  font-weight: 600;
  color: #3b0f0f;
}

.form-control {
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid #f0c2c2;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: #f7adac;
  box-shadow: 0 0 0 0.2rem rgba(247,173,172,0.3);
}

/* BUTTONS */
.subscribe-btn {
  background: linear-gradient(135deg, #e38080, #f7adac);
  color: #fff;
  font-weight: 600;
  border-radius: 50px;
  padding: 12px;
  border: none;
  transition: all 0.4s ease;
}

.subscribe-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(227,128,128,0.4);
}

.unsubscribe-btn {
  background: #fff;
  color: #e38080;
  font-weight: 600;
  border-radius: 50px;
  padding: 12px;
  border: 2px solid #f7adac;
  transition: all 0.4s ease;
}

.unsubscribe-btn:hover {
  background: #f7adac;
  color: #fff;
}

/* MODAL */
.smart-modal {
  border-radius: 20px;
  padding: 30px;
}

.modal-btn {
  background: #e38080;
  color: #fff;
  border-radius: 50px;
  padding: 10px 30px;
  margin-top: 15px;
}

/* FAQ SECTION */
.smart-faq {
  width: 100%;
  background-color: #fef4ea;
  padding: 100px 0;
}

/* HEADER */
.faq-tag {
  display: inline-block;
  background: rgba(227,128,128,0.15);
  color: #e38080;
  padding: 6px 18px;
  border-radius: 50px;
  font-weight: 600;
  margin-bottom: 12px;
}

.faq-title {
  font-size: 2.6rem;
  font-weight: 800;
  color: #222;
}

.faq-subtitle {
  max-width: 700px;
  margin: 12px auto 0;
  color: #555;
  line-height: 1.7;
}

/* ACCORDION */
.smart-accordion .accordion-item {
  background: #ffffff;
  border: none;
  border-radius: 18px;
  margin-bottom: 18px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  overflow: hidden;
}

.smart-accordion .accordion-button {
  background: transparent;
  font-weight: 600;
  color: #333;
  padding: 20px 24px;
  transition: all 0.3s ease;
}

.smart-accordion .accordion-button:not(.collapsed) {
  background: rgba(227,128,128,0.08);
  color: #e38080;
}

.smart-accordion .accordion-button::after {
  background-size: 1.2rem;
}

.smart-accordion .accordion-body {
  padding: 20px 24px;
  line-height: 1.8;
  color: #555;
}

/* REMOVE DEFAULT FOCUS */
.accordion-button:focus {
  box-shadow: none;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .faq-title {
    font-size: 2.1rem;
  }
}

.smart-contact {
  width: 100%;
  background-color: #f7a9a7;
  padding: 100px 0;
}

.contact-tag {
  background: rgba(255,255,255,0.35);
  padding: 6px 18px;
  border-radius: 50px;
  font-weight: 600;
  color: #7a1f1f;
}

.contact-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #3b0f0f;
}

.contact-subtitle {
  max-width: 650px;
  margin: 12px auto 0;
  color: #4a1a1a;
}

.contact-card {
  background: #fff;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.contact-btn {
  background: linear-gradient(135deg, #e38080, #f7a9a7);
  color: #fff;
  font-weight: 600;
  padding: 14px;
  border-radius: 50px;
  border: none;
}

.contact-btn:hover {
  transform: translateY(-3px);
}

.smart-terms {
  background-color: #fef4ea;
  padding: 100px 0;
}

.terms-box {
  background: #fff;
  padding: 40px;
  border-radius: 22px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.terms-box h5 {
  margin-top: 20px;
  font-weight: 700;
}

.privacy-policy-section {
  width: 100%;
  padding: 80px 0;
  font-family: 'Poppins', sans-serif;
  color: #3b0f0f;
}

.privacy-policy-section .privacy-title {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.privacy-policy-section .privacy-subtitle {
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
  color: #5a2a2a;
  line-height: 1.7;
}

.privacy-policy-section h4 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 12px;
  color: #7a1f1f;
}

.privacy-policy-section p {
  font-size: 1rem;
  line-height: 1.7;
  color: #4a1a1a;
  margin-bottom: 15px;
}

.privacy-policy-section strong {
  color: #3b0f0f;
}


/* Footer Links Hover */
footer a.text-dark:hover {
  color: #d38436; /* accent color */
  text-decoration: underline;
  transition: all 0.3s ease;
}

/* Newsletter Input Focus */
#footerNewsletterForm input.form-control:focus {
  border-color: #d38436;
  box-shadow: 0 0 0 0.2rem rgba(211,132,54,0.25);
}

/* Newsletter Button */
#footerNewsletterForm .btn-dark {
  background-color: #d38436;
  border-color: #d38436;
  border-radius: 50px;
  padding: 8px 20px;
  transition: all 0.3s ease;
}

#footerNewsletterForm .btn-dark:hover {
  background-color: #b36f2d;
  border-color: #b36f2d;
}
