/* ===================================
   GLOBAL STYLES & RESET
   =================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Color Palette - Orange, White, Black */
  --vivid-orange: #e33a01;
  --vivid-orange-light: #ff6a32;
  --vivid-orange-dark: #c23100;

  /* Base Colors */
  --pure-white: #ffffff;
  --pure-black: #000000;
  --text-black: #111111;
  --text-gray: #555555;
  --text-light: #666666;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--pure-white);
  color: var(--text-black);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ===================================
   NAVBAR - WHITE WITH ORANGE ACCENT
   =================================== */
.navbar {
  background: var(--pure-white);
  padding: 20px 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
  padding: 14px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 32px;
  font-weight: 800;
  color: var(--text-black);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.3s ease;
  cursor: pointer;
  letter-spacing: 0px;
}

.logo:hover {
  transform: scale(1.03);
}

.logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.logo span {
  color: var(--vivid-orange);
  font-weight: 900;
}

.navbar nav {
  display: flex;
  gap: 8px;
}

.navbar nav a {
  padding: 10px 20px;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  color: var(--text-black);
  position: relative;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar nav a::before {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--vivid-orange);
  transition: width 0.3s ease;
}

.navbar nav a:hover {
  background: rgba(227, 58, 1, 0.08);
  color: var(--vivid-orange);
  transform: translateY(-2px);
}

.navbar nav a:hover::before {
  width: 60%;
}

/* ===================================
   HERO SECTION - SOFT WARMTH
   =================================== */
.hero {
  padding: 200px 0 160px;
  /* Soft Orange Tint instead of Pure White */
  background: linear-gradient(180deg, #fff5f0 0%, #fff 100%);
  position: relative;
  text-align: center;
  overflow: hidden;
}

/* Strengthened Geometric Pattern */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 15% 50%, rgba(227, 58, 1, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 85% 30%, rgba(227, 58, 1, 0.06) 0%, transparent 40%);
  pointer-events: none;
}

/* More Visible Decorative Accent */
.hero::after {
  content: "";
  position: absolute;
  top: -80px;
  right: -50px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(227, 58, 1, 0.12) 0%, transparent 60%);
  filter: blur(60px);
  animation: floatSlow 15s ease-in-out infinite;
}

@keyframes floatSlow {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(-20px, 20px) scale(1.05);
  }
}

.hero-inner {
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  letter-spacing: 4px;
  font-size: 12px;
  color: var(--vivid-orange);
  margin-bottom: 24px;
  font-weight: 800;
  text-transform: uppercase;
  animation: fadeDown 0.6s ease forwards;
  /* Solid light orange background for better visibility */
  background: rgba(227, 58, 1, 0.1);
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  border: 1px solid rgba(227, 58, 1, 0.2);
}

.hero h1 {
  font-size: 62px;
  font-weight: 800;
  color: var(--text-black);
  line-height: 1.15;
  margin-bottom: 24px;
  animation: fadeDown 0.8s ease forwards;
  opacity: 0;
  letter-spacing: -1px;
}

.hero p {
  font-size: 19px;
  color: var(--text-gray);
  max-width: 680px;
  margin: 0 auto;
  animation: fadeDown 1s ease forwards;
  opacity: 0;
  font-weight: 400;
  line-height: 1.8;
}

@keyframes fadeDown {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===================================
   HERO STATS - ACCENTED & ALIGNED
   =================================== */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 60px;
  flex-wrap: wrap;
  animation: fadeUp 1.2s ease forwards;
  opacity: 0;
}

.stat {
  background: var(--pure-white);
  border-top: 4px solid var(--vivid-orange);
  min-width: 180px;
  max-width: 240px;
  border-right: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  border-left: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  flex: 1;
}

.stat:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(227, 58, 1, 0.1);
}

.stat-number {
  display: block;
  font-size: 42px;
  font-weight: 800;
  color: var(--vivid-orange);
  margin-bottom: 8px;
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 14px;
  color: var(--text-gray);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===================================
   CLIENTS SECTION
   =================================== */
.clients-strip {
  padding: 60px 0;
  text-align: center;
  background: var(--pure-white);
  border-bottom: 1px solid #f0f0f0;
}

.clients-strip h3 {
  color: var(--text-light);
  margin-bottom: 32px;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.clients-logos {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  align-items: center;
}

.clients-logos span {
  color: #888;
  font-weight: 700;
  font-size: 20px;
  transition: all 0.3s ease;
  padding: 10px 20px;
  cursor: pointer;
}

.clients-logos span:hover {
  color: var(--vivid-orange);
  transform: scale(1.05);
}

/* ===================================
   SERVICES SECTION - LARGE ICONS
   =================================== */
.services {
  padding: 140px 0;
  /* Slightly warmer background compared to plain gray */
  background: #fff9f7;
}

.services h2 {
  text-align: center;
  font-size: 48px;
  margin-bottom: 80px;
  color: var(--text-black);
  font-weight: 800;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.services h2::after {
  content: "";
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 6px;
  background: var(--vivid-orange);
  border-radius: 4px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.service-card {
  background: var(--pure-white);
  border-radius: 24px;
  padding: 48px 40px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  text-align: center;
  /* Center Text Alignment */
}

/* Orange shine effect */
.service-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(227, 58, 1, 0.05) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover::after {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 24px 48px rgba(227, 58, 1, 0.12);
  border-color: rgba(227, 58, 1, 0.1);
}

/* Service Icon Styling - EXTRA LARGE 140PX */
.service-icon {
  width: 140px;
  height: 140px;
  margin: 0 auto 32px auto;
  /* Centered Margin */
  border-radius: 24px;
  background: #fff5f0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(3deg);
  background: #ffe0d1;
}

.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 16px;
  color: var(--text-black);
  font-weight: 700;
  position: relative;
  z-index: 2;
}

.service-card p {
  color: var(--text-gray);
  line-height: 1.8;
  font-size: 15px;
  position: relative;
  z-index: 2;
}

/* ===================================
   TESTIMONIALS SECTION - CAROUSEL
   =================================== */
.testimonials {
  padding: 140px 0;
  background: var(--pure-white);
  overflow: hidden;
  width: 100%;
}

.testimonials h2 {
  text-align: center;
  font-size: 48px;
  font-weight: 800;
  color: var(--text-black);
  margin-bottom: 16px;
}

.testimonials .subtitle {
  text-align: center;
  color: var(--text-gray);
  margin-bottom: 60px;
  font-size: 17px;
}

/* Scroll Wrapper */
.testimonials-scroll-wrapper {
  display: flex !important;
  /* Force flex display */
  width: 100%;
  overflow-x: auto;
  padding-bottom: 40px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  /* Firefox */
  padding-left: 32px;
  padding-right: 32px;
  box-sizing: border-box;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
}

.testimonials-scroll-wrapper::-webkit-scrollbar {
  display: none;
  /* Chrome/Safari */
}

.testimonial-slider-container {
  position: relative;
  max-width: 100%;
}

.slide-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--pure-white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: var(--vivid-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
}

.slide-btn:hover {
  background: var(--vivid-orange);
  color: var(--pure-white);
  border-color: var(--vivid-orange);
  box-shadow: 0 12px 28px rgba(227, 58, 1, 0.3);
  transform: translateY(-50%) scale(1.1);
}

.slide-btn:active {
  transform: translateY(-50%) scale(0.95);
}

.slide-btn.prev {
  left: -28px;
}

.slide-btn.next {
  right: -28px;
}

@media (max-width: 768px) {
  .slide-btn {
    display: none;
  }
}

.testimonials-track {
  display: flex;
  gap: 32px;
  width: max-content;
  padding-right: 32px;
}

.testimonial-card {
  background: var(--pure-white);
  border-radius: 24px;
  padding: 40px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  display: flex;
  flex-direction: column;
  /* Fixed width items */
  flex: 0 0 400px;
  /* Don't shrink */
  width: 400px;
  scroll-snap-align: center;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(227, 58, 1, 0.1);
  border: 1px solid rgba(227, 58, 1, 0.15);
}

.quote-icon {
  font-size: 60px;
  color: var(--vivid-orange);
  opacity: 0.2;
  font-family: Georgia, serif;
  line-height: 1;
  margin-bottom: 16px;
}

.testimonial-card>p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-gray);
  margin-bottom: 32px;
  font-style: italic;
  flex-grow: 1;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: auto;
  border-top: 1px solid #f5f5f5;
  padding-top: 20px;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--vivid-orange);
  flex-shrink: 0;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-author h4 {
  font-size: 16px;
  color: var(--text-black);
  margin-bottom: 2px;
  font-weight: 700;
}

.testimonial-author p {
  font-size: 13px;
  color: var(--vivid-orange);
  font-weight: 600;
  margin: 0;
}

/* ===================================
   NEWS SECTION
   =================================== */
.news-section {
  padding: 140px 0;
  background: #f7f9fc;
}

.news-section h2 {
  text-align: center;
  font-size: 48px;
  font-weight: 800;
  color: var(--text-black);
  margin-bottom: 16px;
}

.news-section .subtitle {
  text-align: center;
  color: var(--text-gray);
  margin-bottom: 70px;
  font-size: 17px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.news-card {
  background: var(--pure-white);
  border-radius: 20px;
  overflow: hidden;
  border: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.news-image {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #f5f5f5;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.news-card:hover .news-image img {
  transform: scale(1.1);
}

.news-category {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--vivid-orange);
  color: var(--pure-white);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(227, 58, 1, 0.3);
}

.news-content {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-meta {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.news-date {
  font-size: 13px;
  color: var(--vivid-orange);
  font-weight: 600;
}

.news-card h3 {
  font-size: 20px;
  color: var(--text-black);
  margin-bottom: 12px;
  font-weight: 700;
  line-height: 1.4;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card p {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 24px;
  flex: 1;
  display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-black);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: auto;
  border-bottom: 2px solid rgba(227, 58, 1, 0.3);
  width: fit-content;
  padding-bottom: 2px;
}

.news-link:hover {
  color: var(--vivid-orange);
  border-color: var(--vivid-orange);
  padding-right: 4px;
}

.news-cta {
  text-align: center;
}

/* SOLID ORANGE BUTTON STYLE */
.btn-news {
  display: inline-block;
  padding: 16px 40px;
  background: var(--vivid-orange);
  color: var(--pure-white);
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  box-shadow: 0 10px 20px rgba(227, 58, 1, 0.25);
}

.btn-news:hover {
  background: var(--vivid-orange-dark);
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(227, 58, 1, 0.4);
}

/* ===================================
   CTA / CONTACT SECTION
   =================================== */
.cta {
  background: linear-gradient(135deg, #111 0%, #222 100%);
  padding: 120px 0;
  text-align: center;
  color: var(--pure-white);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 70% 30%, rgba(227, 58, 1, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.cta h2 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.cta>p {
  color: #ccc;
  position: relative;
  z-index: 1;
}

.wa-form {
  margin-top: 48px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.wa-form input,
.wa-form textarea {
  width: 100%;
  padding: 18px 24px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  outline: none;
  font-size: 16px;
  background: rgba(255, 255, 255, 0.05);
  /* Dark theme */
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
  color: var(--pure-white);
  backdrop-filter: blur(10px);
}

.wa-form input::placeholder,
.wa-form textarea::placeholder {
  color: #888;
}

.wa-form input:focus,
.wa-form textarea:focus {
  border-color: var(--vivid-orange);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 20px rgba(227, 58, 1, 0.2);
  transform: translateY(-2px);
}

.wa-form textarea {
  height: 160px;
  resize: none;
}

.btn-wa {
  padding: 18px 48px;
  border-radius: 50px;
  background: var(--vivid-orange);
  color: var(--pure-white);
  border: none;
  cursor: pointer;
  font-size: 17px;
  font-weight: 700;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 25px rgba(227, 58, 1, 0.3);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-family: 'Poppins', sans-serif;
}

.btn-wa:hover {
  background: var(--pure-white);
  color: var(--vivid-orange);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.btn-wa:active {
  transform: translateY(-2px) scale(0.98);
}

/* ===================================
   FOOTER
   =================================== */
.footer {
  padding: 50px 0;
  background: var(--text-black);
  color: #bdbdbd;
  text-align: center;
}

.footer p {
  font-size: 14px;
  letter-spacing: 0.5px;
}

/* ===================================
   ANIMATION UTILITIES
   =================================== */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

/* Tablet & Small Desktop (1024px and below) */
@media (max-width: 1024px) {
  .container {
    padding: 0 24px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero p {
    font-size: 17px;
  }

  .services-grid,
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

/* Tablet (768px and below) */
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  /* Navbar */
  .navbar {
    padding: 16px 0;
  }

  .logo {
    font-size: 24px;
  }

  .logo img {
    height: 32px;
  }

  .navbar nav {
    display: none;
  }

  /* Hero */
  .hero {
    padding: 140px 0 100px;
  }

  .hero-eyebrow {
    font-size: 11px;
    padding: 8px 20px;
    letter-spacing: 3px;
  }

  .hero h1 {
    font-size: 36px;
    margin-bottom: 20px;
  }

  .hero p {
    font-size: 16px;
    max-width: 100%;
  }

  .hero-stats {
    gap: 20px;
    margin-top: 40px;
  }

  .stat {
    padding: 24px 32px;
    min-width: 140px;
  }

  .stat-number {
    font-size: 36px;
  }

  /* Services */
  .services {
    padding: 100px 0;
  }

  .services h2 {
    font-size: 36px;
    margin-bottom: 60px;
  }

  .services-grid,
  .news-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* Testimonials Responsive */
  .testimonials {
    padding: 100px 0;
  }

  .testimonials h2 {
    font-size: 36px;
  }

  .testimonial-card {
    width: 300px;
    /* Smaller width on mobile */
    min-width: 300px;
    padding: 32px 24px;
    flex: 0 0 300px;
  }

  /* CTA */
  .cta {
    padding: 80px 0;
  }

  .cta h2 {
    font-size: 32px;
  }
}

/* Mobile (480px and below) */
@media (max-width: 480px) {
  .logo {
    font-size: 20px;
    gap: 3px;
  }

  .logo img {
    height: 28px;
  }

  /* Hero */
  .hero {
    padding: 120px 0 80px;
  }

  .hero h1 {
    font-size: 28px;
    line-height: 1.2;
  }

  .hero-stats {
    gap: 16px;
    flex-direction: column;
    align-items: stretch;
  }

  .stat {
    width: 100%;
    max-width: 100%;
  }

  /* Testimonials */
  .testimonial-card {
    width: 280px;
    min-width: 280px;
    flex: 0 0 280px;
  }
}

/* ===================================
   FLOATING SOCIALS
   =================================== */
.floating-socials {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.social-item {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  text-decoration: none;
  border-radius: 8px 0 0 8px;
  transition: transform 0.3s ease;
  position: relative;
}

.social-item .social-icon {
  width: 50px;
  height: 50px;
  background: var(--pure-white);
  color: var(--text-black);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: -2px 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px 0 0 8px;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.social-item .social-text {
  position: absolute;
  right: 0;
  background: var(--vivid-orange);
  color: var(--pure-white);
  height: 50px;
  padding: 0 54px 0 20px;
  display: flex;
  align-items: center;
  white-space: nowrap;
  border-radius: 8px 0 0 8px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  opacity: 0;
  transform: translateX(100%);
  z-index: 1;
}

.social-item:hover {
  transform: translateX(-4px);
  /* Slight nudge */
}

.social-item:hover .social-text {
  transform: translateX(0);
  opacity: 1;
}

.social-item:hover .social-icon {
  background: var(--vivid-orange);
  color: var(--pure-white);
}

/* Specific Colors on Hover (Optional, using brand colors) */
.social-item.whatsapp:hover .social-icon {
  background: #25D366;
}

.social-item.whatsapp:hover .social-text {
  background: #25D366;
}

.social-item.instagram:hover .social-icon {
  background: #E1306C;
}

.social-item.instagram:hover .social-text {
  background: #E1306C;
}

.social-item.email:hover .social-icon {
  background: var(--vivid-orange);
}

.social-item.email:hover .social-text {
  background: var(--vivid-orange);
}

@media (max-width: 768px) {
  .floating-socials {
    top: auto;
    bottom: 20px;
    right: 20px;
    flex-direction: row;
    /* Horizontal stack on mobile */
    gap: 16px;
    transform: none;
  }

  .social-item {
    border-radius: 50%;
  }

  .social-item .social-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  .social-item .social-text {
    display: none;
    /* Hide text on mobile */
  }

  .social-item:hover {
    transform: translateY(-4px);
  }
}

/* Instagram Section */
.instagram-section {
  padding: 140px 0;
  background-color: var(--background-white);
}

.instagram-section h2 {
  text-align: center;
  font-size: 48px;
  font-weight: 800;
  color: var(--text-black);
  margin-bottom: 16px;
}

.instagram-section .subtitle {
  text-align: center;
  color: var(--text-gray);
  margin-bottom: 70px;
  font-size: 17px;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

@media (max-width: 900px) {
  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .instagram-grid {
    grid-template-columns: 1fr;
  }
}

.instagram-card {
  display: block;
  background: var(--pure-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  height: 100%;
}

.instagram-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.instagram-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  background-color: #f0f0f0;
}

.instagram-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.instagram-card:hover .instagram-image img {
  transform: scale(1.08);
}

.instagram-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(2px);
}

.instagram-card:hover .instagram-overlay {
  opacity: 1;
}

.instagram-content {
  padding: 24px;
}

.instagram-content .caption {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
  font-weight: 500;
}