/* 
   --------------------------------------------------------
   Project: HT Landing Page (Hair Transplant)
   Reference Theme: rqchairtransplant.com (Deep Blue, Sky Blue, White)
   --------------------------------------------------------
*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Jost:wght@400;500;600;700&family=Roboto:wght@400;500;700&family=Montserrat:wght@400;500;700&family=Open+Sans:wght@400;600;700&display=swap');

:root {
  /* Colors */
  --primary-color: #005094; /* Deep Blue from Male Makeover */
  --primary-light: #0d6ab9; /* Lighter shade of primary */
  --primary-dark: #003768;  /* Darker shade of primary */
  
  --accent-color: #005094; /* Unified to Primary Blue */
  --accent-hover: #003768; /* Unified to Primary Dark */
  
  --bg-color: #FFFFFF;
  --bg-light-gray: #F5F8FA; /* Soft gray for sections */
  
  --text-dark: #222222;
  --text-body: #555555;
  --text-light: #FFFFFF;

  --border-color: #e2e8f0;

  /* Typography */
  --font-heading: 'Jost', sans-serif;
  --font-body: 'Poppins', sans-serif;

  /* Layout & Shadows */
  --container-width: 1200px;
  --box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  --box-shadow-hover: 0 10px 30px rgba(0, 80, 148, 0.15);
  --border-radius-sm: 8px;
  --border-radius-md: 12px;
  --border-radius-lg: 20px;
  
  /* Transitions */
  --transition: all 0.3s ease-in-out;
}

/* Reset & Scaffolding */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background-color: var(--bg-color);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: var(--transition);
}

a:hover {
  color: var(--accent-color);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Reusable Components */

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 36px;
  color: var(--primary-color);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title p {
  font-size: 18px;
  color: var(--text-body);
  max-width: 700px;
  margin: 0 auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: var(--border-radius-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 15px;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 80, 148, 0.3);
}

.btn-accent {
  background-color: var(--accent-color);
  color: var(--text-light);
}

.btn-accent:hover {
  background-color: var(--accent-hover);
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(95, 194, 226, 0.3);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--text-light);
}

/* Top Bar */
.top-bar {
  background-color: var(--primary-color);
  color: var(--text-light);
  font-size: 14px;
  padding: 8px 0;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-contact {
  display: flex;
  gap: 20px;
}

.top-bar-contact a {
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-bar-contact a:hover {
  color: var(--accent-color);
}

.top-bar-social {
  display: flex;
  gap: 15px;
}

.top-bar-social a {
  color: var(--text-light);
  font-size: 16px;
}

/* Main Header */
.header {
  background-color: var(--bg-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}

.header.scrolled {
  padding: 5px 0;
  box-shadow: var(--box-shadow);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  padding-bottom: 15px;
}

.logo a {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo span {
  color: var(--accent-color);
}

.navbar {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links {
  display: flex;
  gap: 25px;
}

.nav-links li a {
  color: var(--text-dark);
  font-weight: 500;
  font-size: 16px;
  position: relative;
  padding-bottom: 5px;
}

.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-color);
  transition: var(--transition);
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
  width: 100%;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: var(--primary-color);
}

.mobile-toggle {
  display: none;
  font-size: 24px;
  color: var(--primary-color);
  cursor: pointer;
}

/* Hero Section */
.hero {
  position: relative;
  padding: 80px 0 100px;
  background-color: var(--bg-light-gray);
  overflow: hidden;
  /* Add background image placeholder later if needed, mostly clean gradient for now */
  background: linear-gradient(135deg, #f5f8fa 0%, #e1eef6 100%);
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.hero-content {
  flex: 1;
  max-width: 600px;
}

.hero-subtitle {
  color: var(--accent-color);
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 15px;
  display: block;
}

.hero-content h1 {
  font-size: 48px;
  color: var(--primary-color);
  margin-bottom: 25px;
  line-height: 1.1;
}

.hero-content h1 span {
  color: var(--text-dark);
}

.hero-content p {
  font-size: 18px;
  color: var(--text-body);
  margin-bottom: 35px;
}

.hero-features {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  color: var(--text-dark);
}

.hero-feature-item i {
  color: var(--accent-color);
}

/* Hero Form */
.hero-form-wrapper {
  flex: 0 0 450px;
  background: var(--bg-color);
  padding: 40px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--box-shadow);
  position: relative;
  z-index: 2;
  border-top: 5px solid var(--primary-color);
}

.hero-form-wrapper h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.hero-form-wrapper p {
  font-size: 14px;
  margin-bottom: 25px;
  color: var(--text-body);
}

.form-group {
  margin-bottom: 20px;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-dark);
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 80, 148, 0.1);
}

.hero-form-wrapper .btn {
  width: 100%;
  margin-top: 10px;
}

/* Trust Bar */
.trust-bar {
  background-color: var(--primary-color);
  padding: 40px 0;
  color: var(--text-light);
  margin-top: -30px; /* Overlap hero slightly */
  position: relative;
  z-index: 3;
}

.trust-stats {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 40px;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--text-light); /* Changed to white */
  margin-bottom: 5px;
  display: block;
}

.stat-text {
  font-size: 16px;
  font-weight: 500;
}

/* Services Section */
.services-section {
  background-color: var(--bg-light-gray);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--bg-color);
  border-radius: var(--border-radius-md);
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--primary-color);
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow-hover);
  border-color: transparent;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 80px;
  height: 80px;
  background-color: var(--bg-light-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: var(--primary-color);
  font-size: 36px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.service-card p {
  font-size: 15px;
  margin-bottom: 25px;
}

.service-link {
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* Advanced Forms Section */
.advanced-form-section {
  background-color: var(--primary-color);
  color: var(--text-light);
  position: relative;
}

.advanced-form-section .section-title h2,
.advanced-form-section .section-title p {
  color: var(--text-light);
}

.calculator-wrapper {
  background: var(--bg-color);
  border-radius: var(--border-radius-lg);
  padding: 50px;
  box-shadow: var(--box-shadow-hover);
  color: var(--text-dark);
}

.radio-group {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.radio-card {
  flex: 1;
  position: relative;
}

.radio-card input[type="radio"] {
  position: absolute;
  opacity: 0;
}

.radio-card label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: var(--bg-light-gray);
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  transition: var(--transition);
  font-weight: 500;
  gap: 10px;
}

.radio-card label i {
  font-size: 24px;
  color: var(--primary-color);
}

.radio-card input[type="radio"]:checked + label {
  border-color: var(--primary-color);
  background-color: rgba(0, 80, 148, 0.05);
  color: var(--primary-color);
}

/* About / Doctor Section (Dr. Sakhiya) */
.about-section {
  padding: 100px 0;
  background-color: var(--bg-light-gray); /* Match image light background */
}

.about-content-wrapper {
  display: flex;
  align-items: center;
  gap: 60px;
}

.about-info-box {
  flex: 1.2;
}

.about-content-header h2 {
  font-size: 42px;
  color: var(--primary-color);
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
  line-height: 1.2;
  z-index: 1;
}

.about-content-header h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  border-radius: 2px;
  z-index: -1;
}

.about-info-box p {
  font-size: 16px;
  color: #555;
  margin-bottom: 25px;
  line-height: 1.8;
}

.about-info-box p strong {
  color: #222;
}

.about-content-list {
  margin-bottom: 35px;
}

.about-content-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  font-size: 15px;
  color: #555;
  padding-left: 10px;
  border-left: 2px solid var(--accent-color);
}

.about-content-list li i {
  display: none;
}

.about-content-quote {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.quote-icon i {
  font-size: 60px;
  color: var(--accent-color);
  line-height: 1;
}

.quote-text {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
  font-style: italic;
  line-height: 1.4;
}

.quote-text span {
  display: block;
  margin-top: 10px;
  font-size: 16px;
  font-weight: 700;
  color: #222;
  font-style: normal;
}

.about-content-image-container {
  flex: 0.8;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Innovate dotted matrix detail - Top Right */
.about-content-image-container::before {
  content: '';
  position: absolute;
  top: -15px;
  right: -15px;
  width: 140px;
  height: 140px;
  background-image: radial-gradient(var(--primary-color) 2px, transparent 2px);
  background-size: 16px 16px;
  opacity: 0.15;
  z-index: 0;
  border-radius: 8px;
}

/* Innovative dotted matrix detail - Bottom Left */
.about-content-image-container::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: -15px;
  width: 140px;
  height: 140px;
  background-image: radial-gradient(var(--primary-color) 2px, transparent 2px);
  background-size: 16px 16px;
  opacity: 0.15;
  z-index: 0;
  border-radius: 8px;
}

.about-content-image {
  position: relative;
  z-index: 10;
  max-width: 100%;
  max-height: 550px;
  box-shadow: 0 15px 35px rgba(0, 80, 148, 0.12); /* Modern floating shadow */
  border: 8px solid white; /* Sleek picture frame effect */
  border-radius: 12px;
  display: block;
  background: white;
}

/* Footer */
.footer {
  background-color: var(--primary-dark);
  color: var(--text-light);
  padding: 80px 0 20px;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.footer-widget h4 {
  color: var(--text-light);
  font-size: 20px;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-widget h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: var(--text-light);
  opacity: 0.5;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--text-light);
  display: block;
  margin-bottom: 20px;
}

.footer-logo span {
  color: var(--text-light);
}

.footer-widget p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--text-light);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--accent-color);
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  display: inline-block;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent-color);
  transform: translateX(5px);
}

.footer-contact li {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  color: rgba(255,255,255,0.7);
}

.footer-contact i {
  color: var(--accent-color);
  font-size: 18px;
  margin-top: 3px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-size: 14px;
}

/* Floating WhatsApp */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: var(--transition);
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  color: white;
}

/* Results Comparison Slider */
.comparison-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  max-height: 500px;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.comparison-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.comparison-slider .resize-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
  border-right: 4px solid var(--accent-color);
  box-shadow: 2px 0 10px rgba(0,0,0,0.3);
  z-index: 2;
}

/* This trick ensures the inner image scales with the container correctly while hidden by overflow */
.comparison-slider .resize-img img {
  width: calc(100vw * 0); /* Fallback */
  min-width: 100%;
}

.slider-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 10;
}

.slider-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 45px;
  height: 45px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(0,0,0,0.4);
  pointer-events: none;
  color: var(--primary-color);
  font-size: 20px;
  z-index: 5;
}

/* Reviews Grid */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.review-card {
  background: white;
  padding: 30px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--box-shadow);
  text-align: center;
  border-top: 4px solid var(--primary-color);
  transition: var(--transition);
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-hover);
}

.review-card .stars {
  color: #f1c40f;
  margin-bottom: 20px;
  font-size: 18px;
}

.review-text {
  font-style: italic;
  color: var(--text-body);
  margin-bottom: 20px;
  font-size: 15px;
}

.review-name {
  font-weight: 700;
  color: var(--primary-color);
  font-size: 18px;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero .container {
    flex-direction: column;
  }
  
  .hero-content {
    text-align: center;
    max-width: 100%;
  }
  
  .hero-features {
    justify-content: center;
  }
  
  .hero-form-wrapper {
    width: 100%;
    flex: auto;
  }
  
  .about-dr-wrapper {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }
  
  .mobile-toggle {
    display: block;
  }
  
  .navbar {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--bg-color);
    flex-direction: column;
    padding: 0;
    box-shadow: var(--box-shadow);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
  }
  
  .navbar.active {
    max-height: 400px;
    padding: 20px 0;
  }
  
  .nav-links {
    flex-direction: column;
    gap: 15px;
    text-align: center;
    width: 100%;
  }
  
  .nav-links li {
    width: 100%;
  }
  
  .navbar .btn {
    margin-top: 15px;
  }
  
  .hero-content h1 {
    font-size: 36px;
  }
  
  .section-padding {
    padding: 60px 0;
  }
  
  .calculator-wrapper {
    padding: 30px 20px;
  }
}

/* Offers Section */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.offer-card {
  background: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #eee;
  display: flex;
  flex-direction: column;
}

.offer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.offer-img-wrapper {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background-color: var(--bg-light-gray);
}

.offer-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.offer-card:hover .offer-img-wrapper img {
  transform: scale(1.05);
}

.offer-content {
  padding: 20px;
  text-align: center;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.offer-content h4 {
  font-size: 1.1rem;
  color: var(--text-dark);
  font-weight: 700;
  margin: 0;
  line-height: 1.4;
}

@media (max-width: 992px) {
  .offers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .offers-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 576px) {
  .hero-features {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
  
  .trust-stats {
    flex-direction: column;
    gap: 40px;
  }
  
  .radio-group {
    flex-direction: column;
  }

  .hero-form-wrapper {
    padding: 25px 20px; /* Reduce padding on mobile */
  }

  .about-dr-image-container::before,
  .about-dr-image-container::after {
    display: none; /* Hide glass details on tiny screens */
  }

  .footer-widget {
    min-width: 100% !important; /* Force full width stacking directly on tiny phones */
  }
}

/* Floating Contact Buttons Wrapper */
.floating-contact-wrap {
  position: fixed;
  bottom: 25px;
  right: 25px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 10000;
  pointer-events: none;
}

.floating-btn {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  color: #fff;
  font-size: 24px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  text-decoration: none;
}

.floating-btn:hover {
  transform: scale(1.1) translateY(-5px);
  color: #fff;
}

.wa-btn {
  background-color: #25d366;
}

.call-btn {
  background-color: var(--primary-color);
}

.floating-btn .btn-text {
  position: absolute;
  right: 70px;
  background: white;
  color: #333;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.3s ease;
  pointer-events: none;
}

.floating-btn:hover .btn-text {
  opacity: 1;
  transform: translateX(0);
}

/* Mobile specific for floating buttons */
@media (max-width: 768px) {
  .floating-contact-wrap {
    bottom: 20px;
    right: 20px;
    gap: 10px;
  }
  .floating-btn {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}
