@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary: #1b4332;
  --primary-rgb: 27, 67, 50;
  --primary-light: #2d6a4f;
  --accent: #2ec4b6;
  --accent-rgb: 46, 196, 182;
  --dark: #0f1412;
  --light: #f4f7f6;
  --white: #ffffff;
  --text: #2f3e46;
  --text-muted: #6b7a82;
  --border: #e2e8f0;
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.02);
  --shadow-md: 0 8px 20px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 15px 30px rgba(27, 67, 50, 0.08);
  --shadow-glass: 0 8px 32px 0 rgba(0, 0, 0, 0.05);
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
}

/* Base Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--white);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

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

ul {
  list-style: none;
}

button, input, textarea, select {
  font-family: inherit;
  outline: none;
  border: none;
}

/* Reusable Components */
.section {
  padding: 100px 0;
  position: relative;
}

.section-bg {
  background-color: var(--light);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px auto;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-light);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
  position: relative;
  padding-left: 20px;
}

.section-tag::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 2px;
  background-color: var(--accent);
}

.section-title {
  font-size: 40px;
  color: var(--dark);
  margin-bottom: 16px;
  font-weight: 800;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  cursor: pointer;
  gap: 8px;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(27, 67, 50, 0.2);
}

.btn-primary:hover {
  background-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(27, 67, 50, 0.3);
}

.btn-accent {
  background-color: var(--accent);
  color: var(--dark);
  box-shadow: 0 4px 14px rgba(46, 196, 182, 0.2);
}

.btn-accent:hover {
  background-color: #24b0a3;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46, 196, 182, 0.3);
}

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

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

/* Header Utilities */
.top-bar {
  background-color: var(--dark);
  color: var(--white);
  font-size: 13px;
  padding: 8px 0;
  font-weight: 500;
}

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

.top-bar-info {
  display: flex;
  gap: 24px;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.85);
}

.top-bar-item svg {
  width: 14px;
  height: 14px;
  fill: var(--accent);
}

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

/* Main Navbar */
.main-header {
  background-color: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: var(--transition);
}

.main-header.scrolled {
  padding: 4px 0;
  box-shadow: var(--shadow-md);
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo img {
  height: 60px;
  width: auto;
  transition: var(--transition);
}

.main-header.scrolled .logo img {
  height: 50px;
}

.nav-menu {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text);
  font-size: 16px;
  position: relative;
  padding: 8px 0;
}

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

.nav-link:hover, .nav-link.active {
  color: var(--primary-light);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  width: 30px;
  height: 20px;
  position: relative;
  z-index: 101;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--primary);
  position: absolute;
  transition: var(--transition);
  border-radius: 2px;
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 8px; }
.hamburger span:nth-child(3) { top: 16px; }

.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Hero Section */
.hero-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 1920 / 617;
  overflow: hidden;
  background-color: var(--dark);
}

.slider-wrapper {
  display: flex;
  width: 500%;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.slide {
  width: 20%;
  height: 100%;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  flex-shrink: 0;
}

.slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 20, 18, 0.7) 0%, rgba(15, 20, 18, 0.4) 100%);
  z-index: 1;
}

.slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  color: var(--white);
  max-width: 800px;
  width: 90%;
  padding: clamp(10px, 2vw, 24px);
}

.slide-content h2 {
  font-size: clamp(20px, 3.5vw, 54px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: clamp(8px, 1.5vw, 20px);
  letter-spacing: -1px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease 0.3s;
}

.slide-content p {
  font-size: clamp(12px, 1.4vw, 20px);
  opacity: 0;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: clamp(12px, 2vw, 30px);
  transform: translateY(30px);
  transition: all 0.6s ease 0.5s;
}

.slide-content .btn {
  font-size: clamp(12px, 1.2vw, 16px);
  padding: clamp(8px, 1.1vw, 14px) clamp(16px, 2vw, 28px);
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease 0.7s;
}

.slide.active-slide .slide-content h2,
.slide.active-slide .slide-content p,
.slide.active-slide .slide-content .btn {
  opacity: 1;
  transform: translateY(0);
}

/* Slider Controls */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
}

.slider-arrow:hover {
  background-color: var(--accent);
  color: var(--dark);
  border-color: var(--accent);
}

.slider-arrow-prev { left: 30px; }
.slider-arrow-next { right: 30px; }

.slider-arrow svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

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

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: var(--transition);
}

.slider-dot.active {
  background-color: var(--accent);
  width: 28px;
  border-radius: 6px;
}

/* Trust Badges Section */
.badges-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: -60px;
  position: relative;
  z-index: 20;
}

.badge-card {
  background-color: var(--white);
  padding: 30px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-bottom: 4px solid transparent;
  transition: var(--transition);
}

.badge-card:hover {
  transform: translateY(-8px);
  border-bottom-color: var(--accent);
}

.badge-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.badge-card h3 {
  font-size: 18px;
  color: var(--dark);
  font-weight: 700;
}

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

.about-image-wrapper {
  position: relative;
  padding: 20px;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}

.about-image img {
  width: 100%;
  height: auto;
  transition: var(--transition);
}

.about-image:hover img {
  transform: scale(1.03);
}

.about-experience-card {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: var(--primary);
  color: var(--white);
  padding: 24px 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 16px;
}

.about-experience-number {
  font-size: 44px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  font-family: var(--font-heading);
}

.about-experience-text {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 30px 0;
}

.about-checklist-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}

.about-checklist-item svg {
  width: 20px;
  height: 20px;
  fill: var(--accent);
  flex-shrink: 0;
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-6deg);
  box-shadow: var(--shadow-lg);
  border-color: rgba(46, 196, 182, 0.3);
}

.service-image {
  height: 80px;
  width: 80px;
  margin: 30px 30px 10px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-content {
  padding: 20px 30px 30px 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-content h3 {
  font-size: 22px;
  margin-bottom: 12px;
  font-weight: 700;
}

.service-content p {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 24px;
  flex-grow: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary-light);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  transition: var(--transition);
}

.service-card:hover .service-link {
  color: var(--accent);
}

.service-card:hover .service-link svg {
  transform: translateX(4px);
}

/* Gallery Section */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(27, 67, 50, 0.85);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 2;
}

.gallery-overlay-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.8);
  transition: var(--transition);
}

.gallery-overlay-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--dark);
}

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

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

.gallery-item:hover .gallery-overlay-icon {
  transform: scale(1);
}

/* Lightbox Modal */
.lightbox {
  position: fixed;
  inset: 0;
  background-color: rgba(15, 20, 18, 0.95);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-content {
  max-width: 90%;
  max-height: 85vh;
  position: relative;
}

.lightbox-image {
  max-width: 100%;
  max-height: 80vh;
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  transform: scale(0.95);
  transition: var(--transition);
}

.lightbox.active .lightbox-image {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  color: var(--white);
  font-size: 30px;
  font-weight: 300;
  cursor: pointer;
  opacity: 0.8;
  transition: var(--transition);
}

.lightbox-close:hover {
  opacity: 1;
  color: var(--accent);
}

/* FAQ Section */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: flex-start;
}

.faq-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-card {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.faq-card:hover {
  border-color: var(--accent);
}

.faq-header {
  width: 100%;
  text-align: left;
  background: none;
  padding: 22px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  gap: 16px;
}

.faq-icon-box {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-light);
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-icon-box svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
  transition: var(--transition);
}

.faq-card.active .faq-icon-box {
  background-color: var(--accent);
  color: var(--dark);
  transform: rotate(180deg);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-content {
  padding: 0 28px 24px 28px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
}

/* Contact Section & Form */
.contact-section-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
}

.contact-card-wrap {
  background-color: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.contact-card-wrap h3 {
  font-size: 26px;
  margin-bottom: 24px;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  position: relative;
}

.form-control {
  width: 100%;
  padding: 16px 20px;
  background-color: var(--light);
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 15px;
  color: var(--dark);
  transition: var(--transition);
}

.form-control:focus {
  background-color: var(--white);
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(46, 196, 182, 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 130px;
}

.form-status {
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  display: none;
}

.form-status.success {
  display: block;
  background-color: #d1fae5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.form-status.error {
  display: block;
  background-color: #fee2e2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.contact-info-panel {
  background-color: var(--primary);
  color: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-info-header h3 {
  color: var(--white);
  font-size: 26px;
  margin-bottom: 12px;
}

.contact-info-header p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 40px 0;
}

.contact-detail-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.contact-detail-info h4 {
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-detail-info p, .contact-detail-info a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.contact-detail-info a:hover {
  color: var(--accent);
}

.contact-socials {
  display: flex;
  gap: 16px;
}

.contact-social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.contact-social-btn:hover {
  background-color: var(--accent);
  color: var(--dark);
}

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

/* Footer Section */
.main-footer {
  background-color: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background-color: var(--accent);
}

.footer-col p {
  font-size: 14px;
  line-height: 1.7;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo img {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

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

.footer-links a::before {
  content: '→';
  font-size: 12px;
  color: var(--accent);
}

.tssa-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
}

.tssa-badge img {
  width: 60px;
  height: auto;
  border-radius: 4px;
}

.tssa-badge-text h6 {
  color: var(--white);
  font-size: 14px;
  margin-bottom: 2px;
}

.tssa-badge-text p {
  font-size: 12px;
  color: var(--accent);
}

.footer-map {
  border-radius: var(--radius-sm);
  overflow: hidden;
  height: 140px;
  border: 1px solid rgba(255,255,255,0.1);
}

.footer-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  font-size: 13px;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

/* WhatsApp Float Icon */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 99;
  transition: var(--transition);
  animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #20ba5a;
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

@keyframes pulse-whatsapp {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-section-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  
  .badges-container {
    grid-template-columns: repeat(2, 1fr);
    margin-top: -30px;
    padding: 0 20px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 32px;
  }
  
  .top-bar-info {
    justify-content: center;
    width: 100%;
  }
  
  .hamburger {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 50px;
    transition: 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    box-shadow: var(--shadow-lg);
    z-index: 99;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-cta {
    display: none;
  }
  
  .slider-arrow {
    width: 36px;
    height: 36px;
  }
  
  .slider-arrow-prev { left: 10px; }
  .slider-arrow-next { right: 10px; }
  
  .slider-arrow svg {
    width: 16px;
    height: 16px;
  }
  
  .slider-dots {
    bottom: 12px;
  }
  
  .slider-dot {
    width: 8px;
    height: 8px;
  }
  
  .badges-container {
    grid-template-columns: 1fr;
    margin-top: 20px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .about-checklist {
    grid-template-columns: 1fr;
  }
  
  .form-group-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
