* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

/* Header */
header {
  background: linear-gradient(135deg, #0f3d1f 0%, #1a5c2f 100%);
  color: white;
  padding: 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.top-bar {
  background: rgba(0, 0, 0, 0.2);
  padding: 0.5rem 2rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
}

.top-bar-left,
.top-bar-right {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 2rem;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.logo-icon {
  font-size: 2.5rem;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  color: white;
  text-decoration: none;
  transition: all 0.3s;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  font-weight: 500;
}

.nav-links a:hover {
  background: rgba(255, 215, 0, 0.2);
  color: #ffd700;
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, rgba(15, 61, 31, 0.9) 0%, rgba(26, 92, 47, 0.85) 100%),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 1080"><defs><linearGradient id="g" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%23228B22"/><stop offset="100%" style="stop-color:%2332CD32"/></linearGradient></defs><rect fill="url(%23g)" width="1920" height="1080"/><circle cx="200" cy="200" r="150" fill="%23ffffff" opacity="0.05"/><circle cx="1700" cy="800" r="200" fill="%23ffffff" opacity="0.05"/><path d="M0,800 Q400,700 800,800 T1600,800 L1920,800 L1920,1080 L0,1080 Z" fill="%23ffffff" opacity="0.1"/></svg>');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  margin-top: 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
}

.hero-content {
  max-width: 900px;
  padding: 3rem;
  animation: fadeInUp 1s ease;
  position: relative;
  z-index: 1;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.hero .tagline {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #ffd700;
  font-weight: 600;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-button {
  background: #ffd700;
  color: #0f3d1f;
  padding: 1.2rem 3rem;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.cta-button:hover {
  background: #ffed4e;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
}

.cta-button-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.cta-button-secondary:hover {
  background: white;
  color: #0f3d1f;
}

/* Stats Section */
.stats {
  background: linear-gradient(135deg, #1a5c2f 0%, #0f3d1f 100%);
  padding: 3rem 2rem;
  color: white;
}

.stats-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 1.5rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: bold;
  color: #ffd700;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Features Section */
.features {
  padding: 6rem 2rem;
  background: #f9f9f9;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #0f3d1f;
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 4rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.feature-card {
  background: white;
  padding: 2.5rem;
  border-radius: 15px;
  text-align: center;
  transition: all 0.4s;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 2px solid transparent;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: #ffd700;
}

.feature-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  display: inline-block;
  animation: bounce 2s infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.feature-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #0f3d1f;
}

/* Services Section */
.services {
  padding: 6rem 2rem;
  background: white;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
  padding: 2.5rem;
  border-radius: 15px;
  border-left: 5px solid #ffd700;
  transition: all 0.3s;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.service-card:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  color: #0f3d1f;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

/* Listings Section */
.listings {
  padding: 6rem 2rem;
  background: #f9f9f9;
}

.listing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.listing-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s;
  position: relative;
}

.listing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.listing-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #ffd700;
  color: #0f3d1f;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: bold;
  font-size: 0.85rem;
  z-index: 10;
}

.listing-image {
  height: 250px;
  background: linear-gradient(135deg, #228B22, #32CD32);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: white;
  position: relative;
  overflow: hidden;
}

.listing-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
  transition: all 0.3s;
}

.listing-card:hover .listing-image::after {
  background: rgba(0, 0, 0, 0.1);
}

.listing-content {
  padding: 2rem;
}

.listing-title {
  font-size: 1.4rem;
  color: #0f3d1f;
  margin-bottom: 1rem;
  font-weight: 600;
}

.listing-location {
  color: #666;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.listing-details {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #666;
  font-size: 0.95rem;
}

.listing-price {
  font-size: 1.8rem;
  color: #0f3d1f;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.price-label {
  font-size: 0.9rem;
  color: #666;
  font-weight: normal;
}

/* Testimonials Section */
.testimonials {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #0f3d1f 0%, #1a5c2f 100%);
  color: white;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 2.5rem;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-text {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  line-height: 1.8;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #ffd700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.author-info h4 {
  margin-bottom: 0.2rem;
}

.author-info p {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* About Section */
.about {
  padding: 6rem 2rem;
  background: white;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.about-image {
  background: linear-gradient(135deg, #228B22, #32CD32);
  border-radius: 15px;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8rem;
  color: white;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.about-content h2 {
  font-size: 2.5rem;
  color: #0f3d1f;
  margin-bottom: 1.5rem;
}

.about-content p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: #666;
  margin-bottom: 1.5rem;
}

.credentials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.credential-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: #f9f9f9;
  border-radius: 10px;
}

.credential-icon {
  font-size: 2rem;
}

/* Contact Section */
.contact {
  padding: 6rem 2rem;
  background: #f9f9f9;
}

.contact-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info-section {
  background: linear-gradient(135deg, #0f3d1f 0%, #1a5c2f 100%);
  padding: 3rem;
  border-radius: 15px;
  color: white;
}

.contact-info-section h3 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.contact-icon {
  font-size: 2rem;
  background: rgba(255, 215, 0, 0.2);
  padding: 1rem;
  border-radius: 10px;
}

.contact-details h4 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.contact-details p {
  opacity: 0.9;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.social-link {
  width: 50px;
  height: 50px;
  background: rgba(255, 215, 0, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: all 0.3s;
  cursor: pointer;
}

.social-link:hover {
  background: #ffd700;
  transform: translateY(-5px);
}

.contact-form-section {
  background: white;
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #0f3d1f;
  font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-family: inherit;
  transition: all 0.3s;
  font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #1a5c2f;
  box-shadow: 0 0 0 3px rgba(26, 92, 47, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Footer */
footer {
  background: #0a2815;
  color: white;
  padding: 3rem 2rem 1rem;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  margin-bottom: 1.5rem;
  color: #ffd700;
}

.footer-section p,
.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
}

.footer-section a:hover {
  color: #ffd700;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.8;
}

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}

.whatsapp-float:hover {
  background-color: #20ba56;
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
  .top-bar {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .about-container,
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .stats-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-buttons {
    flex-direction: column;
  }
}

/* Animations */
.fade-in {
  opacity: 0;
  animation: fadeIn 1s forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  animation: slideInLeft 0.8s forwards;
}

@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
}

.footer-section h4 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #ffd700;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.7rem;
}

.footer-section ul li a {
  color: white;
  text-decoration: none;
  opacity: 0.8;
  transition: 0.3s;
}

.footer-section ul li a:hover {
  opacity: 1;
  color: #ffd700;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Properties Section */
.properties {
  padding: 6rem 2rem;
  background: linear-gradient(180deg, #f9f9f9 0%, #ffffff 100%);
}

.properties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.property-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  border: 1px solid rgba(15, 61, 31, 0.08);
}

.property-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ffd700, #ffed4e);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.property-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(15, 61, 31, 0.15);
  border-color: #ffd700;
}

.property-card:hover::before {
  transform: scaleX(1);
}

.property-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.5s ease;
  background: linear-gradient(135deg, #228B22, #32CD32);
}

.property-card:hover .property-img {
  transform: scale(1.08);
}

.property-card h3 {
  font-size: 1.5rem;
  color: #0f3d1f;
  margin: 1.5rem 1.5rem 0.8rem;
  font-weight: 700;
  line-height: 1.3;
}

.property-card p {
  margin: 0 1.5rem 1.5rem;
  color: #666;
  line-height: 1.7;
  font-size: 1rem;
}

.property-btn {
  display: inline-block;
  margin: 0 1.5rem 2rem;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #0f3d1f;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.property-btn:hover {
  background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}


/* Contact Section */
.glass-section {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #0f3d1f 0%, #1a5c2f 100%);
  position: relative;
  overflow: hidden;
}

/* Animated Background Elements */
.glass-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: rotate 30s linear infinite;
}

.glass-section::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -15%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: rotate 40s linear infinite reverse;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* Fade In Animation */
.fade-in {
  animation: fadeInUp 1s ease-out forwards;
  opacity: 0;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Section Title */
.glass-section h2 {
  text-align: center;
  font-size: 3.5rem;
  color: white;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
  font-weight: 800;
  letter-spacing: -1px;
}

.glass-section h2::after {
  content: '';
  display: block;
  width: 100px;
  height: 5px;
  background: linear-gradient(90deg, transparent, #ffd700, transparent);
  margin: 1.5rem auto 0;
  border-radius: 10px;
  animation: shimmer 2s infinite;
}

@keyframes shimmer {

  0%,
  100% {
    opacity: 0.5;
  }

  50% {
    opacity: 1;
  }
}

/* Contact Form Container */
.contact-form {
  max-width: 650px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.98);
  padding: 4rem;
  border-radius: 30px;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 1;
  backdrop-filter: blur(10px);
}

/* Decorative Corner Elements */
.contact-form::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, #ffd700, #ffed4e, #1a5c2f, #0f3d1f);
  border-radius: 30px;
  z-index: -1;
  opacity: 0;
}


@keyframes borderRotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* Form Inputs */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1.4rem 1.8rem;
  margin-bottom: 2rem;
  border: 2px solid #e8e8e8;
  border-radius: 15px;
  font-size: 1.05rem;
  font-family: inherit;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
  color: #333;
  font-weight: 500;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #999;
  font-weight: 400;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #1a5c2f;
  background: white;
  box-shadow:
    0 0 0 5px rgba(26, 92, 47, 0.1),
    0 8px 25px rgba(26, 92, 47, 0.15);
  transform: translateY(-3px);
}

/* Textarea Specific */
.contact-form textarea {
  resize: vertical;
  min-height: 160px;
  line-height: 1.7;
}

/* Submit Button */
.btn-primary {
  width: 100%;
  padding: 1.5rem 2rem;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #ffd700 100%);
  background-size: 200% 100%;
  color: #0f3d1f;
  border: none;
  border-radius: 15px;
  font-size: 1.2rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  letter-spacing: 2px;
  box-shadow:
    0 10px 30px rgba(255, 215, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transition: left 0.6s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  background-position: right center;
  transform: translateY(-4px);
  box-shadow:
    0 15px 40px rgba(255, 215, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.btn-primary:active {
  transform: translateY(-2px);
  box-shadow:
    0 8px 20px rgba(255, 215, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

/* Additional Micro-animations */
.contact-form input,
.contact-form textarea {
  animation: slideInUp 0.6s ease-out backwards;
}

.contact-form input:nth-child(1) {
  animation-delay: 0.1s;
}

.contact-form input:nth-child(2) {
  animation-delay: 0.2s;
}

.contact-form textarea {
  animation-delay: 0.3s;
}

.btn-primary {
  animation: slideInUp 0.6s ease-out 0.4s backwards;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .glass-section {
    padding: 4rem 1.5rem;
  }

  .glass-section h2 {
    font-size: 2.5rem;
  }

  .contact-form {
    padding: 2.5rem;
    border-radius: 25px;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 1.2rem 1.5rem;
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .btn-primary {
    padding: 1.3rem 1.8rem;
    font-size: 1.1rem;
  }

  .glass-section::before,
  .glass-section::after {
    width: 500px;
    height: 500px;
  }
}

@media (max-width: 480px) {
  .glass-section {
    padding: 3rem 1rem;
  }

  .glass-section h2 {
    font-size: 2rem;
  }

  .contact-form {
    padding: 2rem;
    border-radius: 20px;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 1rem 1.2rem;
    border-radius: 12px;
  }

  .btn-primary {
    padding: 1.2rem 1.5rem;
    font-size: 1rem;
    letter-spacing: 1.5px;
  }
}

/* Reviews Section */
.reviews {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #0f3d1f 0%, #1a5c2f 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

/* Decorative Background Elements */
.reviews::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 15s ease-in-out infinite;
}

.reviews::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 20s ease-in-out infinite reverse;
}

@keyframes float {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(30px, -30px) scale(1.1);
  }
}

/* Container */
.reviews .container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Section Title */
.reviews .section-title {
  text-align: center;
  font-size: 3.5rem;
  color: white;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
  font-weight: 800;
  letter-spacing: -1px;
}

.reviews .section-title::after {
  content: '';
  display: block;
  width: 120px;
  height: 5px;
  background: linear-gradient(90deg, transparent, #ffd700, transparent);
  margin: 1.5rem auto 0;
  border-radius: 10px;
  animation: shimmer 2s infinite;
}

@keyframes shimmer {

  0%,
  100% {
    opacity: 0.5;
    transform: scaleX(0.8);
  }

  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

/* Section Subtitle */
.reviews .section-subtitle {
  text-align: center;
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
  font-weight: 400;
}

/* Reviews Grid */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
  position: relative;
  z-index: 1;
}

/* Review Card */
.review-card {
  background: rgba(255, 255, 255, 0.98);
  border-radius: 25px;
  overflow: hidden;
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  border: 2px solid transparent;
  position: relative;
}

.review-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #ffd700, #ffed4e);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  z-index: 10;
}

.review-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.45),
    0 0 0 2px #ffd700;
  border-color: #ffd700;
}

.review-card:hover::before {
  transform: scaleX(1);
}

/* Video and Image Styling */
.review-video,
.review-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  background: linear-gradient(135deg, #0f3d1f, #1a5c2f);
  display: block;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.review-card:hover .review-video,
.review-card:hover .review-img {
  transform: scale(1.08);
}

/* Overlay Effect on Media */
.review-video::after,
.review-img::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
  transition: opacity 0.3s ease;
}

.review-card:hover .review-video::after,
.review-card:hover .review-img::after {
  opacity: 0;
}

/* Card Title */
.review-card h3 {
  font-size: 1.5rem;
  color: #0f3d1f;
  margin: 1.8rem 1.8rem 1rem;
  font-weight: 700;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.review-card:hover h3 {
  color: #1a5c2f;
}

/* Card Description */
.review-card p {
  margin: 0 1.8rem 2.5rem;
  color: #555;
  line-height: 1.8;
  font-size: 1.05rem;
  font-style: italic;
  position: relative;
  padding-left: 1.5rem;
}

.review-card p::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -5px;
  font-size: 3rem;
  color: #ffd700;
  font-family: Georgia, serif;
  line-height: 1;
  opacity: 0.5;
}

/* Star Rating Effect (Optional Enhancement) */
.review-card p::after {
  content: '⭐⭐⭐⭐⭐';
  display: block;
  margin-top: 1rem;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

/* Staggered Animation */
.review-card {
  animation: slideInUp 0.8s ease-out backwards;
}

.review-card:nth-child(1) {
  animation-delay: 0.1s;
}

.review-card:nth-child(2) {
  animation-delay: 0.2s;
}

.review-card:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 968px) {
  .reviews {
    padding: 5rem 1.5rem;
  }

  .reviews .section-title {
    font-size: 3rem;
  }

  .reviews .section-subtitle {
    font-size: 1.1rem;
    margin-bottom: 3rem;
  }

  .reviews-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
  }

  .review-video,
  .review-img {
    height: 250px;
  }
}

@media (max-width: 768px) {
  .reviews {
    padding: 4rem 1.5rem;
  }

  .reviews .section-title {
    font-size: 2.5rem;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .review-card h3 {
    font-size: 1.3rem;
    margin: 1.5rem 1.5rem 0.8rem;
  }

  .review-card p {
    margin: 0 1.5rem 2rem;
    font-size: 1rem;
  }

  .reviews::before,
  .reviews::after {
    width: 400px;
    height: 400px;
  }
}

@media (max-width: 480px) {
  .reviews {
    padding: 3rem 1rem;
  }

  .reviews .section-title {
    font-size: 2rem;
  }

  .reviews .section-subtitle {
    font-size: 1rem;
  }

  .review-video,
  .review-img {
    height: 220px;
  }

  .review-card {
    border-radius: 20px;
  }

  .review-card h3 {
    font-size: 1.2rem;
    margin: 1.2rem 1.2rem 0.6rem;
  }

  .review-card p {
    margin: 0 1.2rem 1.5rem;
    font-size: 0.95rem;
    padding-left: 1.2rem;
  }
}
