
  body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
  }

  /* Navbar container */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: #fcfcfc;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  }

  /* Logo */
  .logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #101f2d;
    cursor: pointer;
    transition: transform 0.3s ease;
  }

  .logo:hover {
    transform: scale(1.1);
    color: #f8a048;
  }

  /* Nav links */
  .nav-links {
    list-style: none;
    display: flex;
    gap: 40px;
  }

  .nav-links li {
    position: relative;
  }

  .nav-links a {
    text-decoration: none;
    color: #101f2d;
    font-weight: 500;
    padding: 5px 0;
    transition: color 0.3s ease;
  }

  /* Hover underline animation */
  .nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0%;
    height: 2px;
    background-color: #f8a048;
    transition: width 0.3s ease;
  }

  .nav-links a:hover::after {
    width: 100%;
  }

  .nav-links a:hover {
    color: #f8a048;
  }

  /* Dropdown animation example */
  .nav-links li:hover .dropdown {
    max-height: 300px;
    opacity: 1;
    visibility: visible;
  }

  .dropdown {
    position: absolute;
    top: 35px;
    left: 0;
    background-color: #fcfcfc;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
  }

  .dropdown a {
    display: block;
    padding: 10px 20px;
    color: #101f2d;
    transition: background 0.3s, color 0.3s;
  }

  .dropdown a:hover {
    background-color: #f8a048;
    color: #fff;
  }

  /* Responsive */
  @media (max-width: 768px) {
    .nav-links {
      gap: 20px;
    }
  }


  /* HERO SECTION */
.sdm-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(120deg, #fcfcfc 55%, rgba(128,90,54,0.12));
  display: flex;
  align-items: center;
  padding: 0 8%;
  overflow: hidden;
}

/* Overlay for depth */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(128,90,54,0.15), transparent 60%);
  z-index: 1;
}

/* Content */
.hero-content {
  position: relative;
  max-width: 700px;
  z-index: 2;
  animation: fadeUp 1.2s ease forwards;
}

/* Badge */
.hero-badge {
  display: inline-block;
  background: rgba(128,90,54,0.1);
  color: #805a36;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 20px;
  transition: transform 0.4s ease;
}

.hero-badge:hover {
  transform: translateY(-4px);
}

/* Heading */
.hero-content h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  color: #101f2d;
  margin-bottom: 20px;
}

.hero-content h1 span {
  color: #805a36;
  position: relative;
}

.hero-content h1 span::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 3px;
  background: #805a36;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.hero-content h1 span:hover::after {
  transform: scaleX(1);
}

/* Paragraph */
.hero-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 35px;
}

/* Buttons */
.hero-actions {
  display: flex;
  gap: 20px;
}

.btn-primary {
  background: #805a36;
  color: #fff;
  padding: 14px 32px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.4s ease;
}

.btn-primary:hover {
  background: #6c4a2b;
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(128,90,54,0.35);
}

.btn-outline {
  border: 2px solid #805a36;
  color: #805a36;
  padding: 14px 32px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.4s ease;
}

.btn-outline:hover {
  background: #805a36;
  color: #fff;
  transform: translateY(-4px);
}

/* Floating shapes */
.shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(128,90,54,0.15);
  animation: float 8s infinite ease-in-out;
}

.shape1 {
  width: 220px;
  height: 220px;
  top: 15%;
  right: 10%;
}

.shape2 {
  width: 140px;
  height: 140px;
  bottom: 10%;
  right: 25%;
  animation-delay: 3s;
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-25px);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}
.hero-container {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  width: 100%;
  z-index: 2;
}

/* Subtitle */
.hero-subtitle {
  font-size: 1.2rem;
  color: #805a36;
  margin-bottom: 15px;
  font-weight: 500;
}

/* Trust row */
.trust-row {
  display: flex;
  gap: 35px;
  margin-top: 40px;
}

.trust-item {
  font-size: 14px;
  color: #555;
  transition: transform 0.3s ease;
}

.trust-item span {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: #805a36;
}

.trust-item:hover {
  transform: translateY(-6px);
}

/* Feature cards */
.hero-features {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.feature-card {
  background: #ffffff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  border-left: 5px solid #805a36;
}

.feature-card h4 {
  color: #101f2d;
  margin-bottom: 10px;
}

.feature-card p {
  color: #666;
  line-height: 1.7;
}

.feature-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 50px rgba(128,90,54,0.25);
}

/* Responsive */
@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
  }

  .hero-features {
    margin-top: 60px;
  }
}

/* WHO WE ARE */
.sdm-who {
  width: 100%;
  padding: 120px 8%;
  background: #fcfcfc;
}

.who-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

/* Intro */
.who-tag {
  display: inline-block;
  background: rgba(128,90,54,0.12);
  color: #805a36;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.who-intro h2 {
  font-size: 3rem;
  line-height: 1.2;
  color: #101f2d;
  margin-bottom: 20px;
}

.who-intro p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 16px;
}

/* Cards */
.who-cards {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.who-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
}

.who-card h4 {
  color: #101f2d;
  margin-bottom: 10px;
}

.who-card p {
  color: #666;
  line-height: 1.7;
}

/* Card variations */
.card-main {
  grid-column: span 2;
  border-left: 6px solid #805a36;
}

.card-offset {
  transform: translateY(25px);
  border-top: 4px solid #805a36;
}

.card-outline {
  background: transparent;
  border: 2px dashed #805a36;
}

/* Hover effects */
.who-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 28px 60px rgba(128,90,54,0.25);
}

/* Responsive */
@media (max-width: 992px) {
  .who-container {
    grid-template-columns: 1fr;
  }

  .who-intro h2 {
    font-size: 2.4rem;
  }

  .who-cards {
    grid-template-columns: 1fr;
  }

  .card-main {
    grid-column: span 1;
  }

  .card-offset {
    transform: none;
  }
}


/* SERVICES SECTION */
.sdm-services {
  width: 100%;
  padding: 120px 6%;
  background: linear-gradient(120deg, #fcfcfc, rgba(116,80,48,0.08));
}

/* Header */
.services-header {
  max-width: 850px;
  margin-bottom: 70px;
}

.services-header span {
  display: inline-block;
  background: rgba(116,80,48,0.15);
  color: #745030;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.services-header h2 {
  font-size: 3rem;
  color: #101f2d;
  margin-bottom: 15px;
}

.services-header p {
  color: #555;
  line-height: 1.8;
}

/* Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
}

/* Service Card */
.service-card {
  background: #ffffff;
  padding: 32px;
  border-radius: 22px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* Accent bar */
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 5px;
  width: 100%;
  background: #745030;
}

/* Hover */
.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 65px rgba(116,80,48,0.25);
}

.service-card h4 {
  color: #101f2d;
  margin-bottom: 10px;
}

.service-card p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 18px;
}

/* List */
.service-card ul {
  list-style: none;
  padding: 0;
}

.service-card ul li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 8px;
  color: #444;
}

.service-card ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #745030;
}

/* Center second row */
.center-row {
  grid-column: span 1;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-header h2 {
    font-size: 2.4rem;
  }
}


/* WHY CHOOSE US */
.sdm-why {
  position: relative;
  width: 100%;
  padding: 120px 8%;
  background: linear-gradient(120deg, #ddccae 40%, #fcfcfc);
  overflow: hidden;
}

/* Soft overlay */
.why-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at bottom left, rgba(128,90,54,0.15), transparent 65%);
  z-index: 1;
}

.why-container {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 90px;
  z-index: 2;
}

/* LEFT STORY */
.why-story .why-tag {
  display: inline-block;
  background: rgba(128,90,54,0.15);
  color: #805a36;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.why-story h2 {
  font-size: 3rem;
  line-height: 1.2;
  color: #101f2d;
  margin-bottom: 20px;
}

.why-story p {
  color: #444;
  line-height: 1.8;
  margin-bottom: 16px;
}

/* TIMELINE */
.why-timeline {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.timeline-item {
  display: flex;
  gap: 25px;
  align-items: flex-start;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(10px);
  padding: 25px;
  border-radius: 18px;
  transition: all 0.4s ease;
}

.timeline-item:hover {
  transform: translateX(10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.step {
  font-size: 1.6rem;
  font-weight: 700;
  color: #805a36;
  min-width: 40px;
}

.timeline-content h4 {
  color: #101f2d;
  margin-bottom: 8px;
}

.timeline-content p {
  color: #555;
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 992px) {
  .why-container {
    grid-template-columns: 1fr;
  }

  .why-story h2 {
    font-size: 2.4rem;
  }
}

/* SUBSCRIBE SECTION */
.sdm-subscribe {
  width: 100%;
  padding: 110px 6%;
  background: #f8f7f5;
}

.subscribe-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Left content */
.subscribe-tag {
  display: inline-block;
  background: rgba(116,80,48,0.15);
  color: #745030;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.subscribe-content h2 {
  font-size: 2.8rem;
  color: #101f2d;
  margin-bottom: 15px;
}

.subscribe-content p {
  color: #555;
  line-height: 1.8;
  max-width: 500px;
}

/* FORM */
.subscribe-form {
  background: #ffffff;
  padding: 45px;
  border-radius: 25px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.1);
  transition: transform 0.4s ease;
}

.subscribe-form:hover {
  transform: translateY(-10px);
}

/* Input group */
.input-group {
  position: relative;
  margin-bottom: 30px;
}

.input-group input {
  width: 100%;
  padding: 16px 14px;
  border-radius: 12px;
  border: 1.5px solid #ddd;
  outline: none;
  font-size: 15px;
  transition: all 0.3s ease;
  background: transparent;
}

.input-group label {
  position: absolute;
  top: 50%;
  left: 14px;
  color: #888;
  font-size: 14px;
  transform: translateY(-50%);
  pointer-events: none;
  transition: all 0.3s ease;
  background: #fff;
  padding: 0 6px;
}

/* Floating label */
.input-group input:focus,
.input-group input:valid {
  border-color: #745030;
}

.input-group input:focus + label,
.input-group input:valid + label {
  top: -8px;
  font-size: 12px;
  color: #745030;
}

/* Date label fix */
.date-label {
  top: -8px;
  font-size: 12px;
  color: #745030;
}

/* Buttons */
.form-actions {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.btn-subscribe,
.btn-unsubscribe {
  flex: 1;
  padding: 14px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.4s ease;
}

/* Subscribe */
.btn-subscribe {
  background: #745030;
  color: #fff;
}

.btn-subscribe:hover {
  background: #5f4026;
  box-shadow: 0 15px 35px rgba(116,80,48,0.4);
  transform: translateY(-4px);
}

/* Unsubscribe */
.btn-unsubscribe {
  background: transparent;
  border: 2px solid #745030;
  color: #745030;
}

.btn-unsubscribe:hover {
  background: #745030;
  color: #fff;
  transform: translateY(-4px);
}

/* Responsive */
@media (max-width: 900px) {
  .subscribe-container {
    grid-template-columns: 1fr;
  }

  .subscribe-content h2 {
    font-size: 2.3rem;
  }
}
/* POPUP OVERLAY */
.sdm-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  z-index: 9999;
}

/* ACTIVE STATE */
.sdm-popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* POPUP BOX */
.sdm-popup {
  background: #ffffff;
  padding: 40px;
  border-radius: 25px;
  width: 90%;
  max-width: 420px;
  text-align: center;
  transform: scale(0.8);
  transition: all 0.4s ease;
}

.sdm-popup-overlay.active .sdm-popup {
  transform: scale(1);
}

/* ICON */
.popup-icon {
  width: 70px;
  height: 70px;
  background: rgba(116,80,48,0.15);
  color: #745030;
  font-size: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

/* TEXT */
.sdm-popup h3 {
  color: #101f2d;
  margin-bottom: 10px;
}

.sdm-popup p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* BUTTON */
.popup-btn {
  background: #745030;
  color: #fff;
  border: none;
  padding: 14px 30px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s ease;
}

.popup-btn:hover {
  background: #5f4026;
  box-shadow: 0 15px 35px rgba(116,80,48,0.4);
}

/* CLOSE */
.popup-close {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 22px;
  cursor: pointer;
  color: #999;
}

.popup-close:hover {
  color: #745030;
}


/* FAQ SECTION */
.sdm-faq {
  width: 100%;
  padding: 120px 6%;
  background: linear-gradient(120deg, #f8f7f5, #ffffff);
}

.faq-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: flex-start;
}

/* Intro */
.faq-tag {
  display: inline-block;
  background: rgba(116,80,48,0.15);
  color: #745030;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.faq-intro h2 {
  font-size: 2.8rem;
  color: #101f2d;
  margin-bottom: 15px;
}

.faq-intro p {
  color: #555;
  line-height: 1.8;
}

/* FAQ List */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* FAQ Item */
.faq-item {
  background: #ffffff;
  border-radius: 22px;
  padding: 26px 30px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  cursor: pointer;
}

.faq-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(116,80,48,0.25);
}

/* Question */
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question h4 {
  color: #101f2d;
}

/* Icon */
.faq-question .icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(116,80,48,0.12);
  color: #745030;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: transform 0.4s ease;
}

/* Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.4s ease;
  opacity: 0;
}

.faq-answer p {
  color: #555;
  line-height: 1.7;
  margin-top: 18px;
}

/* Active */
.faq-item.active .faq-answer {
  max-height: 200px;
  opacity: 1;
}

.faq-item.active .icon {
  transform: rotate(45deg);
  background: #745030;
  color: #fff;
}

/* Responsive */
@media (max-width: 900px) {
  .faq-container {
    grid-template-columns: 1fr;
  }

  .faq-intro h2 {
    font-size: 2.3rem;
  }
}

/* CONTACT SECTION */
.sdm-contact {
  width: 100%;
  padding: 120px 6%;
  background: linear-gradient(120deg, #fcfcfc, rgba(116,80,48,0.08));
}

.contact-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Left content */
.contact-tag {
  display: inline-block;
  background: rgba(116,80,48,0.15);
  color: #745030;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.contact-info h2 {
  font-size: 2.8rem;
  color: #101f2d;
  margin-bottom: 15px;
}

.contact-info p {
  color: #555;
  line-height: 1.8;
  max-width: 500px;
}

.contact-highlights {
  margin-top: 35px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-highlights div strong {
  color: #101f2d;
  display: block;
}

.contact-highlights div span {
  color: #666;
  font-size: 14px;
}

/* FORM */
.contact-form {
  background: #ffffff;
  padding: 45px;
  border-radius: 26px;
  box-shadow: 0 30px 65px rgba(0,0,0,0.1);
  transition: transform 0.4s ease;
}

.contact-form:hover {
  transform: translateY(-10px);
}

/* Inputs */
.input-group {
  position: relative;
  margin-bottom: 30px;
}

.input-group input,
.input-group select {
  width: 100%;
  padding: 16px 14px;
  border-radius: 12px;
  border: 1.5px solid #ddd;
  font-size: 15px;
  outline: none;
  background: transparent;
  transition: all 0.3s ease;
}

.input-group label {
  position: absolute;
  top: 50%;
  left: 14px;
  color: #888;
  font-size: 14px;
  transform: translateY(-50%);
  background: #fff;
  padding: 0 6px;
  pointer-events: none;
  transition: all 0.3s ease;
}

/* Floating label */
.input-group input:focus,
.input-group input:valid,
.input-group select:focus,
.input-group select:valid {
  border-color: #745030;
}

.input-group input:focus + label,
.input-group input:valid + label,
.input-group select:focus + label,
.input-group select:valid + label {
  top: -8px;
  font-size: 12px;
  color: #745030;
}

/* Button */
.contact-btn {
  width: 100%;
  padding: 16px;
  border-radius: 40px;
  border: none;
  background: #745030;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s ease;
}

.contact-btn:hover {
  background: #5f4026;
  box-shadow: 0 18px 40px rgba(116,80,48,0.45);
  transform: translateY(-4px);
}

/* POPUP */
.contact-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  z-index: 9999;
}

.contact-popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.contact-popup {
  background: #ffffff;
  padding: 40px;
  border-radius: 26px;
  width: 90%;
  max-width: 420px;
  text-align: center;
  transform: scale(0.85);
  transition: all 0.4s ease;
}

.contact-popup-overlay.active .contact-popup {
  transform: scale(1);
}

.popup-icon {
  width: 70px;
  height: 70px;
  background: rgba(116,80,48,0.15);
  color: #745030;
  font-size: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.contact-popup h3 {
  color: #101f2d;
  margin-bottom: 10px;
}

.contact-popup p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 25px;
}

.contact-popup button {
  background: #745030;
  color: #fff;
  border: none;
  padding: 14px 30px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
}

/* Close */
.popup-close {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 22px;
  cursor: pointer;
  color: #999;
}

.popup-close:hover {
  color: #745030;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
  }

  .contact-info h2 {
    font-size: 2.3rem;
  }
}

/* TERMS SECTION */
.sdm-terms {
  width: 100%;
  padding: 120px 6%;
  background: linear-gradient(120deg, #f8f7f5, rgba(216,197,167,0.35));
}

.terms-wrapper {
  max-width: 1250px;
  margin: auto;
}

/* Header */
.terms-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 80px;
}

.terms-tag {
  display: inline-block;
  padding: 8px 22px;
  border-radius: 30px;
  background: rgba(216,197,167,0.35);
  color: #6b5638;
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.terms-header h2 {
  font-size: 3rem;
  color: #101f2d;
  margin-bottom: 15px;
}

.terms-header p {
  color: #555;
  line-height: 1.8;
}

/* Grid */
.terms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* Cards */
.terms-card {
  background: rgba(255,255,255,0.9);
  padding: 35px 30px;
  border-radius: 26px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.08);
  position: relative;
  overflow: hidden;
  transition: all 0.45s ease;
}

/* Decorative hover line */
.terms-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
    transparent,
    #d8c5a7,
    transparent
  );
  transition: all 0.6s ease;
}

/* Hover */
.terms-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 35px 80px rgba(216,197,167,0.45);
}

.terms-card:hover::before {
  left: 0;
}

/* Text */
.terms-card h4 {
  color: #3b2e1f;
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.terms-card p {
  color: #666;
  line-height: 1.7;
  font-size: 15px;
}

/* Footer */
.terms-footer {
  margin-top: 70px;
  text-align: center;
  padding-top: 40px;
   border-top: 1px dashed rgba(216,197,167,0.6);
}

.terms-footer p {
  color: #555;
  font-size: 15px;
}

/* Scroll animation (optional) */
.terms-card {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 0.9s ease forwards;
}

.terms-card:nth-child(odd) {
  animation-delay: 0.2s;
}
.terms-card:nth-child(even) {
  animation-delay: 0.35s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .terms-header h2 {
    font-size: 2.4rem;
  }
}


/* PRIVACY SECTION */
.sdm-privacy {
  width: 100%;
  padding: 120px 6%;
  background: linear-gradient(120deg, #f8f7f5, rgba(216,197,167,0.35));
}

.privacy-wrapper {
  max-width: 1250px;
  margin: auto;
}

/* Header */
.privacy-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 80px;
}

.privacy-tag {
  display: inline-block;
  padding: 8px 22px;
  border-radius: 30px;
  background: rgba(216,197,167,0.4);
  color: #6b5638;
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.privacy-header h2 {
  font-size: 3rem;
  color: #101f2d;
  margin-bottom: 15px;
}

.privacy-header p {
  color: #555;
  line-height: 1.8;
}

/* Grid */
.privacy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* Cards */
.privacy-card {
  background: rgba(255,255,255,0.92);
  padding: 35px 30px;
  border-radius: 26px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.08);
  position: relative;
  overflow: hidden;
  transition: all 0.45s ease;
}

/* Animated top accent */
.privacy-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, transparent, #d8c5a7, transparent);
  transition: all 0.6s ease;
}

/* Hover effects */
.privacy-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 35px 80px rgba(216,197,167,0.45);
}

.privacy-card:hover::before {
  left: 0;
}

/* Text */
.privacy-card h4 {
  color: #3b2e1f;
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.privacy-card p {
  color: #666;
  line-height: 1.7;
  font-size: 15px;
}

/* Footer */
.privacy-footer {
  margin-top: 70px;
  text-align: center;
  padding-top: 40px;
  border-top: 1px dashed rgba(216,197,167,0.6);
}

.privacy-footer p {
  color: #555;
  font-size: 15px;
}

/* Entry animation */
.privacy-card {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUpPrivacy 0.9s ease forwards;
}

.privacy-card:nth-child(odd) { animation-delay: 0.2s; }
.privacy-card:nth-child(even) { animation-delay: 0.35s; }

@keyframes fadeUpPrivacy {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .privacy-header h2 {
    font-size: 2.4rem;
  }
}


/* FOOTER BASE */
.sdm-footer {
  width: 100%;
  background: #fcfcfc;
  padding: 80px 6% 30px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.footer-container {
  max-width: 1250px;
  margin: auto;
}

/* Logo */
.footer-logo {
  font-size: 1.7rem;
  font-weight: 700;
  color: #101f2d;
  margin-bottom: 15px;
}

/* About */
.footer-about {
  color: #555;
  line-height: 1.8;
  font-size: 15px;
}

/* Titles */
.footer-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #101f2d;
  margin-bottom: 18px;
  position: relative;
}

.footer-title::after {
  content: "";
  width: 35px;
  height: 3px;
  background: #d8c5a7;
  position: absolute;
  left: 0;
  bottom: -8px;
  border-radius: 5px;
}

/* Links */
.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #555;
  text-decoration: none;
  font-size: 15px;
  position: relative;
  transition: all 0.3s ease;
}

.footer-links a::before {
  content: "";
  position: absolute;
  left: -12px;
  top: 50%;
  width: 6px;
  height: 6px;
  background: #d8c5a7;
  border-radius: 50%;
  opacity: 0;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #101f2d;
  padding-left: 8px;
}

.footer-links a:hover::before {
  opacity: 1;
}

/* Button */
.footer-btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 30px;
  background: #101f2d;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.4s ease;
  margin-bottom: 15px;
}

.footer-btn:hover {
  background: #3b2e1f;
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

/* Contact */
.footer-contact p {
  font-size: 14px;
  color: #555;
  margin-bottom: 6px;
}

/* Divider */
.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, #d8c5a7, transparent);
  margin: 40px 0 25px;
}

/* Bottom */
.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  text-align: center;
}

.footer-bottom p {
  font-size: 14px;
  color: #555;
}

/* Socials */
.footer-socials i {
  font-size: 18px;
  margin: 0 10px;
  color: #555;
  cursor: pointer;
  transition: all 0.3s ease;
}

.footer-socials i:hover {
  color: #101f2d;
  transform: translateY(-4px);
}

/* Responsive */
@media (max-width: 768px) {
  .footer-bottom {
    gap: 10px;
  }
}
