
/** =========================================================
 TYPOGRAPHY
========================================================= */

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  color: var(--body-text-color);
}

h1, .h1 { font-size: 68px; }
h2, .h2 { font-size: 48px; }

p {
  font-family: "Work Sans", sans-serif;
  color: var(--light-text-color);
  font-size: 18px;
}

@media (max-width: 500px) {
  h1, .h1 { font-size: 58px; }
  h2, .h2 { font-size: 40px; }
}



/** =========================================================
 SPACING UTILITIES
========================================================= */

.padding-large { padding-top: 20rem; }
.padding-medium { padding: 6rem 0; }
.padding-medium-2 { padding-top: 14rem; padding-bottom: 6rem; }

@media (max-width: 768px) {
  .padding-large { padding-top: 18rem; }
  .padding-medium { padding: 5rem 0; }
  .padding-medium-2 { padding-top: 12rem; }
}

/** =========================================================
 BOOTSTRAP BUTTON OVERRIDES
========================================================= */

.btn {
  --bs-btn-border-radius: 10rem;
  --bs-btn-padding-x: 2rem;
  --bs-btn-padding-y: 1rem;
}

.btn-primary {
  --bs-btn-bg: var(--accent-color);
  --bs-btn-border-color: var(--accent-color);
}

.btn-outline-primary {
  --bs-btn-color: var(--accent-color);
  --bs-btn-border-color: var(--accent-color);
}

/** =========================================================
 BILLBOARD SECTION
========================================================= */

.form-select {
  border: 1px solid transparent;
}

.billboard-select {
  border-right: 1px solid #e8e8e8;
  padding-right: 20px;
  padding-top: 25px;
}

.billboard-row { background-color: white; }

.billboard-search {
  padding: 24px;
  border: 5px solid white;
  width: 100%;
}

@media (max-width: 1000px) {
  .billboard-row { background-color: transparent; }
}

/** =========================================================
 CARD RESET
========================================================= */

.card {
  background-color: transparent !important;
  --bs-card-border-width: none;
}

/** =========================================================
 TESTIMONIAL SECTION
========================================================= */

.testimonial-p {
  font-size: 32px;
  color: var(--body-text-color);
}

.testimonial-arrow {
  color: var(--body-text-color);
  --swiper-navigation-size: 30px;
}

@media (max-width: 900px) {
  .testimonial-p { font-size: 25px; }
}

/** =========================================================
 BLOG & POST STYLES
========================================================= */

.pagination {
  --bs-pagination-color: var(--dark-color);
  --bs-pagination-active-bg: var(--accent-color);
}

.post-item .btn-link {
  display: block;
  margin-top: 20px;
  color: var(--light-text-color);
}

.post-item .btn-link::after {
  content: "";
  display: block;
  width: 20px;
  border-bottom: 1px solid var(--light-text-color);
  transition: width 0.3s;
}

.post-item .btn-link:hover::after { width: 90px; }

/** =========================================================
 ACCORDION & UI COMPONENTS
========================================================= */

.accordion {
  --bs-accordion-color: var(--light-text-color);
  --bs-accordion-btn-color: var(--body-text-color);
}

.nav-tabs {
  border-bottom: 1px solid var(--light-text-color);
}

.bg-primary {
  background-color: var(--accent-color) !important;
}

/** =========================================================
 ABOUT SECTION
========================================================= */

.about-section { background: #0b1528; }

.about-card {
  background: #fff;
  padding: 40px 25px;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.4s;
}

.about-card:hover {
  transform: translateY(-12px);
}

/** =========================================================
 SERVICES / INTERACTIVE CARDS
========================================================= */

.interactive-card {
  transition: 0.35s;
}

.interactive-card img {
  height: 180px;
  width: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.interactive-card:hover img {
  transform: scale(1.08);
}

/** =========================================================
 ANIMATIONS
========================================================= */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/** =========================================================
 TOP BAR
========================================================= */

.top-bar {
  background: var(--accent-color);
  color: #fff;
  font-size: 14px;
  padding: 8px 20px;
}

/** =========================================================
 MAIN NAVBAR
========================================================= */

.main-navbar {
  background: #fff;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  padding: 18px 20px;
  z-index: 9999;
}

.navbar-brand {
  font-size: 34px;
  font-weight: 800;
}

.nav-link {
  color: #000;
  margin: 0 12px;
  position: relative;
}

@media (max-width: 991px) {
  .top-bar { display: none; }
}


/* home page  */

/* ==========================================================
   SOCIALHOOD HERO SLIDER
========================================================== */

.sh-hero-section {
  position: relative;
  height: 960px;
  overflow: hidden;
}

/* Slider */
.sh-hero-slider {
  height: 100%;
  position: relative;
}

/* Slide */
.sh-hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1s ease, transform 1.2s ease;
  display: flex;
  align-items: center;
}

.sh-hero-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

/* Overlay */
.sh-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.65),
    rgba(0,0,0,0.35)
  );
  z-index: 1;
}

/* Content */
.sh-hero-container {
  position: relative;
  z-index: 2;
  padding-top: 6rem;
}

/* Text */
.sh-hero-tagline {
  display: inline-block;
  color: #fdb445;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.sh-hero-title {
  font-size: 72px;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 25px;
}

.sh-hero-title span {
  color: #fdb445;
}

.sh-hero-description {
  color: #e5e5e5;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 45px;
}

/* Buttons */
.sh-hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.sh-btn-primary {
  background: #fdb445;
  color: #000;
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.sh-btn-primary:hover {
  background: #fff;
  transform: translateY(-3px);
}

.sh-btn-outline {
  border: 2px solid #fff;
  color: #fff;
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.sh-btn-outline:hover {
  background: #fff;
  color: #000;
}

/* ==========================================================
   HERO SLIDER ARROWS
========================================================== */

.sh-hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 26px;
  cursor: pointer;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.sh-hero-arrow:hover {
  background: #fdb445;
  color: #000;
  transform: translateY(-50%) scale(1.08);
}

.sh-hero-prev {
  left: 30px;
}

.sh-hero-next {
  right: 30px;
}

/* Hide arrows on very small screens */
@media (max-width: 576px) {
  .sh-hero-arrow {
    width: 44px;
    height: 44px;
    font-size: 22px;
  }
}




/* =========================================
   Socialhood Why Us  Cards Section
   ========================================= */

.about-section {
  background: linear-gradient(135deg, #e3f2fd, #bbdefb);
  padding: 90px 0;
  position: relative;
}

/* ---------- Section Heading ---------- */

.about-section .sh-about-highlight {
  color: #FDB445; /* Socialhood brand color */
  font-weight: 700;
}


.about-section h2 {
  font-size: 38px;
  color: #060606;
  margin-bottom: 10px;
}

.about-section h2 span {
  color: #fdb445;
}

.about-section p {
  font-size: 16px;
  color: #bcbcbc;
  max-width: 600px;
  margin: auto;
}

/* ---------- About Cards ---------- */

.about-card {
  background: #f0f5ff;
  border-radius: 18px;
  padding: 45px 30px;
  height: 100%;
  transition: all 0.4s ease;
  backdrop-filter: blur(6px);
  box-shadow: 0 20px 45px rgba(40, 0, 160, 0.4);
  border: 1px solid rgba(0, 14, 108, 0.08);
}

.about-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 65px rgba(240, 244, 34, 0.35);
  border-color: rgba(253, 180, 69, 0.4);
}

/* ---------- Icons ---------- */

.about-card i {
  font-size: 48px;
  color: #fdb445;
  margin-bottom: 22px;
  display: inline-block;
}

/* ---------- Card Content ---------- */

.about-card h4 {
  font-size: 20px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 12px;
}

.about-card p {
  font-size: 15px;
  color: #3e3b3b;
  line-height: 1.7;
}

/* ---------- Fade Animation ---------- */

.animate-fade {
  opacity: 0;
  transform: translateY(35px);
  animation: sh-fade-up 0.9s ease forwards;
}

.delay-1 {
  animation-delay: 0.2s;
}

.delay-2 {
  animation-delay: 0.4s;
}

@keyframes sh-fade-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- Responsive ---------- */

@media (max-width: 991px) {
  .about-section h2 {
    font-size: 32px;
  }

  .about-card {
    padding: 35px 25px;
  }
}

@media (max-width: 575px) {
  .about-section {
    padding: 65px 0;
  }

  .about-section h2 {
    font-size: 28px;
  }

  .about-card i {
    font-size: 42px;
  }
}


/* ==========================================================
   RESPONSIVE
========================================================== */
@media (max-width: 991px) {
  .sh-hero-section {
    height: 820px;
  }

  .sh-hero-title {
    font-size: 54px;
  }
}

@media (max-width: 576px) {
  .sh-hero-section {
    height: 760px;
  }

  .sh-hero-title {
    font-size: 40px;
  }

  .sh-hero-description {
    font-size: 16px;
  }
}

.sh-hero-arrow {
  z-index: 10;
}





/* =====================================================
 OUR SERVICES GALLERY 
===================================================== */

.shg-gallerys-section {
  background: linear-gradient(135deg, #fff3e0, #f3e2c9);
}

/* Heading Styling */
.shg-heading h2 {
  font-size: 38px;
  color: #060606;
  margin-bottom: 10px;
  font-weight: 700;
}

/* Highlighted Word */
.shg-highlight {
  color: #7A5858; /* Socialhood brand color */
  font-weight: 700;
}


.shg-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  grid-auto-flow: dense;
  gap: 24px;
}

/* Base item */
.shg-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  cursor: pointer;
}

/* Images */
.shg-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: 
    filter 0.4s ease,
    transform 0.5s ease;
}

/* Hover image */
.shg-gallery-item:hover img {
  filter: grayscale(0%);
  transform: scale(1.08);
}

/* Caption */
.shg-gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 16px;
  font-size: 16px;
  font-weight: 800;
  color: #000000;
  background: linear-gradient(
    to top,
    rgba(252, 241, 148, 0.75),
    rgba(0,0,0,0)
  );
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
  pointer-events: none;
}

/* Caption show on hover */
.shg-gallery-item:hover .shg-gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

/* Size modifiers */
.shg-span-tall {
  grid-row: span 2;
}

.shg-span-wide {
  grid-column: span 2;
}

/* Responsive */
@media (max-width: 992px) {
  .shg-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .shg-gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .shg-gallery-item {
    grid-column: auto !important;
    grid-row: auto !important;
  }
}






/* =====================================================
   OUR CLIENTS – CAT STYLE INTERACTIVE GALLERY
===================================================== */

/* Clients Section Heading */
.shg-clients-heading h2 {
  font-size: 38px;
  color: #060606;
  margin-bottom: 10px;
  font-weight: 700;
}

/* Highlighted Word */
.shg-clients-highlight {
  color: #FDB445; /* Socialhood brand color */
  font-weight: 700;
}


.shg-gallery-section {
  background:#f0eae4;
}

.shg-card-gallery {
  display: flex;
  margin: 6vmin 8vmin 6vmin; /* top | left-right | bottom */
  overflow: hidden;
  height: 70vh;
  transform: skew(-5deg);
  background-color: #f0eae4;
}


/* Card */
.shg-card {
  flex: 1;
  position: relative;
  overflow: hidden;
  transition: all 1s ease-in-out;
}

/* Image */
.shg-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 1s ease-in-out;
}

/* Text  */
.shg-card-head {
  position: absolute;
  bottom: 0;
  left: 0;
  min-width: 100%;
  padding: 0.6em;
  background: rgba(0, 0, 0, 0.75);
  color: #ffffff;
  font-size: 1em;
  text-align: center;
  white-space: nowrap;

  transform: rotate(-90deg);
  transform-origin: 0% 0%;
  transition: all 0.5s ease-in-out;
}

/* Hover Effect */
.shg-card:hover {
  flex-grow: 10;
}

/* Hover Text Animation (EXACT MATCH) */
.shg-card:hover .shg-card-head {
  top: calc(100% - 2.2em);
  bottom: auto;
  transform: rotate(0deg) skew(-5deg);
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 2em;
}

/* Spacing between cards */
.shg-card:not(:last-child) {
  margin-right: 1em;
}

/* Responsive */
@media (max-width: 992px) {
  .shg-card-gallery {
    flex-direction: column;
    height: auto;
    transform: none;
  }

  .shg-card {
    height: 280px;
    margin-bottom: 16px;
  }

  .shg-card-head {
    transform: rotate(0);
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 1.2em;
  }
}


/* Button Wrapper */
.shg-clients-btn-wrap {
  margin-top: 40px;
}

/* Button Style */
.shg-clients-btn {
  display: inline-block;
  padding: 14px 36px;
  font-size: 16px;
  font-weight: 600;
  color: #060606;
  border: 2px solid #FDB445;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  background: transparent;
}

/* Highlight Word Inside Button */
.shg-clients-btn span {
  color: #FDB445;
}

/* Hover Effect */
.shg-clients-btn:hover {
  background: #FDB445;
  color: #060606;
  transform: translateY(-2px);
}

.shg-clients-btn:hover span {
  color: #060606;
}



/* ------------------------------------------------ */

/* =========================================
   Socialhood - Help / Why Socialhood Section
   Fully Isolated Styling
   ========================================= */

/* Main Section */
.sh-help-section {
  background: linear-gradient(135deg, #f3e5f5, #e1bee7);
  padding: 90px 0;
  overflow: hidden;
}

/* ---------- Image Side ---------- */

.sh-help-image-wrap {
  text-align: center;
}

.sh-help-image {
  max-width: 90%;
  border-radius: 18px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0);
  animation: sh-help-float 6s ease-in-out infinite;
}

/* Floating animation */
@keyframes sh-help-float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
  100% { transform: translateY(0); }
}

/* ---------- Content Side ---------- */

.sh-help-content {
  color: #000000;
}

/* Small heading */
.sh-help-kicker {
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #f500cc;
  margin-bottom: 8px;
  font-weight: 800;
}

/* Main heading */
.sh-help-title {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 14px;
}

.sh-help-title span {
  background: linear-gradient(135deg, #d545fd, #b700ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Description */
.sh-help-desc {
  font-size: 16px;
  line-height: 1.7;
  color: #09010b;
  max-width: 520px;
}

/* ---------- Feature List ---------- */

.sh-help-features {
  margin-top: 26px;
  padding: 0;
}

.sh-help-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: #040404;
  margin-bottom: 14px;
}

.sh-help-features i {
  color: #de45fd;
  font-size: 18px;
}

/* ---------- CTA Button ---------- */

.sh-help-btn {
  background: linear-gradient(135deg, #c540fa, #c800ff);
  border: none;
  padding: 14px 34px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 50px;
  box-shadow: 0 12px 35px rgba(147, 14, 180, 0.4);
  transition: all 0.35s ease;
}

.sh-help-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(240, 31, 202, 0.55);
}

/* ---------- Animations ---------- */

.sh-help-animate-left {
  opacity: 0;
  transform: translateX(-40px);
  animation: sh-help-slide-left 1s ease forwards;
}

.sh-help-animate-right {
  opacity: 0;
  transform: translateX(40px);
  animation: sh-help-slide-right 1s ease forwards;
}

@keyframes sh-help-slide-left {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes sh-help-slide-right {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ---------- Responsive ---------- */

@media (max-width: 991px) {
  .sh-help-title {
    font-size: 32px;
  }

  .sh-help-desc {
    max-width: 100%;
  }

  .sh-help-image {
    max-width: 100%;
  }
}

@media (max-width: 575px) {
  .sh-help-section {
    padding: 65px 0;
  }

  .sh-help-title {
    font-size: 28px;
  }

  .sh-help-btn {
    width: 100%;
    text-align: center;
  }
}




/* --------------------------------------------- */
/* ===============================
   SOCIALHOOD FEEDBACK SECTION
================================ */

/* Feedback Section Heading */
.sh-feedback-heading {
  font-size: 38px;
  color: #ffffff; /* white for dark background */
  font-weight: 700;
  margin-bottom: 10px;
}

/* Highlighted Word */
.sh-feedback-highlight {
  color: #FDB445; /* Socialhood brand color */
  font-weight: 700;
}


.sh-feedback-section {
  padding: 5rem 0;
  background: #E5BEB5;
  overflow: hidden;
}

.sh-feedback-heading {
  text-align: center;
  color: #fff;
  font-size: 2.2rem;
  margin-bottom: 3rem;
}

/* Marquee Wrapper */
.sh-feedback-marquee {
  overflow: hidden;
  width: 100%;
}

/* Scrolling Track */
.sh-feedback-cards {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: sh-scroll 30s linear infinite;
}

/* Pause scroll on hover */
.sh-feedback-marquee:hover .sh-feedback-cards {
  animation-play-state: paused;
}

/* Card */
.sh-feedback-card {
  width: 280px;
  height: 380px;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s ease, filter 0.4s ease, opacity 0.4s ease;
}

/* Image */
.sh-feedback-card img {
  width: 100%;
  height: 55%;
  object-fit: cover;
}

/* Content */
.sh-feedback-content {
  padding: 1rem 1.25rem;
  color: #fff;
}

.sh-feedback-content h4 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  font-weight: bold;
  color: #fdb445;
}

.sh-feedback-content p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #000000;
}

/* ===============================
   HOVER FOCUS EFFECT
================================ */

/* Blur only non-hovered cards */
.sh-feedback-cards:hover .sh-feedback-card:not(:hover) {
  filter: blur(4px);
  opacity: 0.45;
}

/* Active card */
.sh-feedback-card:hover {
  filter: blur(0);
  opacity: 1;
  transform: scale(1.1);
  z-index: 10;
}

/* ===============================
   KEYFRAMES
================================ */

@keyframes sh-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ===============================
   MOBILE
================================ */

@media (max-width: 768px) {
  .sh-feedback-cards {
    animation-duration: 45s;
  }
}




/* ==================================================
   SOCIALHOOD CONTACT FORM (ISOLATED)
================================================== */

.sh-contact-section {
  padding: 100px 0;
  background: #FFDCDC;
}
/* Contact Section Heading */
.sh-contact-heading {
  font-size: 38px;
  color: #060606; /* adjust if section background is dark */
  font-weight: 700;
  margin-bottom: 10px;
}

/* Highlighted Word */
.sh-contact-highlight {
  color: #7A5858; /* Socialhood brand color */
  font-weight: 700;
}


.sh-contact-wrapper {
  max-width: 1100px;
  margin: auto;
  display: flex;
  background: #EDDFE0;
  backdrop-filter: blur(16px);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 90px rgba(255, 255, 255, 0.6);
}

/* Left Image */
.sh-contact-image {
  width: 60%;
}

.sh-contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Right Form */
.sh-contact-form-box {
  width: 50%;
  padding: 60px;
  display: flex;
  align-items: center;
}

.sh-contact-form {
  width: 100%;
}

.sh-contact-title {
  font-size: 26px;
  color: #343434;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}

.sh-contact-subtitle {
  font-size: 14px;
  color: #696969;
  margin-bottom: 35px;
}

/* Rows */
.sh-contact-row {
  display: flex;
  gap: 18px;
}

/* Fields */
.sh-contact-field {
  width: 100%;
  margin-bottom: 22px;
}

.sh-contact-field label {
  font-size: 12px;
  color: #696969;
  margin-bottom: 8px;
  display: block;
}

.sh-contact-field input,
.sh-contact-field textarea {
  width: 100%;
  background: rgba(65, 65, 65, 0.08);
  border: 1px solid transparent;
  border-radius: 22px;
  padding: 12px 18px;
  color: #000000;
  font-size: 13px;
  transition: all 0.3s ease;
}

.sh-contact-field textarea {
  height: 120px;
  resize: none;
  border-radius: 16px;
}

.sh-contact-field input::placeholder,
.sh-contact-field textarea::placeholder {
  color: #ffffff;
}

.sh-contact-field input:focus,
.sh-contact-field textarea:focus {
  outline: none;
  border-color: #f8cbee;
  background: rgba(255, 255, 255, 0.12);
}

/* Button */
.sh-contact-btn {
  width: 180px;
  height: 46px;
  border: none;
  border-radius: 30px;
  background: linear-gradient(135deg, #eacab7, #AB886D);
  color: #493628;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 14px 40px rgba(246, 154, 200, 0.45);
  transition: all 0.4s ease;
}

.sh-contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 55px rgba(255, 124, 172, 0.65);
}

/* Responsive */
@media (max-width: 900px) {
  .sh-contact-wrapper {
    flex-direction: column;
  }

  .sh-contact-image,
  .sh-contact-form-box {
    width: 100%;
  }

  .sh-contact-form-box {
    padding: 40px 25px;
  }

  .sh-contact-row {
    flex-direction: column;
  }
}



/* =========================
   SocialHood Footer Styles
   ========================= */

.shb-footer {
  background: #D0B8A8;
  padding: 25px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-family: 'Poppins', sans-serif;
}

/* Footer Layout */
.shb-footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

/* =========================
   Left Section – Brand
   ========================= */

.shb-footer-left {
  justify-self: start;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.shb-footer-logo {
  font-size: 26px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.5px;
}

.shb-footer-logo span {
  color: #795757;
}

.shb-footer-tagline {
  font-size: 13px;
  color: #ffffff;
}

/* =========================
   Center Section – Copyright
   ========================= */

.shb-footer-center {
  justify-self: center;
  font-size: 13px;
  color: #888888;
  text-align: center;
}

/* =========================
   Right Section – Social Icons
   ========================= */

.shb-footer-right {
  justify-self: end;
  display: flex;
  gap: 15px;
}

.shb-footer-right a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.shb-footer-right a:hover {
  background: #795757;
  color: #000000;
  transform: translateY(-4px);
}

/* =========================
   Responsive (Mobile)
   ========================= */

@media (max-width: 768px) {
  .shb-footer-container {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .shb-footer-left,
  .shb-footer-center,
  .shb-footer-right {
    justify-self: center;
    text-align: center;
  }

  .shb-footer-right {
    margin-top: 10px;
  }
}
