@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@400;500;600;700;800&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

:root {
  --color-ivory: #FBF9F7;
  --color-sage: #88C78A;
  --color-graphite: #2E2E2E;
  --color-whisper: rgba(46,46,46,0.06);
  --color-sand: #F6EFEC;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: -0.01em;
  background-color: var(--color-ivory);
  color: var(--color-graphite);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  letter-spacing: -0.02em;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header - Ultra Premium */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 1.25rem 0;
  background: transparent;
}

header.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 0 rgba(136, 199, 138, 0.1), 0 10px 40px rgba(0,0,0,0.06);
  padding: 0.875rem 0;
  border-bottom: 1px solid rgba(136, 199, 138, 0.08);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 3rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--color-sage) 0%, rgba(136, 199, 138, 0.9) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(136, 199, 138, 0.25), inset 0 1px 0 rgba(255,255,255,0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.logo-icon::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--color-sage), transparent);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.4s;
  z-index: -1;
}

.logo:hover .logo-icon {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 24px rgba(136, 199, 138, 0.35), inset 0 1px 0 rgba(255,255,255,0.4);
}

.logo:hover .logo-icon::before {
  opacity: 0.3;
}

.logo-text h1 {
  font-size: 1.875rem;
  font-weight: 600;
  color: var(--color-graphite);
}

.logo-text p {
  font-size: 0.875rem;
  color: rgba(46, 46, 46, 0.6);
  margin-top: -0.25rem;
}

nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

nav a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(46, 46, 46, 0.75);
  text-decoration: none;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0.625rem 0.25rem;
  letter-spacing: -0.01em;
}

nav a:hover {
  color: var(--color-sage);
  transform: translateY(-1px);
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0.25rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-sage), transparent);
  border-radius: 2px;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

nav a:hover::after {
  width: 80%;
}

.btn-primary {
  padding: 0.75rem 1.75rem;
  background: linear-gradient(135deg, var(--color-sage) 0%, rgba(136, 199, 138, 0.9) 100%);
  color: white;
  border-radius: 9999px;
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 12px rgba(136, 199, 138, 0.25), inset 0 1px 0 rgba(255,255,255,0.2);
  position: relative;
  overflow: hidden;
  letter-spacing: -0.01em;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #7ab87c 0%, rgba(122, 184, 124, 0.95) 100%);
  box-shadow: 0 6px 20px rgba(136, 199, 138, 0.35), inset 0 1px 0 rgba(255,255,255,0.3);
  transform: translateY(-2px);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(136, 199, 138, 0.25);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: relative;
}

.hamburger {
  width: 24px;
  height: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger span {
  width: 100%;
  height: 2px;
  background: var(--color-graphite);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, white, rgba(251, 249, 247, 0.95), rgba(136, 199, 138, 0.1));
  z-index: 0;
}

.hero-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}

.shape-1 {
  top: -10rem;
  right: -10rem;
  width: 20rem;
  height: 20rem;
  background: rgba(136, 199, 138, 0.1);
  animation: pulse 4s ease-in-out infinite;
}

.shape-2 {
  top: 50%;
  left: -10rem;
  width: 24rem;
  height: 24rem;
  background: rgba(136, 199, 138, 0.05);
}

.shape-3 {
  bottom: 0;
  right: 25%;
  width: 16rem;
  height: 16rem;
  background: rgba(136, 199, 138, 0.1);
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.hero-content {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.hero-left {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 1s ease-out 0.2s forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(136, 199, 138, 0.1);
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-sage);
  margin-bottom: 2rem;
}

.hero h1 {
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 6rem 0 3rem;
  }
  
  .hero h1 {
    font-size: 2.75rem;
    line-height: 1.1;
  }
  
  .hero-description {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    padding: 1rem 0;
    margin-bottom: 1.5rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .stat-label {
    font-size: 0.7rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }
  
  .hero-features {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .badge {
    font-size: 0.8125rem;
    padding: 0.5rem 1rem;
  }
}

.hero h1 .highlight {
  color: var(--color-sage);
  display: block;
  margin-top: 0.75rem;
}

.hero-description {
  font-size: 1.25rem;
  line-height: 1.7;
  color: rgba(46, 46, 46, 0.6);
  font-weight: 300;
  max-width: 40rem;
  margin-bottom: 2rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 1.5rem 0;
  margin-bottom: 2rem;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--color-sage);
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(46, 46, 46, 0.5);
  font-weight: 600;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 1rem;
  cursor: pointer;
}

.btn-sage {
  background: var(--color-sage);
  color: white;
  box-shadow: 0 2px 8px rgba(136, 199, 138, 0.2);
}

.btn-sage:hover {
  background: #7ab87c;
  box-shadow: 0 8px 16px rgba(136, 199, 138, 0.3);
  transform: translateY(-2px);
}

.btn-sage:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(136, 199, 138, 0.2);
}

.btn-white {
  background: white;
  color: var(--color-graphite);
  border: 1px solid rgba(136, 199, 138, 0.15);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.btn-white:hover {
  border-color: rgba(136, 199, 138, 0.3);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.btn-white:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(46, 46, 46, 0.5);
  font-weight: 500;
}

.hero-right {
  display: block;
}

@media (max-width: 1024px) {
  .hero-right {
    display: none;
  }
}

/* Stats Section */
.stats-section {
  padding: 4rem 0 6rem;
  background: linear-gradient(to bottom, white, var(--color-ivory));
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.125rem;
  color: rgba(46, 46, 46, 0.5);
  font-weight: 300;
  max-width: 42rem;
  margin: 0 auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.stat-card {
  background: white;
  border: 1px solid rgba(136, 199, 138, 0.08);
  border-radius: 1.5rem;
  padding: 2rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  cursor: pointer;
}

.stat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(136, 199, 138, 0.05), transparent);
  border-radius: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-card:hover {
  border-color: rgba(136, 199, 138, 0.15);
  box-shadow: 0 12px 24px -8px rgba(136, 199, 138, 0.12);
  transform: translateY(-4px);
}

.stat-card:hover::before {
  opacity: 1;
}

.stat-icon {
  width: 4rem;
  height: 4rem;
  background: rgba(136, 199, 138, 0.1);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-card:hover .stat-icon {
  background: var(--color-sage);
  transform: translateY(-2px) scale(1.05);
}

.stat-card:hover .stat-icon i {
  color: white !important;
}

.stat-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.stat-card p {
  font-size: 0.875rem;
  color: rgba(46, 46, 46, 0.5);
  line-height: 1.6;
  font-weight: 300;
}

/* Floating Buttons */
.whatsapp-fab, .phone-fab {
  position: fixed;
  bottom: 1.5rem;
  z-index: 60;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
}

.whatsapp-fab {
  right: 1.5rem;
  background: linear-gradient(135deg, #25D366, #128C7E);
  animation: whatsapp-pulse 2s ease-in-out infinite;
}

.phone-fab {
  left: 1.5rem;
  background: linear-gradient(135deg, #88C78A, #6FA871);
  animation: phone-pulse 2s ease-in-out infinite;
}

@keyframes whatsapp-pulse {
  0%, 100% { box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 12px 45px rgba(37, 211, 102, 0.6); }
}

@keyframes phone-pulse {
  0%, 100% { box-shadow: 0 12px 35px rgba(136, 199, 138, 0.4); }
  50% { box-shadow: 0 12px 45px rgba(136, 199, 138, 0.6); }
}

.whatsapp-fab:hover, .phone-fab:hover {
  transform: scale(1.15);
}

/* About Section */
.about-section {
  padding: 6rem 0;
  background: white;
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
}

.about-text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: rgba(46, 46, 46, 0.7);
}

.about-text .lead {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.about-text p {
  margin-bottom: 1.5rem;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.about-feature-card {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(136, 199, 138, 0.05);
  border-radius: 1rem;
}

.about-feature-card i {
  font-size: 1.25rem;
  color: var(--color-sage);
  flex-shrink: 0;
}

.about-feature-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.about-feature-card p {
  font-size: 0.875rem;
  color: rgba(46, 46, 46, 0.5);
  margin: 0;
}

.about-cta {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

/* Services Section */
.services-section {
  padding: 6rem 0;
  background: linear-gradient(to bottom, var(--color-sand), var(--color-ivory));
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background: white;
  padding: 2.5rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(136, 199, 138, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(136, 199, 138, 0.03), transparent);
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  z-index: 1;
}

.service-card:hover {
  border-color: rgba(136, 199, 138, 0.2);
  box-shadow: 0 20px 40px -10px rgba(136, 199, 138, 0.15), 0 0 0 1px rgba(136, 199, 138, 0.1);
  transform: translateY(-8px) scale(1.02);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:active {
  transform: translateY(-4px) scale(1.01);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 2;
}

.service-card:hover .service-icon {
  transform: translateY(-4px) scale(1.05);
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.service-card p {
  color: rgba(46, 46, 46, 0.7);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: rgba(136, 199, 138, 0.08);
  color: var(--color-sage);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.875rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(136, 199, 138, 0.15);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 10;
  cursor: pointer;
}

.service-link:hover {
  background: rgba(136, 199, 138, 0.12);
  border-color: rgba(136, 199, 138, 0.25);
  transform: translateX(2px);
  box-shadow: 0 2px 8px rgba(136, 199, 138, 0.15);
}

.service-link i {
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-link:hover i {
  transform: translateX(2px);
}

.service-link:active {
  transform: translateX(0);
  box-shadow: none;
}

/* Team Section */
.team-section {
  padding: 6rem 0;
  background: var(--color-ivory);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.team-card {
  background: white;
  padding: 2.5rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(136, 199, 138, 0.08);
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.team-card:hover {
  border-color: rgba(136, 199, 138, 0.15);
  box-shadow: 0 16px 32px -8px rgba(136, 199, 138, 0.15);
  transform: translateY(-6px);
}

.team-avatar {
  width: 10rem;
  height: 10rem;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-sage), rgba(136, 199, 138, 0.7));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  font-weight: 700;
  color: white;
  box-shadow: 0 8px 24px rgba(136, 199, 138, 0.3);
  transition: all 0.5s;
}

.team-card:hover .team-avatar {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(136, 199, 138, 0.4);
}

.team-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.team-title {
  color: var(--color-sage);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.team-quote {
  font-size: 0.875rem;
  font-style: italic;
  color: rgba(46, 46, 46, 0.8);
  line-height: 1.6;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(136, 199, 138, 0.2);
}

/* FAQ Section */
.faq-section {
  padding: 6rem 0;
  background: linear-gradient(to bottom, var(--color-ivory), var(--color-sand));
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border: 1px solid rgba(136, 199, 138, 0.08);
  border-radius: 1rem;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
  border-color: rgba(136, 199, 138, 0.15);
  box-shadow: 0 8px 16px -4px rgba(136, 199, 138, 0.1);
  transform: translateX(4px);
}

.faq-question {
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  color: var(--color-graphite);
  transition: all 0.3s;
}

.faq-question:hover {
  background: rgba(136, 199, 138, 0.05);
  color: var(--color-sage);
}

.faq-question i {
  font-size: 1.25rem;
  color: var(--color-sage);
  transition: transform 0.3s;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 2rem 1.5rem;
  color: rgba(46, 46, 46, 0.8);
  line-height: 1.8;
  background: rgba(136, 199, 138, 0.05);
}

/* CTA Section */
.cta-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, rgba(136, 199, 138, 0.1), var(--color-sand));
  position: relative;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.cta-content h2 {
  font-size: 3rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.cta-content p {
  font-size: 1.25rem;
  color: rgba(46, 46, 46, 0.8);
  font-weight: 300;
  margin-bottom: 3rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Footer */
footer {
  background: var(--color-graphite);
  color: white;
  padding: 4rem 1.5rem;
}

.footer-content {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h3 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.footer-section p, .footer-section a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  text-decoration: none;
}

.footer-section a:hover {
  color: var(--color-sage);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-right {
    display: none;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
  }
  
  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: white;
    flex-direction: column;
    padding: 6rem 2rem 2rem;
    box-shadow: -5px 0 20px rgba(0,0,0,0.1);
    transition: right 0.3s;
    z-index: 40;
  }
  
  nav.active {
    right: 0;
  }
  
  nav a {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(136, 199, 138, 0.1);
  }
  
  .mobile-menu-btn {
    display: block;
    z-index: 50;
  }
  
  .mobile-menu-btn.active .hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .mobile-menu-btn.active .hamburger span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-btn.active .hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
  
  .whatsapp-fab, .phone-fab {
    width: 64px;
    height: 64px;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .header-content {
    padding: 0 1.5rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .about-section > div > div:nth-child(2) {
    grid-template-columns: 1fr !important;
    gap: 3rem !important;
  }
  
  .about-section > div > div:nth-child(2) > div:first-child {
    order: 2;
  }
  
  .about-section > div > div:nth-child(2) > div:last-child {
    order: 1;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
  }
  
  .stat-number {
    font-size: 1.75rem;
  }
  
  .about-cta {
    flex-direction: column;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .whatsapp-fab, .phone-fab {
    width: 56px;
    height: 56px;
    bottom: 1rem;
  }
  
  .whatsapp-fab {
    right: 1rem;
  }
  
  .phone-fab {
    left: 1rem;
  }
  
  /* İletişim sayfası responsive */
  section > div > div[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  
  /* Hakkımızda sayfası responsive */
  div[style*="grid-template-columns: repeat(2, 1fr)"] {
    grid-template-columns: 1fr !important;
  }
  
  div[style*="grid-template-columns: repeat(3, 1fr)"] {
    grid-template-columns: 1fr !important;
  }
  
  /* Process Section responsive */
  .process-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
}
