html {
  scroll-behavior: smooth;
}

:root {
  --primary-green: #2d7a4a;
  --dark-green: #1b4d2e;
  --light-green: #e9f2ed;
  --accent-gold: #c5a059;
  --text-dark: #1a1a1a;
  --text-light: #666666;
  --white: #ffffff;
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  background-color: var(--white);
}

h1,
h2,
h3,
.brand-font {
  font-family: "Playfair Display", serif;
}

/* --- Global Components --- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-size: 14px;
}

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

.btn-primary:hover {
  background-color: var(--dark-green);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(45, 122, 74, 0.3);
}

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

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

/* --- Header --- */
header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: var(--transition);
}

header.scrolled {
  background: var(--white);
  box-shadow: var(--shadow);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 64px;
  padding: 0;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 12px;
}

.logo img {
  height: 72px;
  width: auto;
  object-fit: contain;
}

.logo-text {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-green);
  line-height: 1.2;
}

.logo-text span {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: rgb(3, 32, 3);
  font-weight: 800;
  font-size: 20px;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--primary-green);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  z-index: 1001;
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
  display: block;
  opacity: 1;
}

.nav-links.mobile-active {
  position: fixed !important;
  top: 64px !important;
  left: 0 !important;
  width: 100% !important;
  background: white !important;
  flex-direction: column !important;
  padding: 20px 24px !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
  z-index: 1000 !important;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}

.nav-links.mobile-active.show {
  transform: translateY(0);
}

/* --- Hero Section --- */
.hero {
  height: 100vh;
  min-height: 600px;
  max-height: 900px;
  position: relative;
  color: var(--white);
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Mobile viewport height fix */
@supports (-webkit-touch-callout: none) {
  .hero {
    height: -webkit-fill-available;
  }
}

.hero-carousel {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* Preload optimization */
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: inherit;
  opacity: 0;
  transition: opacity 0.5s ease;
}

/* Loading optimization for slow connections */
.hero-slide.loading {
  background-color: var(--primary-green);
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(45, 122, 74, 0.7) 0%,
    rgba(27, 77, 46, 0.5) 50%,
    rgba(0, 0, 0, 0.3) 100%
  );
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide:nth-child(1) {
  background-image:
    url("assets/image/kyra banner1.webp"), url("assets/image/banner2.png");
}

.hero-slide:nth-child(2) {
  background-image:
    url("assets/image/kyra banner2.webp"), url("assets/image/banner.png");
}

.hero-slide:nth-child(3) {
  background-image: url("assets/image/gallary/land.png");
}

.hero-slide:nth-child(4) {
  background-image: url("assets/image/gallary/farmhouse.png");
}

/* Responsive background positioning */
@media (max-width: 768px) {
  .hero-slide {
    background-position: center top;
    background-size: cover;
    background-attachment: scroll; /* Better mobile performance */
  }
}

@media (max-width: 480px) {
  .hero-slide {
    background-position: 70% center;
    background-size: cover;
    background-attachment: scroll;
  }
}

/* High-resolution displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .hero-slide:nth-child(1) {
    background-image: url("assets/image/kyra banner1.webp");
  }
  .hero-slide:nth-child(2) {
    background-image: url("assets/image/kyra banner2.webp");
  }
}

.hero > .container {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-top: 64px; /* Account for fixed header */
}

.hero-content {
  max-width: 800px;
  animation: fadeInUp 1s ease-out;
  padding: 0;
  position: relative;
  z-index: 10;
}

.hero h1 {
  font-size: clamp(40px, 8vw, 72px);
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero p {
  font-size: 20px;
  margin-bottom: 40px;
  opacity: 0.9;
}

.hero-indicators {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 20;
}

@media (max-width: 768px) {
  .hero-indicators {
    bottom: 20px;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .hero-indicators {
    bottom: 16px;
    gap: 8px;
  }
}

.hero-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.hero-indicator.active {
  background: var(--white);
  transform: scale(1.2);
}

.hero-indicator:hover {
  background: rgba(255, 255, 255, 0.8);
}

/* --- About Section --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-image img {
  width: 100%;
  display: block;
}

.badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--light-green);
  color: var(--primary-green);
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 16px;
}

/* --- What We Offer --- */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.offer-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  transition: var(--transition);
  border-bottom: 4px solid transparent;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  opacity: 0;
  transform: translateY(30px);
}

.offer-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.offer-card:hover {
  transform: translateY(-10px);
  border-bottom-color: var(--primary-green);
  box-shadow: var(--shadow);
}

.offer-icon {
  width: 64px;
  height: 64px;
  background: var(--light-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--primary-green);
}

/* --- Track Record Section (NEW) --- */
.track-record-section {
  background: var(--white);
  position: relative;
}

.track-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.track-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 20px;
  opacity: 0;
  transform: translateY(40px);
}

.track-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.circle-container {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: var(--light-green);
  border: 2px solid var(--primary-green);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  transition: var(--transition);
  position: relative;
  cursor: pointer;
  overflow: hidden;
  z-index: 1;
}

.circle-container:hover {
  background: var(--primary-green);
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(45, 122, 74, 0.2);
}

.track-val {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 5px;
  transition: var(--transition);
  font-family: "Playfair Display", serif;
}

.track-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
}

.hover-detail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px;
  color: white;
  font-size: 14px;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  text-align: center;
  line-height: 1.4;
}

.circle-container:hover .track-val,
.circle-container:hover .track-label {
  opacity: 0;
  transform: scale(0.8);
}

.circle-container:hover .hover-detail {
  opacity: 1;
  transform: translateY(0);
}

.quality-list {
  list-style: none;
  text-align: left;
  margin: 0;
  padding: 0;
}

.quality-list li {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

/* --- Featured Projects (Custom Draggable Carousel) --- */
.carousel-section {
  background: #f8fcf9;
  overflow: hidden;
  position: relative;
}

.carousel-container {
  position: relative;
  margin-top: 50px;
  cursor: grab;
  user-select: none;
}

.carousel-container:active {
  cursor: grabbing;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.project-card {
  flex: 0 0 calc(33.333% - 20px);
  margin: 0 10px;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.project-img {
  height: 250px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.project-info {
  padding: 24px;
}

.project-tag {
  background: var(--primary-green);
  color: white;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 12px;
  position: absolute;
  top: 20px;
  left: 20px;
}

.carousel-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.nav-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--primary-green);
  background: transparent;
  color: var(--primary-green);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.nav-btn:hover {
  background: var(--primary-green);
  color: white;
}

/* --- Video Section --- */
.video-section {
  position: relative;
  background: #000;
  overflow: hidden;
  border-radius: 24px;
  margin: 0 24px;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  padding: 20px;
  z-index: 2;
}

.play-btn {
  width: 90px;
  height: 90px;
  background: var(--primary-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  outline: none;
}

.play-btn:hover {
  transform: scale(1.1);
  background: var(--white);
  color: var(--primary-green);
}

.video-container {
  width: 100%;
  aspect-ratio: 16/9;
  max-height: 700px;
  position: relative;
}

.video-container iframe,
.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- Gallery Section --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 50px;
}

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1/1;
  cursor: pointer;
  opacity: 0;
  transform: scale(0.9);
}

.gallery-item.visible {
  opacity: 1;
  transform: scale(1);
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 24px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

/* --- Testimonials --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.testimonial-card {
  padding: 40px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow);
  border: 1px solid #eee;
}

.stars {
  color: #ffb800;
  margin-bottom: 16px;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 24px;
}

.client-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #eee;
}

/* --- Lead Capture --- */
.contact-section {
  background: var(--light-green);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
}

.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  outline: none;
  font-family: inherit;
}

.form-group input:focus {
  border-color: var(--primary-green);
}

/* --- Floating CTA --- */
.floating-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.whatsapp-btn {
  width: 60px;
  height: 60px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  transition: var(--transition);
}

.whatsapp-btn:hover {
  transform: scale(1.1);
}

/* --- Footer --- */
footer {
  background: #111;
  color: #999;
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.footer-col h4 {
  color: white;
  margin-bottom: 24px;
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 12px;
}
.footer-col ul a {
  color: #999;
  text-decoration: none;
  transition: var(--transition);
}
.footer-col ul a:hover {
  color: var(--primary-green);
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid #222;
  text-align: center;
  font-size: 14px;
}

.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #222;
  border-radius: 50%;
  color: #999;
  text-decoration: none;
  transition: var(--transition);
}

.social-icons a:hover {
  background: var(--primary-green);
  color: white;
  transform: translateY(-3px);
}

.social-icons svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* --- Animations --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .offers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .project-card {
    flex: 0 0 calc(50% - 20px);
  }
  .track-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-container {
    height: 56px;
  }
  .logo {
    gap: 10px;
  }
  .logo img {
    height: 56px;
  }
  .logo-text {
    font-size: 18px;
  }
  .logo-text span {
    font-size: 9px;
  }
  .nav-links {
    display: none;
  }
  .mobile-menu-btn {
    display: block;
  }
  .nav-container .btn {
    padding: 6px 12px;
    font-size: 13px;
    border-radius: 6px;
  }
  .offers-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .project-card {
    flex: 0 0 100%;
  }
  .hero h1 {
    font-size: 42px;
  }

  /* Enhanced hero mobile styles */
  .hero {
    min-height: 500px;
    height: 100vh;
    height: -webkit-fill-available;
  }

  .hero > .container {
    padding-top: 56px;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .hero-content {
    max-width: 90%;
    text-align: center;
  }

  .hero p {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .hero-indicator {
    width: 10px;
    height: 10px;
  }
  .section-padding {
    padding: 60px 0;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .video-section {
    margin: 0 10px;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .track-grid {
    grid-template-columns: 1fr;
  }

  /* Contact form responsive fixes */
  .contact-grid {
    gap: 40px;
  }
  .contact-form {
    padding: 24px;
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 16px; /* Prevents zoom on iOS */
    padding: 14px 12px;
  }

  /* Mobile-specific form grid fix */
  .contact-form div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
}

@media (max-width: 480px) {
  .nav-container {
    height: 52px;
    padding: 0 16px;
  }
  .logo {
    gap: 8px;
  }
  .logo img {
    height: 46px;
  }
  .logo-text {
    font-size: 14px;
  }
  .logo-text span {
    font-size: 8px;
  }
  .nav-container .btn {
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 6px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }

  /* Enhanced contact form mobile styles */
  .contact-form {
    padding: 20px 16px;
    margin: 0 -8px;
  }

  /* Enhanced hero mobile styles for small devices */
  .hero {
    min-height: 450px;
    height: 100vh;
    height: -webkit-fill-available;
  }

  .hero > .container {
    padding-top: 52px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-content {
    max-width: 95%;
  }

  .hero h1 {
    font-size: clamp(28px, 8vw, 36px);
    line-height: 1.2;
    margin-bottom: 16px;
  }

  .hero p {
    font-size: 14px;
    margin-bottom: 24px;
    line-height: 1.5;
  }
  .form-group {
    margin-bottom: 16px;
  }
  .form-group label {
    font-size: 14px;
    margin-bottom: 6px;
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 16px;
    padding: 16px 12px;
    border-radius: 6px;
  }

  .container {
    padding: 0 16px;
  }

  /* Mobile nav improvements */
  .nav-links.mobile-active {
    top: 52px !important;
    padding: 16px 20px !important;
  }

  .nav-links.mobile-active a {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 18px;
  }

  .nav-links.mobile-active a:last-child {
    border-bottom: none;
  }
}

/* --- Callback Modal --- */
.callback-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.callback-modal-overlay.active {
  display: flex;
  opacity: 1;
}

.callback-modal {
  background: var(--white);
  border-radius: 10px;
  max-width: 400px;
  width: 100%;
  padding: 24px;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.callback-modal-overlay.active .callback-modal {
  transform: translateY(0);
}

.callback-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  border: none;
  background: var(--light-green);
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  color: var(--text-dark);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.callback-modal-close:hover {
  background: var(--primary-green);
  color: var(--white);
}

.callback-modal h3 {
  font-size: 20px;
  margin-bottom: 4px;
  color: var(--text-dark);
}

.callback-modal p {
  color: var(--text-light);
  margin-bottom: 16px;
  font-size: 13px;
}

.callback-form .form-group {
  margin-bottom: 12px;
}

.callback-form label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 4px;
  color: var(--text-dark);
}

.callback-form input,
.callback-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  font-size: 13px;
  font-family: inherit;
  transition: var(--transition);
  background: #fafafa;
}

.callback-form input:focus,
.callback-form textarea:focus {
  outline: none;
  border-color: var(--primary-green);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(45, 122, 74, 0.1);
}

.callback-form textarea {
  resize: vertical;
  min-height: 60px;
}

.callback-form .btn-submit {
  width: 100%;
  padding: 10px;
  font-size: 14px;
  margin-top: 4px;
}

@media (max-width: 480px) {
  .callback-modal {
    padding: 20px;
  }
  .callback-modal h3 {
    font-size: 18px;
  }
}

/* --- Floating Buttons --- */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: var(--primary-green);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(45, 122, 74, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 1000;
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  background: var(--dark-green);
  transform: translateY(-3px);
}

.scroll-to-top svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.whatsapp-btn {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 54px;
  height: 54px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  z-index: 1000;
}

.whatsapp-btn:hover {
  background: #128c7e;
  transform: scale(1.1);
}

.whatsapp-btn svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

@media (max-width: 768px) {
  .scroll-to-top {
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
  }
  .scroll-to-top svg {
    width: 20px;
    height: 20px;
  }
  .whatsapp-btn {
    bottom: 20px;
    left: 20px;
    width: 48px;
    height: 48px;
  }
  .whatsapp-btn svg {
    width: 24px;
    height: 24px;
  }
}
